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-41646 — Python exploit script for CVE-2025-41646, an authentication bypass in RevPi Webstatus <= 2.4.5. Supports single/mass exploitation, proxy, silent mode, and JSON output for penetration testing. | Kitploit
Tools/GitHubGitHub/r0otk3r/cve-2025-41646
Authentication & AuthorizationVulnerability AnalysisExploitationWeb Application ExploitationPenetration TestingRed Teaming
GitHubr0otk3r/cve-2025-41646

CVE-2025-41646

Python exploit script for CVE-2025-41646, an authentication bypass in RevPi Webstatus <= 2.4.5. Supports single/mass exploitation, proxy, silent mode, and JSON output for penetration testing.

View Repository
41 year 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-41646 - RevPi Webstatus <= 2.4.5 Authentication Bypass Exploit

Overview

This is a Python3 exploit script for CVE-2025-41646, an Authentication Bypass vulnerability affecting RevPi Webstatus <= 2.4.5.

Vulnerability Details:

  • CVE ID: CVE-2025-41646
  • Affected Product: RevPi Webstatus <= 2.4.5
  • Impact: Remote attackers can bypass authentication and obtain a valid admin session ID.
  • Vulnerability Type: Authentication Bypass
  • Attack Vector: Remote HTTP POST request to /php/dal.php

Features

  • Supports single target or mass exploitation via target list
  • Proxy support (e.g., Burp Suite)
  • Silent mode (prints session ID only)
  • JSON output option
  • Stores valid session IDs in an output file

Usage

Install requirements:

root@kitploit:~
pip install -r requirements.txt

Requirements:

root@kitploit:~
requests

urllib3 (usually comes with requests)

Command Examples:

Single Target Exploitation:

root@kitploit:~
python3 cve_2025_41646_auth_bypass.py -u "http://192.168.1.100"

Multiple Targets (File List):

root@kitploit:~
python3 cve_2025_41646_auth_bypass.py -l targets.txt

Use Proxy:

root@kitploit:~
python3 cve_2025_41646_auth_bypass.py -u "http://192.168.1.100" --proxy "http://127.0.0.1:8080"

Silent Mode (Prints only Session ID):

root@kitploit:~
python3 cve_2025_41646_auth_bypass.py -u "http://192.168.1.100" --silent

JSON Output:

root@kitploit:~
python3 cve_2025_41646_auth_bypass.py -u "http://192.168.1.100" --json

Script Options

Output Example

exploit

request/response

burpsuite

⚠️ Disclaimer

This tool is for educational and authorized penetration testing purposes only. Unauthorized usage against systems without explicit permission is illegal.

Official Channels

  • YouTube @rootctf
  • X @r0otk3r
Download Tool
OptionDescription
-u, --urlTarget URL (e.g., http://IP)
-l, --listFile containing list of targets
-o, --outputOutput file to save valid session IDs
--proxyUse a proxy (http://127.0.0.1:8080)
--jsonPrint raw JSON output
--silentSilent mode (prints session ID only)