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
Myesve — CVE-2024-38475 exploitation & scanning tool with Mullvad VPN rotation | Kitploit
Tools/GitHubGitHub/nyakki-labs-0x420/myesve
ReconnaissanceVulnerability ScannersVulnerability AnalysisExploitationWeb Application ExploitationInformation GatheringWeb SecurityPenetration Testing
GitHubnyakki-labs-0x420/myesve

Myesve

CVE-2024-38475 exploitation & scanning tool with Mullvad VPN rotation

View Repository
33 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

myesve

CVE-2024-38475 Exploitation Framework – Version 1.0

Python 3.9+ License: AGPLv3

Disclaimer: This tool is intended for authorized security testing, educational research, and legitimate bug bounty programs only. Do not use it against systems you do not own or lack explicit permission to test. The authors assume no liability for any misuse.

myesve is a modular tool that detects and exploits CVE-2024-38475, a source code disclosure vulnerability in Apache HTTP Server. It combines directory scanning, multi‑threaded exploitation, file downloading, and optional Mullvad VPN rotation.

Original discovery by Orange Tsai.

Features

  • 403 directory discovery – multi‑threaded scanning for forbidden paths.
  • Source code disclosure – exploits CVE-2024-38475 to retrieve PHP, configuration, and other files.
  • Automatic file download – saves retrieved source code to a local directory.
  • Mullvad VPN integration – rotate public IP before or during exploitation.
  • Rate limiting – control requests per second to avoid detection or overloading the target.
  • IP geolocation and traceroute – show VPN exit node location and network path to target.
  • Colored console output – readable and informative terminal feedback.
  • Bundled wordlists – includes SecLists’ raft-medium directories and files (no extra downloads).

Installation

Requirements

  • Python 3.9 or newer.
  • pip (usually included with Python).
  • Mullvad VPN CLI – only needed if you use the --vpn or vpn subcommands. Install from Mullvad.

Install from Source

root@kitploit:~
git clone https://github.com/Nyakki-Labs-0x420/Myesve.git
cd Myesve
pip install .

The myesve command becomes available system‑wide. Wordlists are bundled inside the package.

Development / Editable Install

root@kitploit:~
pip install -e .

Changes to the source code take effect immediately.

Usage

Subcommands

CommandDescription
scanFind directories that return HTTP 403.
exploit

Examples

Scan for 403 directories:

root@kitploit:~
myesve scan -t http://target.com -o dirs.txt

Exploit using the found directories:

root@kitploit:~
myesve exploit -t http://target.com --directories-file dirs.txt --download

Rotate VPN and show location:

root@kitploit:~
myesve vpn --rotate --country se
myesve vpn --info

Full automated scan + exploit with VPN rotation:

root@kitploit:~
myesve full -t http://target.com --vpn --vpn-rotate-before --download

For all options, refer to the built-in help:

root@kitploit:~
myesve --help
myesve scan --help
myesve exploit --help
myesve vpn --help
myesve full --help

Project Structure

root@kitploit:~
myesve/
├── myesve/
│   ├── __init__.py
│   ├── banner.py
│   ├── cli.py
│   ├── scanner.py
│   ├── exploiter.py
│   ├── vpn.py
│   ├── utils.py
│   ├── user_agents.py
│   ├── stealth.py
│   ├── output.py
│   ├── logger.py (may be deprecated)
│   ├── recon.py
│   └── wordlists/
│       ├── raft-medium-directories.txt
│       └── raft-medium-files.txt
├── pyproject.toml
├── README.md
├── DOCUMENTATION.md
└── LICENSE

License

GNU Affero General Public License v3.0 (AGPLv3). See LICENSE.

Credits

  • Orange Tsai – original discovery of CVE-2024-38475.
  • Daniel Miessler – SecLists project for wordlists.
  • Mullvad VPN – CLI tool for anonymity.

Contributing

Issues and pull requests are welcome. Please open an issue first to discuss any significant changes.

root@kitploit:~
Download Tool
Attempt source disclosure using 403 directories.
vpnControl Mullvad VPN (status, rotate, geolocation, traceroute).
fullRun scan + exploit together, optionally with VPN rotation.