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-2023-6063-PoC — A Proof on Concept for CVE-2023-6063, a time-based blind SQL injection vulnerability in WP Fastest Cache ≤1.2.2. | Kitploit
Tools/GitHubGitHub/incommatose/cve-2023-6063-poc
Password CrackingVulnerability AnalysisExploitationWeb Application ExploitationPenetration TestingLearning & Education
GitHubincommatose/cve-2023-6063-poc

CVE-2023-6063-PoC

A Proof on Concept for CVE-2023-6063, a time-based blind SQL injection vulnerability in WP Fastest Cache ≤1.2.2.

View Repository
21391 year agoNot yet reviewed

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share

PoC for CVE-2023-6063: WP Fastest Cache 1.2.2 Unauthenticated Blind SQL Injection

Static Badge Static Badge Static Badge

A Proof on Concept for CVE-2023-6063, a time-based blind SQL injection vulnerability in WP Fastest Cache ≤1.2.2. Extracts hashed passwords (user_pass) and emails (user_email) from the wp_users table by abusing the wordpress_logged_in cookie.

Features

  • Time-based data exfiltration (char-by-char) via SLEEP() delays.
  • Supports custom cookies, target usernames, and hash validation.

This script extracts:

  • ☑️ WordPress password hashes (MD5/PHPass).
  • ☑️ Associated email addresses.
  • CLI arguments for flexible testing (--just-hash, --just-email, --debug).

Usage

Install the dependencies (if aren't installed):

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

Basic usage:

root@kitploit:~
python3 poc.py -u https://vulnerable-website.com --username admin --delay 5

Full options:

root@kitploit:~
  -h, --help            show this help message and exit
  -u URL, --url URL     Full URL to Wordpress for testing CVE-2023-6063
  --username USERNAME   Define a user to extract its hashed pass
  -d DELAY, --delay DELAY
                        Time for wait web response default 5, minimum 2
  -H HASH, --hash HASH  Hash to verify against wp_users table, if the hash contains specials characters, please use single quotes -> '<hash>'
  --domain DOMAIN       Name of the domain for email validation
  -c COOKIE, --cookie COOKIE
                        Specify a cookie name if it's different on your context
  --status-code STATUS_CODE
                        Use a specific positive status code, default 200
  --debug               More verbosity
  --just-hash           Just extract hashed password
  --just-email          Just extract email value for a user

💻 Demo

This is a demo for the admin user

https://github.com/user-attachments/assets/21ea643d-3b11-401f-813f-b85abdb05890

When hashes passwords are leaked, use john or hashcat for decrypt it with PHPass algorithm if the password is vulnerable.

John example:

root@kitploit:~
john --wordlist=/usr/share/wordlists/rockyou.txt hash.txt --format=phpass

🕵️‍♂️ Technical Details

📖 Vulnerability Decription

The WP Fastest Cache plugin (≤1.2.2) for WordPress is vulnerable to an unauthenticated blind SQL injection via the wordpress_logged_in cookie. Attackers can exploit this flaw to extract sensitive data (e.g., password hashes, email addresses) from the wp_users table by leveraging time-based delays (SLEEP()) in SQL queries.

root@kitploit:~
" AND (IF((SELECT user_pass FROM wp_users WHERE user_login="admin") LIKE 'a%', SLEEP(5), 0))-- -

🚨 Disclaimer: Use this information only for ethical security testing with proper authorization. Unauthorized exploitation is illegal.

  • CVE ID: CVE-2023-6063
  • Vulnerability Score: 7.5 (High)
  • Vulnerability Type: SQL Injection (Blind, Time-Based)
  • Affected Software: WP Fastest Cache (WordPress Plugin) ≤ v1.2.2

🔍 Attack Vector

  • Exploitability: Remote (No authentication required)
  • Attack Complexity: Low (Exploitable via crafted HTTP requests)

🔥 Impact:

  • Confidentiality: High (Leaks admin credentials)
  • Integrity: None
  • Availability: None

📌 Affected Versions

  • WP Fastest Cache versions ≤1.2.2

🛡️ Mitigation

Upgrade WP Fastest Cache to version >1.2.2.

  • Upgrade to WP Fastest Cache v1.2.3 or later.
  • Apply WAF rules to block SQLi payloads in cookies.
  • Disable plugin if unused.

📚 References

  • NIST NVD Entry
  • WordPress Plugin Advisory
  • CVE Details

⚖️ Legal

  • This script is for educational purposes. Always obtain explicit permission before testing.
Download Tool