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
velociraptor_CVE-2025-6264_PoC — Proof-of-concept exploit for CVE-2025-6264 in Velociraptor, demonstrating privilege escalation via missing permission checks to redirect clients to a malicious server for endpoint takeover. | Kitploit
Tools/GitHubGitHub/mauzy0x00/velociraptor_cve-2025-6264_poc
Vulnerability AnalysisExploitationPenetration TestingCommand and ControlLearning & EducationRed Teaming
GitHubmauzy0x00/velociraptor_cve-2025-6264_poc

velociraptor_CVE-2025-6264_PoC

Proof-of-concept exploit for CVE-2025-6264 in Velociraptor, demonstrating privilege escalation via missing permission checks to redirect clients to a malicious server for endpoint takeover.

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share
View Repository
3 months agoNot yet reviewed

CVE-2025-6264

DISCLAIMER: This is an educational research project. I did not discover this vulnerability. This repository demonstrates CVE-2025-6264 for learning purposes

  • Affected versions before 0.74.3
  • Affects Windows, MacOS and Linux

The Admin.Client.UpdateClientConfig artifact is missing permission checks. Users with the Investigator role (who have COLLECT_CLIENT permission) can use it to update client configs when they shouldn't be able to. This lets you redirect clients to your own malicious Velociraptor server and take over endpoints.

Full writeup on my blog: https://blog.mauzy.net/technology/rapid7-velociraptor-exploit-poc/

Proof of Concept helper script

This script is meant to aid in the exploitation of this CVE. It does so by doing the following:

  • Install a defined version of velociraptor
  • Configure the local velociraptor server
  • Add an Administrator account with the credentials 'admin':'admin'
  • Output a client configuration with the CA cert, nonce and appropriate IP address

The output client configuration is in YAML format and is meant to be inserted into the vulnerable Admin.Client.UpdateClientConfig artifact using a lesser privileged user.

After running the script, the attacker's malicious server is listening for the clients to connect. Once the UpdateClientConfig is run, the clients will rekey and connect to the your server instead of the legitimate one.

How to use:

root@kitploit:~
chmod +x 2025-6264_setup.sh

sudo ./2025-6264_setup.sh

If velociraptor is already installed on your system you can generate a configuration file:

root@kitploit:~
./2025-6264_setup.sh --client-only

To uninstall Velociraptor:

root@kitploit:~
sudo apt autoremove velociraptor-server
Download Tool