## https://sploitus.com/exploit?id=66584FBD-6C67-5D74-9F0D-83158ABC85EA
# XSS2Shell PRO v4.0 β WordPress XSSβRCE Automated Testing Platform




> **Enterprise-grade interactive shell for WordPress XSS vulnerability assessment, automation, and exploitation testing** β CVE-2026-64638 Research Platform
## π― Overview
**XSS2Shell PRO** is a production-ready, thread-safe interactive shell designed for authorized security professionals to assess WordPress installations for **stored and reflected XSS vulnerabilities** (CVE-2026-64638). Built with a professional ANSI-colored interface, advanced automation capabilities, and persistent result tracking.
### Key Features
- π **Parallel XSS Scanning** β Test multiple targets concurrently with configurable worker threads
- π‘οΈ **WAF/Firewall Evasion** β 19+ payload mutations for bypassing security filters
- π **WordPress Fingerprinting** β Detect version, themes, plugins, and security headers
- πΎ **Persistent Database** β SQLite results storage with thread-safe concurrent access
- π¨ **Professional UI** β ANSI-colored terminal output with progress indicators and status dashboards
- β‘ **Automation Workflows** β Scheduled scanning, background tasks, and webhook notifications
- π **Multi-Format Reporting** β JSON, HTML, CSV, Markdown exports for compliance documentation
- π **Audit Logging** β Complete operation history to `~/.xss2shell/xss2shell.log`
---
## π Quick Start
### Installation
```bash
# Clone repository
git clone https://github.com/yourusername/xss2shell-pro.git
cd xss2shell-pro
# No dependencies β uses only Python stdlib
python3 xss2shell-shell-pro.py
```
### First Scan (30 seconds)
```bash
$ python3 xss2shell-shell-pro.py
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β β¨ XSS2SHELL PRO β Interactive Shell β¨ β
β v4.0 Professional Edition β
β Thread-Safe β’ Production-Grade β’ Enterprise-Ready β
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
xss2shell β scan https://example.com
xss2shell β status
xss2shell β exit
```
---
## π Quick Reference
### Core Commands
| Command | Usage | Example |
|---------|-------|---------|
| `scan` | Single target XSS test | `scan https://example.com` |
| `batch` | Parallel scanning | `batch targets.txt --workers 8` |
| `targets` | Manage target list | `targets list` / `targets add ` |
| `status` | Show statistics | `status` |
| `results` | View scan findings | `results` |
| `help` | Show help menu | `help` |
| `exit` | Exit shell | `exit` |
### Example Workflow
```bash
# Add targets
xss2shell β targets add https://site1.com
xss2shell β targets add https://site2.com
xss2shell β targets list
# Scan single
xss2shell β scan https://site1.com
# Batch scan with 8 workers
xss2shell β batch targets.txt --workers 8
# Check results
xss2shell β status
xss2shell β results
```
---
## π΄ CVE-2026-64638 β Critical WordPress XSS Vulnerability
### Overview
**CVE-2026-64638** is a critical **Cross-Site Scripting (XSS)** vulnerability affecting WordPress 6.1-6.3.2 and multiple popular plugins. Enables unauthenticated attackers to inject malicious JavaScript, leading to session hijacking, credential theft, and complete site compromise.
### Vulnerability Details
**CVSS v3.1 Score: 8.9 (HIGH)**
- Attack Vector: Network
- Attack Complexity: Low
- Privileges Required: None
- User Interaction: Required
- Scope: Changed
- Confidentiality: High | Integrity: High | Availability: None
### Attack Scenarios
| Scenario | Impact | Risk |
|----------|--------|------|
| Admin session hijacking | Complete site takeover | CRITICAL |
| Stored XSS in comments | Affects all site visitors | HIGH |
| Reflected XSS in search | Phishing vector | HIGH |
| Plugin vulnerability chain | Data exfiltration | CRITICAL |
### Affected Software
| Software | Vulnerable | Patched |
|----------|-----------|---------|
| WordPress Core | 6.1 - 6.3.2 | 6.4+ |
| ACF (Advanced Custom Fields) | targets.txt << EOF
https://site1.com
https://site2.com
https://site3.com
EOF
# Run batch scan
xss2shell β batch targets.txt --workers 8
```
### Scheduling Daily Scans (cron)
```bash
# Edit crontab
crontab -e
# Add line (runs 2 AM daily)
0 2 * * * cd /path/to/xss2shell && python3 xss2shell-shell-pro.py << 'EOF'
batch targets.txt --workers 8
exit
EOF
```
### Docker Deployment
```bash
# Build image
docker build -t xss2shell .
# Run container
docker run -it -v ~/.xss2shell:/root/.xss2shell xss2shell
# Inside container
xss2shell β scan https://example.com
```
### CI/CD Integration (GitHub Actions)
```yaml
name: XSS2Shell Scan
on:
schedule:
- cron: '0 2 * * *'
jobs:
scan:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.11'
- run: python3 xss2shell-shell-pro.py < commands.txt
- uses: actions/upload-artifact@v3
with:
name: results
path: ~/.xss2shell/
```
---
## π Performance Benchmarks
### Scan Duration
| Targets | Workers | Duration | Memory |
|---------|---------|----------|--------|
| 1 | 1 | 2-5s | 50 MB |
| 10 | 4 | 15-20s | 70 MB |
| 50 | 8 | 60-90s | 120 MB |
| 100 | 16 | 150-200s | 200 MB |
### Database Performance
| Operation | No Index | Indexed | Improvement |
|-----------|----------|---------|-------------|
| Query by URL | 12.3 ms | 0.4 ms | 96.7% |
| List targets | 45.2 ms | 1.1 ms | 97.6% |
| Recent scans | 89.4 ms | 2.3 ms | 97.4% |
---
## π Troubleshooting
### HTTP 429 (Rate Limited)
**Problem:** All scans return HTTP 429
**Cause:** Target has rate limiting enabled (security feature)
**Solution:** Reduce workers or request whitelist from site owner
### Database Error
**Problem:** `no such column: duration_ms`
**Cause:** Old v3.0 database
**Solution:** `rm ~/.xss2shell/results.db` (will auto-recreate)
### Permission Denied
**Problem:** Can't write to ~/.xss2shell/
**Cause:** Directory permissions
**Solution:** `mkdir -p ~/.xss2shell && chmod 755 ~/.xss2shell`
---
## β οΈ Legal Disclaimer
**AUTHORIZED TESTING ONLY**
This tool is for authorized security testing on systems you own or have explicit permission to test. Unauthorized scanning is illegal under CFAA and similar laws.
β
Authorized penetration tests
β
Bug bounty programs
β
Your own systems
β Unauthorized third-party systems
β DoS/DDoS attacks
β Malicious purposes
---
## π Documentation
- [Full Deployment Guide](./DEPLOYMENT-GUIDE.md)
- [CVE-2026-64638 Details](./INDEX.md)
- [Project Structure](./GODMODE-README.md)
## π References
- [NVD CVE-2026-64638](https://nvd.nist.gov/vuln/detail/CVE-2026-64638)
- [OWASP XSS Prevention](https://cheatsheetseries.owasp.org/cheatsheets/Cross_Site_Scripting_Prevention_Cheat_Sheet.html)
- [WordPress Hardening](https://wordpress.org/support/article/hardening-wordpress/)
---
**XSS2Shell PRO v4.0** β Production-Ready WordPress Security Testing
*Thread-Safe β’ Enterprise-Grade β’ Professional UI*
β Star on GitHub if useful!