CVE-2026-1624

6.3 MEDIUM

📋 TL;DR

This CVE describes a command injection vulnerability in D-Link DWR-M961 routers that allows remote attackers to execute arbitrary commands by manipulating the fota_url parameter. The vulnerability affects D-Link DWR-M961 routers running firmware version 1.1.47. Attackers can exploit this without authentication to potentially take full control of affected devices.

💻 Affected Systems

Products:
  • D-Link DWR-M961
Versions: 1.1.47
Operating Systems: Embedded Linux (router firmware)
Default Config Vulnerable: ⚠️ Yes
Notes: All devices running the vulnerable firmware version are affected. The vulnerable endpoint is accessible via web interface.

📦 What is this software?

⚠️ Risk & Real-World Impact

🔴

Worst Case

Complete device compromise allowing attacker to install persistent backdoors, pivot to internal networks, intercept traffic, or use device as part of botnet.

🟠

Likely Case

Remote code execution leading to device takeover, credential theft, network reconnaissance, or denial of service.

🟢

If Mitigated

Limited impact if device is behind firewall with restricted inbound access and proper network segmentation.

🌐 Internet-Facing: HIGH - The vulnerability is remotely exploitable without authentication and affects internet-facing network devices.
🏢 Internal Only: MEDIUM - Internal devices could be exploited by compromised internal hosts or through phishing/social engineering attacks.

🎯 Exploit Status

Public PoC: ⚠️ Yes
Weaponized: LIKELY
Unauthenticated Exploit: ⚠️ Yes
Complexity: LOW

Public exploit details available on GitHub. Attack requires network access to device web interface.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: Unknown

Vendor Advisory: https://www.dlink.com/

Restart Required: Yes

Instructions:

1. Check D-Link website for firmware updates. 2. Download latest firmware. 3. Access router admin interface. 4. Navigate to firmware update section. 5. Upload and apply new firmware. 6. Reboot device.

🔧 Temporary Workarounds

Network Access Restriction

linux

Block external access to router web interface using firewall rules.

iptables -A INPUT -p tcp --dport 80 -j DROP
iptables -A INPUT -p tcp --dport 443 -j DROP

Endpoint Disable

all

Disable LTE FOTA upgrade functionality if not required.

🧯 If You Can't Patch

  • Isolate affected devices in separate VLAN with strict firewall rules
  • Implement network monitoring for suspicious traffic to/from affected devices

🔍 How to Verify

Check if Vulnerable:

Check firmware version in router admin interface under System > Firmware. If version is 1.1.47, device is vulnerable.

Check Version:

curl -s http://router-ip/status.html | grep -i firmware

Verify Fix Applied:

After firmware update, verify version is no longer 1.1.47. Test endpoint /boafrm/formLtefotaUpgradeFibocom with controlled payloads.

📡 Detection & Monitoring

Log Indicators:

  • Unusual POST requests to /boafrm/formLtefotaUpgradeFibocom
  • Suspicious command execution in system logs
  • Multiple failed login attempts followed by successful access

Network Indicators:

  • Unexpected outbound connections from router
  • Traffic to known malicious IPs from router
  • Unusual port scanning originating from router

SIEM Query:

source="router-logs" AND (uri="/boafrm/formLtefotaUpgradeFibocom" OR cmd="wget" OR cmd="curl" OR cmd="sh")

🔗 References

📤 Share & Export