offensive-tools/fuzzing/arjun/SKILL.md
Arjun: HTTP parameter discovery fuzzer with a large curated parameter dictionary. Use when hunting hidden GET/POST/JSON/XML parameters on web apps and APIs before SQLi/XSS/IDOR testing. Designed for fast attack-surface expansion and easy handoff into ffuf, dalfox, sqlmap, and custom replay pipelines.
npx skillsauth add aeondave/malskill arjunInstall 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 parameter discovery for hidden GET/POST/JSON/XML attack surface expansion.
# Confirm installed version and available options
arjun --help
# Start with one endpoint and explicit auth context before batch mode.
# Hidden params are often role-dependent (guest vs user vs admin).
pip3 install arjun
# GET parameters
arjun -u "https://target.com/search"
# POST parameters
arjun -u "https://target.com/search" -m POST
# JSON API
arjun -u "https://api.target.com/user" -m JSON
# Batch scan from file
arjun -i urls.txt -oJ params.json
| Flag | Purpose |
|------|---------|
| -u <url> | Target URL |
| -i <file> | URL list for batch scanning |
| -m <method> | Method: GET / POST / JSON / XML (default: GET) |
| -w <wordlist> | Wordlist: path or small / medium / large (default: large) |
| -oJ <file> | JSON output (for tool integration) |
| -oT <file> | Text output |
| -oB [proxy] | Output to Burp proxy (default: 127.0.0.1:8080) |
| --headers <h> | Custom headers (newline-separated) |
| --include <data> | Include data in every request (cookies, tokens) |
| -t <N> | Threads (default: 5) |
| -d <s> | Delay between requests (seconds) |
| -T <s> | Request timeout (default: 15s) |
| --rate-limit <N> | Max requests/second |
| --passive [domain] | Collect params from Wayback/CommonCrawl/OTX (no active requests) |
| --stable | Prefer stability over speed (unreliable servers) |
| --disable-redirects | Don't follow HTTP redirects |
| --casing <style> | Parameter casing: like_this / likeThis / likethis |
| -c <N> | Chunk size (params sent per request) |
| -q | Quiet mode |
# Authenticated GET scan
arjun -u "https://target.com/profile" \
--headers "Cookie: session=abc123" \
--include "csrf_token=XYZ"
# POST + save results
arjun -u "https://target.com/api/update" -m POST \
--headers "Authorization: Bearer TOKEN" \
-oJ post_params.json
# JSON API discovery
arjun -u "https://api.target.com/v2/user" -m JSON \
--headers "Authorization: Bearer TOKEN\nX-API-Version: 2"
# Batch scan with rate limit (bug bounty / not-your-server)
arjun -i targets.txt -d 1 --rate-limit 3 -oJ all_params.json
# Passive discovery (stealthy, no active requests)
arjun --passive target.com
# Feed to ffuf for fuzzing
arjun -u "https://target.com/page" -oT params.txt
cat params.txt | while read p; do
ffuf -u "https://target.com/page?$p=FUZZ" -w payloads.txt -fc 404
done
-oJ) as source of truth.# Full recon → parameter discovery → injection testing
subfinder -d target.com | httpx -silent > live_hosts.txt
cat live_hosts.txt | while read url; do
arjun -u "$url" -oJ /tmp/params_$(echo $url | md5sum | cut -c1-8).json
done
# Discovered params → sqlmap
arjun -u "https://target.com/search" -oJ params.json
# Use params as --data to sqlmap
# Discovered params → dalfox XSS scan
arjun -u "https://target.com/search" -oT params.txt
cat params.txt | xargs -I{} dalfox url "https://target.com/search?{}=FUZZ"
# Discovered params → ffuf value fuzzing
arjun -u "https://target.com/search" -oT params.txt
cat params.txt | while read p; do
ffuf -u "https://target.com/search?$p=FUZZ" -w values.txt -mc all -fc 404
done
# Collect historical params without touching target
arjun --passive target.com
# Good for: stealth recon, bug bounty programs with strict scope
# Sources: Wayback Machine, CommonCrawl, OTX
| | Arjun | Param Miner (Burp) |
|-|-------|--------------------|
| Type | CLI / automation | Burp extension |
| Wordlist | 25,890 params | 50,000+ |
| Batch | Yes (-i) | Per-endpoint |
| Output | JSON/text/Burp | Burp only |
| Use | Automation, pipelines | Manual testing in Burp |
| File | When to load |
|------|--------------|
| references/param-discovery.md | Passive discovery, custom wordlists, full recon pipelines, integration patterns |
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.