CVE-2025-11303

6.3 MEDIUM

📋 TL;DR

This CVE describes a command injection vulnerability in Belkin F9K1015 routers. Attackers can remotely execute arbitrary commands by manipulating the 'command' parameter in the /goform/mp file. All users of affected Belkin F9K1015 routers with vulnerable firmware are at risk.

💻 Affected Systems

Products:
  • Belkin F9K1015
Versions: 1.00.10
Operating Systems: Embedded router OS
Default Config Vulnerable: ⚠️ Yes
Notes: Affects the web interface component; no special configuration required for exploitation.

📦 What is this software?

⚠️ Risk & Real-World Impact

🔴

Worst Case

Complete compromise of the router allowing attackers to install persistent backdoors, intercept network traffic, pivot to internal networks, or brick the device.

🟠

Likely Case

Attackers gain shell access to execute commands, potentially installing malware, creating backdoors, or modifying router configuration.

🟢

If Mitigated

Limited impact if router is behind firewall with restricted WAN access, though internal attackers could still exploit.

🌐 Internet-Facing: HIGH
🏢 Internal Only: HIGH

🎯 Exploit Status

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

Public proof-of-concept available; exploitation requires simple HTTP requests with command injection payloads.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: Unknown

Vendor Advisory: None available

Restart Required: No

Instructions:

No official patch available. Vendor has not responded to disclosure. Consider replacing affected hardware.

🔧 Temporary Workarounds

Block Web Interface Access

linux

Restrict access to router web interface from untrusted networks

iptables -A INPUT -p tcp --dport 80 -s ! TRUSTED_NETWORK -j DROP
iptables -A INPUT -p tcp --dport 443 -s ! TRUSTED_NETWORK -j DROP

Disable Remote Administration

all

Turn off remote administration features in router settings

🧯 If You Can't Patch

  • Replace affected Belkin F9K1015 routers with supported, patched alternatives
  • Segment affected routers on isolated network segments with strict firewall rules

🔍 How to Verify

Check if Vulnerable:

Check router firmware version via web interface at 192.168.2.1 or using curl: curl -s http://ROUTER_IP/goform/mp?command=id

Check Version:

curl -s http://ROUTER_IP/ | grep -i firmware || ssh admin@ROUTER_IP 'show version'

Verify Fix Applied:

No fix available to verify; monitor for vendor firmware updates

📡 Detection & Monitoring

Log Indicators:

  • Unusual POST requests to /goform/mp
  • Commands like 'id', 'whoami', 'wget', 'curl' in URL parameters
  • Multiple failed authentication attempts followed by successful /goform/mp access

Network Indicators:

  • HTTP requests to /goform/mp with shell metacharacters (;, |, &, $)
  • Outbound connections from router to unusual IPs/ports
  • DNS queries for command-and-control domains

SIEM Query:

source="router_logs" AND (url="/goform/mp" AND (param="command" AND value MATCHES "[;&|$()]"))

🔗 References

📤 Share & Export