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
WG-CVE-2026-1555-Linux — Automated exploit toolkit for CVE-2026-1555, a critical unauthenticated file upload RCE in the WebStack WordPress theme. Features PyQt5 GUI, dork-based target discovery, and a multi-feature PHP webshell for post-exploitation. | Kitploit
Tools/GitHubGitHub/willygailo/wg-cve-2026-1555-linux
ReconnaissanceVulnerability AnalysisExploitationWeb Application ExploitationPenetration TestingCommand and ControlLearning & EducationRed TeamingPayload Development

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share
GitHubwillygailo/wg-cve-2026-1555-linux

WG-CVE-2026-1555-Linux

Automated exploit toolkit for CVE-2026-1555, a critical unauthenticated file upload RCE in the WebStack WordPress theme. Features PyQt5 GUI, dork-based target discovery, and a multi-feature PHP webshell for post-exploitation.

View Repository
33 months agoNot yet reviewed
root@kitploit:~
 ██████╗██╗   ██╗███████╗    ██████╗  ██████╗ ██████╗  ██████╗      
██╔════╝██║   ██║██╔════╝    ╚════██╗██╔═████╗╚════██╗██╔════╝      
██║     ██║   ██║█████╗       █████╔╝██║██╔██║ █████╔╝███████╗      
██║     ╚██╗ ██╔╝██╔══╝      ██╔═══╝ ████╔╝██║██╔═══╝ ██╔═══██╗     
╚██████╗ ╚████╔╝ ███████╗    ███████╗╚██████╔╝███████╗╚██████╔╝     
 ╚═════╝  ╚═══╝  ╚══════╝    ╚══════╝ ╚═════╝ ╚══════╝ ╚═════╝      

CVE-2026-1555 — WebStack WordPress Theme RCE

WordPress WebStack Theme — Unauthenticated Remote Code Execution

Python PyQt5 Platform PHP Status

For educational and authorized penetration testing only.


📌 Overview

CVE-2026-1555 is a critical vulnerability affecting the WebStack WordPress Theme that allows unauthenticated attackers to perform arbitrary file upload leading to Remote Code Execution (RCE) on the target server.

This toolkit (FriendsExploit) automates the discovery and exploitation of vulnerable targets using a clean PyQt5 GUI with integrated dork scanning.

root@kitploit:~
Target Surface  →  WordPress sites running WebStack theme
Vuln Type       →  Unauthenticated Arbitrary File Upload → RCE
CVSS Score      →  9.8 (Critical)
Auth Required   →  None
Payload         →  ms.php (Multi-feature PHP Webshell)

📁 Project Structure

root@kitploit:~
CVE-2026-1555-Linux/
│
├── CVE-2026-1555.py          # Main exploit tool (PyQt5 GUI)
├── ms.php                    # PHP webshell payload
├── Dork.txt                  # Fofa/Shodan dork for target discovery
├── requirements.txt          # Python dependencies
└── README.md                 # You are here

⚙️ Requirements

RequirementVersion
Python3.8+
PyQt5≥ 5.15.0
requests≥ 2.31.0
urllib3≥ 2.0.0

🚀 Setup & Installation

Step 1 — Clone the Repository

root@kitploit:~
git clone https://github.com/YOUR_USERNAME/CVE-2026-1555-Linux.git
cd CVE-2026-1555-Linux

Step 2 — Create Virtual Environment (recommended)

root@kitploit:~
python3 -m venv venv
source venv/bin/activate

Step 3 — Install Dependencies

root@kitploit:~
pip install -r requirements.txt

Kali / Debian users — if PyQt5 fails via pip, install system-wide first:

root@kitploit:~
sudo apt install python3-pyqt5 -y

Step 4 — Run the Tool

root@kitploit:~
python3 CVE-2026-1555.py

The GUI will launch. Load targets manually or use the built-in dork scanner.


🐚 Webshell — ms.php

After successful exploitation, the tool uploads ms.php to the target.

Access

root@kitploit:~
https://target.com/wp-content/themes/WebStack/ms.php

Default password: fr13nds2026

Webshell Features

Reverse Shell Setup

On your machine start a listener:

root@kitploit:~
nc -lvnp 4444

In the webshell REVSHELL tab → enter your IP and port → hit FIRE.


🔎 Target Discovery (Dork)

Fofa / Shodan dork (from Dork.txt):

root@kitploit:~
body="wp-content/themes/WebStack"

Paste into Fofa or Shodan to enumerate vulnerable targets.


🔬 Vulnerability Details

Attack Flow

root@kitploit:~
[1] Discover target via dork scan
        ↓
[2] Confirm WebStack theme installation
        ↓
[3] Trigger vulnerable upload endpoint (no auth required)
        ↓
[4] Upload ms.php payload to webroot
        ↓
[5] Access webshell → achieve RCE
        ↓
[6] Escalate: dump DB creds, pivot, revshell

🛠️ Troubleshooting

PyQt5 display error on headless server:

root@kitploit:~
export DISPLAY=:0
# or use Xvfb
sudo apt install xvfb -y
Xvfb :0 -screen 0 1024x768x24 &
export DISPLAY=:0
python3 CVE-2026-1555.py

pip install fails for PyQt5:

root@kitploit:~
sudo apt install python3-pyqt5 python3-pyqt5.qtwebengine -y

Permission denied running script:

root@kitploit:~
chmod +x CVE-2026-1555.py
python3 CVE-2026-1555.py

requests/urllib3 SSL errors:

root@kitploit:~
pip install --upgrade requests urllib3 certifi

📋 Quick Run (One-liner)

root@kitploit:~
git clone https://github.com/YOUR_USERNAME/CVE-2026-1555-Linux.git && \
cd CVE-2026-1555-Linux && \
python3 -m venv venv && source venv/bin/activate && \
pip install -r requirements.txt -q && \
python3 CVE-2026-1555.py

⚠️ Disclaimer

root@kitploit:~
This tool is intended for authorized security research and penetration testing 
only. The authors are not responsible for any misuse or damage caused by this 
program. Only use against systems you own or have explicit written permission 
to test. Unauthorized use is illegal.

FriendsExploit • CVE-2026-1555 • Linux Edition

Built for researchers. Use responsibly.

Download Tool
OS
Linux (Debian/Ubuntu/Kali recommended)
ModuleDescription
🖥️ SYSINFOPHP version, OS, current user, safe mode status, server vars
💻 TERMINALFull command execution with live output — supports 6 exec methods
📂 FILESRead / Write / Edit / Delete / Download any file on the server
📤 UPLOADUpload files to any path or fetch remote files via wget/curl
🔄 REVSHELLOne-click reverse shell fire + prebuilt bash/python3/perl/nc/php shells
🗄️ DB SCANAuto-detect wp-config.php, dump DB credentials, manual MySQL runner
FieldInfo
CVE IDCVE-2026-1555
Affected SoftwareWebStack WordPress Theme
Vulnerability TypeUnauthenticated Arbitrary File Upload → RCE
Attack VectorNetwork
AuthenticationNot Required
CVSS v3 Score9.8 Critical
Affected VersionsAll versions prior to patch