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-4664 — PoC and Setup for CVE-2025-4664 | Kitploit
Tools/GitHubGitHub/amalmurali47/cve-2025-4664
Vulnerability AnalysisExploitationWeb Application ExploitationInformation GatheringPenetration TestingLearning & Education
GitHubamalmurali47/cve-2025-4664

cve-2025-4664

PoC and Setup for CVE-2025-4664

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-4664

This repository contains a PoC for exploiting CVE-2025-4664, a vulnerability where Chromium-based browsers leak sensitive URL parameters through Link header preload requests.

Resources

For a detailed explanation of how this exploit works, read the blog post: https://amalmurali.me/posts/cve-2025-4664e.

Watch this video to understand the flow:

Files

  • target.py - Vulnerable web application
  • idp.py - SSO identity provider
  • attacker.py - Malicious server that logs leaked tokens
  • templates/ - HTML templates for the demo
  • static/ - Static assets (logo, avatar, CSS)

Setup

Dependencies

root@kitploit:~
python3 -m venv venv
source venv/bin/activate
pip install -r requirements.txt

Hosts File Configuration

Add these entries to your /etc/hosts file:

root@kitploit:~
127.0.0.1 example.com
127.0.0.1 sso.example.com  
127.0.0.1 attacker.test

Running the Demo

Start all three servers in separate terminals (after activating the venv):

root@kitploit:~
# Terminal 1: Target application
python target.py

# Terminal 2: SSO Identity Provider  
python idp.py

# Terminal 3: Attacker server
python attacker.py

Disclaimer

This repository is for educational purposes only. The information provided here is intended to help developers understand the vulnerability and protect their systems. Do not use this exploit maliciously or without permission. Use of this PoC is at your own risk. The author is not responsible for any damages or legal issues that may arise from the use of this information.

Download Tool