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-2025-54352 — CVE-2025-54352 PoC | Kitploit
Tools/GitHubGitHub/yohannslm/cve-2025-54352
Vulnerability AnalysisExploitationWeb Application ExploitationWeb SecurityPenetration Testing
GitHubyohannslm/cve-2025-54352

CVE-2025-54352

CVE-2025-54352 PoC

View Repository
11 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

CVE-2025-54352 PoC

Usage

Steps to install and test the WordPress PoC:

1. Install a fresh version of WordPress using Docker:

1.1 Start the MySQL database container:

root@kitploit:~
docker run --name wp-db -e MYSQL_DATABASE=wp-db -e MYSQL_USER=wpuser -e MYSQL_PASSWORD=password -e MYSQL_ROOT_PASSWORD=rootpass -d mysql:5.7

1.2 Start the WordPress container linked to the DB

root@kitploit:~
docker run --name wp-site --link wp-db:mysql \
  -e WORDPRESS_DB_HOST=wp-db \
  -e WORDPRESS_DB_NAME=wp-db \
  -e WORDPRESS_DB_USER=wpuser \
  -e WORDPRESS_DB_PASSWORD=password \
  -p 8080:80 -d wordpress

2. In the WordPress admin dashboard (http://localhost:8080):

  • Log in
  • Create a new draft or private post with the title "secret title"

3. Install the required Node.js dependency:

npm install node-fetch

4. Save the PoC:

As test.js for example.

5. Run the PoC:

node test.js http://localhost:8080/ secret

After around 10 seconds, you should see: "Done! the title is: secret title"

https://www.imperva.com/blog/beware-a-threat-actor-could-steal-the-titles-of-your-private-and-draft-wordpress-posts/

Download Tool