CVE-2021-44409

7.7 HIGH

📋 TL;DR

This vulnerability allows remote attackers to cause a denial of service by sending a specially crafted HTTP request to the cgiserver.cgi JSON command parser in affected Reolink RLC-410W cameras. The vulnerability causes the device to reboot when the TestWifi parameter is not properly validated as an object. This affects users of Reolink RLC-410W cameras with vulnerable firmware.

💻 Affected Systems

Products:
  • Reolink RLC-410W
Versions: v3.0.0.136_20121102
Operating Systems: Embedded Linux firmware
Default Config Vulnerable: ⚠️ Yes
Notes: Affects cameras with web interface enabled and accessible via network.

📦 What is this software?

⚠️ Risk & Real-World Impact

🔴

Worst Case

Persistent denial of service attacks could render the camera unavailable for extended periods, disrupting surveillance coverage.

🟠

Likely Case

Attackers cause temporary camera reboots, creating surveillance gaps of 1-2 minutes during reboot cycles.

🟢

If Mitigated

With proper network segmentation and access controls, impact is limited to internal network disruption only.

🌐 Internet-Facing: HIGH - HTTP-based attack requires no authentication and can be executed remotely if camera is exposed to internet.
🏢 Internal Only: MEDIUM - Attack requires network access but no credentials, posing risk in compromised internal networks.

🎯 Exploit Status

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

Simple HTTP POST request with malformed JSON can trigger the vulnerability. No authentication required.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: Later than v3.0.0.136_20121102

Vendor Advisory: https://talosintelligence.com/vulnerability_reports/TALOS-2021-1421

Restart Required: Yes

Instructions:

1. Log into Reolink web interface. 2. Navigate to System > Maintenance. 3. Check for firmware updates. 4. Download and install latest firmware. 5. Reboot camera after update completes.

🔧 Temporary Workarounds

Network Segmentation

all

Isolate camera network from untrusted networks and internet

Access Control Lists

linux

Restrict HTTP access to camera management interface

iptables -A INPUT -p tcp --dport 80 -s trusted_ip -j ACCEPT
iptables -A INPUT -p tcp --dport 80 -j DROP

🧯 If You Can't Patch

  • Place cameras on isolated VLAN with strict firewall rules
  • Disable web interface if not required for operation

🔍 How to Verify

Check if Vulnerable:

Check firmware version in web interface at System > Device Information

Check Version:

curl -s http://camera-ip/cgi-bin/cgiserver.cgi?cmd=getDevInfo | grep version

Verify Fix Applied:

Confirm firmware version is newer than v3.0.0.136_20121102 and test with crafted HTTP request

📡 Detection & Monitoring

Log Indicators:

  • Unexpected camera reboots
  • HTTP POST requests to /cgi-bin/cgiserver.cgi with malformed JSON

Network Indicators:

  • HTTP POST to camera IP port 80 with TestWifi parameter not as JSON object

SIEM Query:

source="camera_logs" AND (event="reboot" OR uri="/cgi-bin/cgiserver.cgi")

🔗 References

📤 Share & Export