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
Pegasus---Forbidden-Buster — A penetration testing tool for bypassing HTTP 401/403 responses using various header manipulation techniques and path fuzzing. | Kitploit
Tools/GitHubGitHub/sobri3195/pegasus---forbidden-buster
Vulnerability ScannersIDS/IPS EvasionInformation GatheringWAF BypassWeb SecurityPenetration Testing
GitHubsobri3195/pegasus---forbidden-buster

Pegasus---Forbidden-Buster

A penetration testing tool for bypassing HTTP 401/403 responses using various header manipulation techniques and path fuzzing.

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

Pegasus - Forbidden Buster

Author: Letda Kes dr. Sobri, S.Kom.

A penetration testing tool for bypassing HTTP 401/403 responses using various header manipulation techniques and path fuzzing.

Features

  • Tests various header manipulations (X-Forwarded-For, X-Original-URL, X-Rewrite-URL, etc.)
  • Unicode path bypass techniques
  • User-Agent fuzzing
  • Real-time terminal logging
  • Rate limiting control
  • Proxy support
  • Detection of successful bypasses
  • Cookie manipulation attack vectors
  • Parameter pollution techniques
  • Content discovery capabilities
  • Report generation in multiple formats (HTML, JSON, text)
  • IP rotation to avoid IP-based blocking
  • Support for multithreaded scanning
  • HTTP basic authentication bypass attempts
  • Path traversal with customizable depth

Installation

root@kitploit:~
# Clone the repository
git clone https://github.com/sobri3195/pegasus-forbidden-buster.git
cd pegasus-forbidden-buster

# Install requirements
pip install -r requirements.txt

Usage

Basic usage:

root@kitploit:~
python pegasus_cli.py -u https://example.com/restricted-area

Advanced usage:

root@kitploit:~
python pegasus_cli.py -u https://example.com/admin -m POST -H "Authorization: Basic YWRtaW46YWRtaW4=" -d '{"username":"admin"}' -p http://127.0.0.1:8080 --rate-limit 5 --include-all --threads 10 --output report.html --format html

Command Line Options

OptionDescription
-u, --urlTarget URL to test (required)
-m, --methodHTTP Method to use (default: GET)
-H, --headerAdd custom header (format: "Name: Value")
-d, --dataRequest body data (supports JSON string)
-p, --proxyProxy to use (format: http://ip:port)
--rate-limitRate limit in requests per second (default: 10)
--threadsNumber of threads for parallel scanning (default: 5)
--include-unicodeEnable Unicode path fuzzing
--include-user-agentEnable User-Agent fuzzing
--include-paramsEnable parameter pollution attacks
--include-cookiesEnable cookie manipulation techniques
--include-allEnable all bypass techniques
--discoverEnable content discovery mode
--wordlistPath to wordlist file for content discovery
--extensionsComma-separated list of extensions to try
--outputOutput file to save results
--formatOutput format (json, html, text)
-v, --verboseEnable verbose output
-q, --quietSuppress banner and non-essential output
--timeoutRequest timeout in seconds (default: 10)

Examples

root@kitploit:~
# Basic scan
python pegasus_cli.py -u https://example.com/admin

# Full scan with all techniques
python pegasus_cli.py -u https://example.com/admin --include-all 

# Content discovery scan
python pegasus_cli.py -u https://example.com/admin --discover --wordlist wordlists/common.txt --extensions php,html,txt

# Generate HTML report
python pegasus_cli.py -u https://example.com/admin --include-all --output reports/report.html --format html

# Use custom headers and proxy
python pegasus_cli.py -u https://example.com/admin -H "X-Custom-Header: Value" -H "Authorization: Bearer token" -p http://127.0.0.1:8080

Project Structure

root@kitploit:~
pegasus-forbidden-buster/
├── pegasus_cli.py          # Main CLI entry point
├── requirements.txt        # Dependencies
├── README.md               # Documentation
├── src/
│   ├── core/               # Core scanner functionality
│   ├── modules/            # Bypass technique modules
│   ├── utils/              # Utility functions
│   └── data/               # Data files and payloads
├── reports/                # Generated reports
└── examples/               # Example configurations

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

Contact

  • Author: Letda Kes dr. Sobri, S.Kom.
  • GitHub: github.com/sobri3195
  • Email: [email protected]

Support the Project

If you find this tool useful, consider supporting the development:

  • Donation: https://lynk.id/muhsobrimaulana

Disclaimer

This tool is intended for legal penetration testing and security research purposes only. Usage against any systems without explicit permission is illegal and not the intended use case of this software.

License

This project is licensed under the MIT License - see the LICENSE file for details.

Download Tool
--user-agent
Custom User-Agent to use
--cookiesCookies to use (format: "name1=value1; name2=value2")
--authHTTP Basic Authentication (format: "username:password")
--depthPath traversal depth (default: 3)