offensive-tools/web/smuggler/SKILL.md
smuggler: HTTP/1.1 request smuggling and desync detection tool testing CL.TE, TE.CL, and TE.TE variants. Use when testing reverse proxies, load balancers, or CDN-backed web apps for request desynchronization vulnerabilities that enable cache poisoning, authentication bypass, or request hijacking.
npx skillsauth add aeondave/malskill smugglerInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
HTTP request smuggling / desync detection — CL.TE, TE.CL, TE.TE variants.
git clone https://github.com/defparam/smuggler
cd smuggler && pip3 install -r requirements.txt
# Single target
python3 smuggler.py -u https://target.com/endpoint
# Pipe a list of URLs
cat urls.txt | python3 smuggler.py
# Quiet mode (only show findings)
python3 smuggler.py -u https://target.com -q
# Exit on first finding per host
python3 smuggler.py -u https://target.com -x
| Flag | Purpose |
|------|---------|
| -u, --url <url> | Target URL with endpoint |
| -v, --vhost <host> | Override Host header (virtual host) |
| -x, --exit_early | Exit on first finding (useful in bulk mode) |
| -m, --method <verb> | HTTP method (default: POST) |
| -l, --log <file> | Write output to file + stdout |
| -q, --quiet | Suppress non-finding output |
| -t, --timeout <s> | Socket timeout (default: 5) |
| --no-color | Suppress color codes (for piping/logs) |
| -c, --configfile <file> | Custom payload config file |
| Type | Frontend | Backend | Description | |------|----------|---------|-------------| | CL.TE | Content-Length | Transfer-Encoding | Frontend routes by CL; backend parses chunked TE | | TE.CL | Transfer-Encoding | Content-Length | Frontend routes chunked; backend expects CL | | TE.TE | Transfer-Encoding | Transfer-Encoding | Both parse TE but one can be obfuscated |
smuggler sends mutations of CL/TE headers to detect desync behavior via:
Each mutation is sent with precise socket-level control (no HTTP libraries that auto-normalize headers).
# Using subfinder + httpx to build target list, then smuggle-test
subfinder -d target.com | httpx -silent | python3 smuggler.py -q -x
# From existing URL list
cat endpoints.txt | python3 smuggler.py -l smuggler-results.txt -q
After smuggler reports a potential issue, confirm manually in Burp Repeater:
# CL.TE probe — send with Connection: keep-alive
POST / HTTP/1.1
Host: target.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 6
Transfer-Encoding: chunked
0
X
If response is delayed or error changes between requests → real desync.
# 1. Bypass front-end access controls
# Smuggle a request to a restricted path hidden in the body
# 2. Capture other users' requests
# Poison backend socket to prepend attacker-controlled prefix to next user's request
# 3. Cache poisoning
# Smuggle a request that causes malicious response to be cached for next user
# 4. Web cache deception
# Smuggle static-looking path to cache authenticated response
smuggler can produce false positives on large CDN/proxy providers (Google, AWS, Akamai). Always manually verify before reporting or exploiting. Use -q -x in bulk scans to minimize noise.
data-ai
Scoped routing: Linux operator; hosts, sessions, users, services, packages, logs, containers, SSH, network paths, privilege evidence.
development
Offensive methodology for ICS/OT/SCADA environments in authorized industrial penetration testing and red team operations. Use when assessing PLCs, RTUs, HMIs, engineering workstations, historians, or field devices running Modbus, DNP3, EtherNet/IP, S7comm/S7+, Profinet, IEC 60870-5-104, BACnet, or OPC-UA. Covers passive OT network enumeration, protocol-level device interrogation, PLC coil/register read-write attacks, HMI session exploitation, historian and engineering workstation compromise, and safe escalation rules for critical infrastructure scope. Does not cover: general IT network exploitation (network-technique), physical hardware interfaces UART/JTAG/SPI (hardware-technique), wireless sensor network attacks (wireless-technique), RF/SDR signal analysis (hardware-ctf or wireless-technique), or CTF-framed ICS lab tasks (ics-ctf).
tools
Offensive methodology for authorized game security assessments, game client security research, and game-adjacent penetration testing in real-world engagements. Use when assessing game clients for cheating vulnerabilities, testing anti-cheat effectiveness, auditing game server protocols for score manipulation or economic fraud, reverse engineering game DRM or license validation, analyzing game save file protection, or assessing game mod/plugin security. Covers: process memory scanning and manipulation (Cheat Engine methodology), game binary reversing for license and DRM bypass, game network protocol analysis and packet replay, anti-cheat mechanism analysis, save file format reversing and tampering, speed hack and value injection techniques. Does NOT cover: CTF game challenges (game-ctf), game engine source code auditing (web-exploit-technique or vuln-search-technique for the backend), or general binary exploitation (pwn-ctf or reversing-technique).
development
Auth assessment: hardware/embedded methodology; UART/JTAG/SWD/SPI/I2C, firmware extraction, boot/debug paths, embedded OS evidence.