Skip to content

Tool Catalog

Every tool listed below is pre-installed during cloud-init provisioning. No manual installation is needed after deployment.

ToolInstall MethodExample CommandUsed By Suite
niktoaptnikto -h https://TARGET -maxtime 120sweb-app-attacks
sqlmapaptsqlmap --batch -u "https://TARGET/dvwa/vulnerabilities/sqli/?id=1"web-app-attacks, api-attacks
nucleighlatestnuclei -u https://TARGET -severity medium,high,criticalweb-app-attacks
dalfoxghlatestdalfox url "https://TARGET/search?q=test" --silenceweb-app-attacks
ffufghlatestffuf -u https://TARGET/FUZZ -w wordlist.txt -mc all -fc 404api-attacks
gobusterghlatestgobuster dir -u https://TARGET -w /opt/SecLists/Discovery/Web-Content/common.txtreconnaissance
feroxbusterghlatestferoxbuster -u https://TARGET -w /opt/SecLists/Discovery/Web-Content/raft-medium-directories.txtreconnaissance
dirbaptdirb https://TARGET /usr/share/dirb/wordlists/common.txtreconnaissance
whatwebaptwhatweb https://TARGETreconnaissance
wfuzzpipwfuzz -c -z file,wordlist.txt -e urlencode,double_urlencode "https://TARGET/FUZZ"waf-encoding-evasion
ToolInstall MethodExample CommandUsed By Suite
gotestwafgo installcd /opt/gotestwaf && gotestwaf --url https://TARGET --noEmailReport --includePayloads=falsewaf-encoding-evasion
waf-bypassgit clone + pipwaf-bypass --host TARGET:443 --timeout 10 --threads 10waf-encoding-evasion

GoTestWAF (by Wallarm) is an industry-standard WAF assessment framework that multiplies payloads across multiple encoders (URL, Base64, JSUnicode) and placement zones (body, header, URL param, cookie). waf-bypass (by Nemesida) sends payloads with Base64, HTML-ENTITY, and UTF-16 encoding across ARGS, BODY, COOKIE, and HEADER zones.

ToolInstall MethodExample CommandUsed By Suite
nmapaptnmap -sV -sC -p 80,443 TARGET_IPreconnaissance
masscanaptmasscan TARGET_IP -p 1-1000 --rate=1000reconnaissance
tsharkapttshark -i eth0 -c 100 -f "host TARGET_IP"
hping3apthping3 -S -p 443 -c 10 TARGET_IPreconnaissance
tcpdumpapttcpdump -i eth0 -c 50 host TARGET_IP
netcataptnc -zv TARGET_IP 80 443reconnaissance
ngrepaptngrep -q -d eth0 "HTTP" host TARGET_IP
iperf3aptiperf3 -c TARGET_IP -p 5201 -t 10traffic-generation
mtraptmtr --report TARGET_IPreconnaissance
ToolInstall MethodExample CommandUsed By Suite
sslscanaptsslscan TARGET:443ssl-scanning
sslyzeuvsslyze TARGET:443ssl-scanning
testssl.shgit clone/opt/testssl.sh/testssl.sh TARGET:443ssl-scanning
ToolInstall MethodExample CommandUsed By Suite
mitmproxyuvmitmproxy --mode reverse:https://TARGET -p 8080
socataptsocat TCP-LISTEN:8080,fork TCP:TARGET:443
ToolInstall MethodExample CommandUsed By Suite
playwrightnpm + uvplaywright open https://TARGETbot-simulation, javascript-exploits
puppeteernpmnode -e "const b=await require('puppeteer').launch(); ..."bot-simulation
puppeteer-extra-plugin-stealthnpmUsed as Puppeteer plugin for stealth browsingbot-simulation

Playwright installs its own Chromium binary via playwright install chromium. Puppeteer uses the same system Chromium where possible.

ToolInstall MethodExample CommandUsed By Suite
subfinderghlatestsubfinder -d example.com -silentreconnaissance
httpxghlatest`echo TARGEThttpx -status-code -title`
amassghlatestamass enum -passive -d example.comreconnaissance
dnsreconuvdnsrecon -d example.com -t stdreconnaissance
fierceuvfierce --domain example.comreconnaissance
whoisaptwhois example.comreconnaissance
dnsutils (dig, nslookup)aptdig TARGET +shortreconnaissance
ToolInstall MethodExample CommandUsed By Suite
hydraapthydra -l admin -P /opt/SecLists/Passwords/Common-Credentials/10-million-password-list-top-100.txt TARGET https-post-form "/dvwa/login.php:..."web-app-attacks
medusaaptmedusa -h TARGET -u admin -P passwords.txt -M httpweb-app-attacks
ncrackaptncrack -vv --user admin -P passwords.txt TARGET:443web-app-attacks
ToolInstall MethodExample CommandUsed By Suite
scapypippython3 -c "from scapy.all import *; sr1(IP(dst='TARGET')/TCP(dport=443,flags='S'))"reconnaissance
impacketpippython3 -m impacket.smbclient TARGETreconnaissance
arjunpiparjun -u https://TARGET/endpointapi-attacks
pwntoolspippython3 -c "from pwn import *; r=remote('TARGET',443)"
hashidpiphashid 'HASH_VALUE'
theHarvesteruvtheHarvester -d example.com -b allreconnaissance
ToolInstall MethodLocationUsed By Suite
recon-nggit clone/opt/recon-ng/reconnaissance
spiderfootgit clone/opt/spiderfoot/reconnaissance
SecListsgit clone/opt/SecLists/web-app-attacks, api-attacks, reconnaissance
PayloadsAllTheThingsgit clone/opt/PayloadsAllTheThings/waf-encoding-evasion
waf-bypass payloadsgit clone/opt/waf-bypass/waf-encoding-evasion

SecLists provides wordlists used by multiple tools including ffuf, gobuster, feroxbuster, dirb, and hydra. PayloadsAllTheThings provides curated multi-encoding attack payloads organized by attack class (XSS, SQLi, XXE) with hex, octal, Unicode, HTML entity, double URL encoding, and JSFuck variants.

These tools are only installed when tool_tier = "full":

ToolInstall MethodExample CommandUsed By Suite
ZAP (OWASP Zed Attack Proxy)ghlatestzap-cli quick-scan -s all -r https://TARGETweb-app-attacks
Metasploit Frameworkinstaller scriptmsfconsole -q -x "use auxiliary/scanner/http/http_version; set RHOSTS TARGET; run; exit"reconnaissance
MethodDescription
aptInstalled from Ubuntu 24.04 APT repositories via apt-get install
ghlatestLatest binary downloaded from GitHub Releases using ghlatest.sh and install-release.sh
uvInstalled as a Python tool using the uv package manager
pipInstalled as a Python package using pip install into the system Python
npmInstalled as a global Node.js package using npm install -g
go installCompiled from source using go install and installed to /usr/local/bin
git cloneRepository cloned to /opt/ directory
git clone + pipRepository cloned and Python dependencies installed
installer scriptVendor-provided installer script executed during cloud-init