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-15602-PoC — Snipe-IT < 8.3.7 Mass Assignment Vulnerability Leading to Privilege Escalation | Kitploit
Tools/GitHubGitHub/nxvh1337/cve-2025-15602-poc
Privilege EscalationVulnerability AnalysisExploitationWeb Application ExploitationInformation GatheringPenetration TestingAuthentication
GitHubnxvh1337/cve-2025-15602-poc

CVE-2025-15602-PoC

Snipe-IT < 8.3.7 Mass Assignment Vulnerability Leading to Privilege Escalation

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-15602-PoC

CVE-2025-15602-PoC is a proof of concept for the vulnerability CVE-2025-15602 in Snipe-IT. One script to list all users and one script to take over an superadmin account.

Context

A user as only the right to edit users, he can abuse it to list and to do an account takeover of the superadmin

list_users.py

Dont forget to change the BASE_URL in the script to match your instance of snipe-it.

Lists all users from the instance, to get the id of the superadmin you want to take over.

root@kitploit:~
python3 list_users.py --attacker-username your_user --attacker-password your_pass --max-id 100

exploit_auth.py

Dont forget to change the BASE_URL in the script to match your instance of snipe-it.

Takes over an superadmin account via mass assignment

IMPORTANT: you need to get the right info from list_users.py first or it won't work. The id, username and first_name must be exactly the same as the target account.

root@kitploit:~
python3 exploit_auth.py \
  --target-id 1 \
  --admin-username admin \
  --admin-firstname Admin \
  --admin-email [email protected] \
  --attacker-username your_user \
  --attacker-password your_pass

After that you can reset the password via the email you set

Dependencies

root@kitploit:~
pip install requests beautifulsoup4
Download Tool