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
citrix_bleed_2 — Citrix Bleed 2 PoC Scanner (CVE-2025-5777) | Kitploit
Tools/GitHubGitHub/rar1991/citrix_bleed_2
Vulnerability ScannersExploitationData ExfiltrationInformation GatheringWeb SecurityPenetration Testing
GitHubrar1991/citrix_bleed_2

citrix_bleed_2

Citrix Bleed 2 PoC Scanner (CVE-2025-5777)

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

Citrix Bleed 2 PoC Scanner (CVE-2025-5777)

This script is a Proof-of-Concept (PoC) scanner for the hypothetical vulnerability "Citrix Bleed 2" (CVE-2025-5777). It is designed to detect potential memory leaks from Citrix ADC devices by sending oversized requests and analyzing the responses for sensitive information.

Features

  • Multiple Test Methods: Supports oversized-headers, oversized-body, and randomized testing methods.
  • Differential Analysis: Compares test responses against a baseline to identify leaked data.
  • High-Confidence Token Extraction: Uses regex and entropy analysis to find potential tokens (e.g., session cookies, JWTs).
  • Multiple Export Formats: Can export findings to JSON, CSV, or raw text files.
  • Configurable: Allows setting the number of requests, delay, and other options.

Installation

  1. Clone the repository:

    root@kitploit:~
    git clone https://github.com/your-username/citrix-bleed-2-scanner.git
    cd citrix-bleed-2-scanner
    
  2. Install dependencies:

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

(Note: You will need to create a requirements.txt file containing requests)

Usage

root@kitploit:~
python citrix_bleed_2_scanner.py --target <TARGET_URL> [OPTIONS]

Examples

  • Basic scan:

    root@kitploit:~
    python citrix_bleed_2_scanner.py --target https://192.168.1.100
    
  • Loop with a delay:

    root@kitploit:~
    python citrix_bleed_2_scanner.py --target https://192.168.1.100 --loop 10 --delay 5
    
  • Use a specific test method and export to JSON:

    root@kitploit:~
    python citrix_bleed_2_scanner.py --target https://192.168.1.100 --test-method oversized-body --json-out results.json
    

Options

OptionDescriptionDefault
--targetTarget URL (e.g., https://192.168.1.100)Required
--loopNumber of requests to send1
--delayDelay between requests in seconds2.0
--test-methodThe testing method to use (randomized, oversized-headers, oversized-body)randomized
--json-outExport found tokens to a JSON fileNone
--csv-outExport found tokens to a CSV fileNone
--raw-outExport raw response content to a fileNone
--no-insecureEnable TLS certificate verificationdisabled

Legal Disclaimer

This script is provided for educational and authorized security testing purposes only. By using this script, you agree that you will only use it on systems for which you have explicit, written permission to test. The author and contributors are not responsible for any misuse or damage caused by this script. Unauthorized scanning of systems is illegal and strictly prohibited.