AuthSlicer is a Python-based tool designed to assist security testers in analyzing web applications and authentication checks. It provides a flexible framework to test multiple header configurations against a target URL and see how the server responds.
- Send HTTP requests with a variety of custom headers.
- Test multiple common header values in parallel (asynchronous mode).
- Provides status feedback for each request.
- Generates simple proof-of-concept output for each tested header.
- Easy-to-use command-line interface with optional flags for different modes
- 429 Detection
git clone https://github.com/yourusername/AuthSlicer.git
cd AuthSlicer
pip install -r requirements.txt
python3 AuthSlicer.py -u <target_url>
python3 AuthSlicer.py -u <target_url> [--nw]
python3 AuthSlicer.py -u https://example.com --nw
The tool is intended only for authorized security testing. Always have permission before testing a target. The program supports both synchronous and asynchronous request modes. Asynchronous mode allows sending multiple requests faster. (Usefull if no WAF is set up on the Website)