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-63030-CVE-2026-60137- — Exploit chain for WordPress Core using REST API route-confusion and SQL injection for unauthenticated RCE, privilege escalation, and full server takeover. | Kitploit
Tools/GitHubGitHub/trandonga3/poc-cve-2026-63030-cve-2026-60137-
Privilege EscalationVulnerability AnalysisExploitationWeb Application ExploitationPost-ExploitationWeb SecurityPenetration TestingLearning & EducationAPI Security

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share
GitHubtrandonga3/poc-cve-2026-63030-cve-2026-60137-

POC-CVE-2026-63030-CVE-2026-60137-

Exploit chain for WordPress Core using REST API route-confusion and SQL injection for unauthenticated RCE, privilege escalation, and full server takeover.

View Repository
621 days agoNot yet reviewed

PoC: WP2Shell — CVE-2026-63030 & CVE-2026-60137

Vulnerability Type CVSS Target Status


📌 Overview

WP2Shell is a critical exploit chain in WordPress Core source code that allows a remote unauthenticated attacker to gain full control of the server (Full Server Takeover / RCE).

The exploit chain combines two security vulnerabilities:

  1. CVE-2026-63030 (REST API Batch Route Confusion): Endpoint resolution conflict in the WordPress REST API batch handler, allowing a request to be authenticated against one route but executed on another, bypassing access control mechanisms (Authentication / Route Validation Bypass).
  2. CVE-2026-60137 (SQL Injection in WP_Query): Improper input sanitization for the author__not_in parameter in WP_Query, leading to SQL Injection.

By chaining these two vulnerabilities, an attacker can send crafted HTTP requests to /wp-json/batch/v1, bypass authentication mechanisms, and trigger SQLi to escalate privileges, spawn a shell, and execute arbitrary code remotely (RCE).


📊 Vulnerability Details


🎬 Video Demo Proof-of-Concept (PoC Video)

A video recording the entire reproduction and real-world exploitation process is stored on Google Drive:

Google Drive Video Demo

🔗 Link to view / download the PoC video: Google Drive - Video Demo WP2Shell PoC


📖 Detailed Writeup

The entire technical analysis flow, step-by-step PoC reproduction, and source code explanation are hosted on Notion:

Notion POC Writeup

🔗 Notion article link: WP2Shell CVE PoC Flow (Notion Writeup)


⚙️ Exploitation Flow

root@kitploit:~
flowchart TD
    A["[Attacker] Unauthenticated Remote Request"] --> B["REST API Batch Endpoint (/wp-json/batch/v1)"]
    B --> C["CVE-2026-63030: Batch Route Confusion\n(Bypass Route Validation & Access Control)"]
    C --> D["CVE-2026-60137: SQL Injection\n(Unsanitized 'author__not_in' in WP_Query)"]
    D --> E["Database Manipulation / Privilege Escalation\n(Admin session / User creation)"]
    E --> F["Web Shell Upload / Execution"]
    F --> G["💥 Full Server Takeover (RCE)"]

🛡️ Mitigation

  1. Update immediately: Upgrade WordPress Core to a secure version:
    • Branch 6.8.x: update to WordPress 6.8.6
    • Branch 6.9.x: update to WordPress 6.9.5
    • Branch 7.0.x: update to WordPress 7.0.2
  2. Configure WAF / Web Server:
    • Temporarily block or strictly control requests to the /wp-json/batch/v1 endpoint from unauthenticated users if an immediate update is not possible.
  3. Server forensics review:
    • Check web server logs for unusual requests sent to /wp-json/batch/v1.
    • Scan the wp-content/uploads/ and wp-content/plugins/ directories to detect web shells or suspicious files.

⚠️ Disclaimer

[!WARNING] This PoC documentation and source code are intended solely for security research, education, and system defense. The author assumes no responsibility for any unauthorized use of the information or tools in this repository to attack systems for which you do not have legitimate authorization.

Download Tool
PropertyDetails
Chain NameWP2Shell
CVE IDsCVE-2026-63030 & CVE-2026-60137
SeverityCritical (CVSS v3.1: 9.8 / 10.0)
Attack VectorNetwork (Unauthenticated Remote)
Affected Versions• Full RCE Chain: WordPress 6.9.0 - 6.9.4 & 7.0.0 - 7.0.1
• SQL Injection Only: WordPress 6.8.0 - 6.8.5
Patched VersionsWordPress 6.8.6, 6.9.5, 7.0.2