[THUGS(red)]

Tools

Everything the team reaches for — CTF, red team, blue team, OSINT, forensics, wireless and living-off-the-land, plus the one-liners we retype every engagement. Search, filter by tag, and click any code block to copy it.

1054
entries
37
tags in use
3h ago
last added
clear
tools.db 48 shown

Aquatone tool

Recon Red Team Web

A tool for visual inspection of websites across a large list of hosts, producing an HTML report of screenshots grouped by similarity — an older but still-used alternative to gowitness/EyeWitness.

cat hosts.txt | aquatone
visit → added by THUGS(red)

Arjun tool

Fuzzing Red Team Web

Finds hidden HTTP GET/POST parameters on a web endpoint by bruteforcing against a large parameter-name wordlist — the step before you know what to actually inject into.

arjun -u https://target.tld/api/endpoint
visit → added by THUGS(red)

Autorize tool

Red Team Web

A Burp Suite extension that automatically tests every request with a lower-privileged session, surfacing broken access-control (authorisation) bugs without manually replaying each one.

visit → added by THUGS(red)

BuiltWith tool

OSINT Recon Web

Web technology profiler — identifies the CMS, analytics, ad networks, frameworks and hosting stack behind a site, plus historical technology-adoption lookups.

visit → added by THUGS(red)

Burp Suite tool

Blackbox Red Team Web Whitebox

The standard web application security testing platform — intercepting proxy, repeater, intruder and a huge extension ecosystem (BApp Store). Community edition is free; Pro adds the active scanner.

visit → added by THUGS(red)

CeWL tool

Red Team Web Wordlists

Spiders a website and builds a custom wordlist from the words it finds — useful for generating a target-specific password/username dictionary rather than relying on rockyou alone.

cewl https://target.tld -d 2 -m 5 -w wordlist.txt
visit → added by THUGS(red)

Commix tool

Payloads Red Team Web

Automates detection and exploitation of OS command-injection vulnerabilities in web parameters, the command-injection equivalent of sqlmap.

commix --url="https://target.tld/ping?host=127.0.0.1"
visit → added by THUGS(red)

DIRB tool

Brute Force Fuzzing Web

A web content scanner that looks for existing (and hidden) objects by bruteforcing a wordlist against a target — one of the original tools in this space, still bundled in Kali.

dirb http://target/ /usr/share/wordlists/dirb/common.txt
visit → added by THUGS(red)

Encode a payload to defeat naive space/quote filtering one-liner Linux

CTF Red Team Web

Base64-wrapping a command and decoding it inline is a quick way past a filter that blocks certain characters in a command-injection point.

echo 'aWQ7d2hvYW1p' | base64 -d | bash
added by THUGS(red)

EyeWitness tool Linux

Recon Red Team Web

Takes screenshots of a large list of web services and organises them into a browsable report — the fastest way to triage which of a thousand open ports is actually worth looking at by hand.

eyewitness --web -f urls.txt -d report/
visit → added by THUGS(red)

feroxbuster tool

Fuzzing Red Team Web

A fast, recursive content-discovery tool written in Rust — automatically dives into discovered directories without needing to be re-run manually, unlike gobuster/dirb.

feroxbuster -u https://target.tld -w wordlist.txt -x php,html,txt
visit → added by THUGS(red)

ffuf tool

CTF Fuzzing Web

A fast web fuzzer written in Go — content discovery, virtual-host fuzzing and parameter fuzzing, all through one flexible FUZZ-keyword syntax.

ffuf -u http://target/FUZZ -w wordlist.txt -mc all -fc 404
visit → added by THUGS(red)

flask-unsign tool

Cryptography CTF Web

Decodes, brute-forces and re-signs Flask's itsdangerous-based session cookie, recovering the app's SECRET_KEY from a wordlist and letting you forge an arbitrary session.

flask-unsign --unsign --cookie "<session_cookie>" --wordlist rockyou.txt
visit → added by THUGS(red)

FuzzDB tool

Fuzzing Web Wordlists

Dictionaries of attack payloads and predictable filenames/paths for discovery and fuzzing (injection strings, common backup/config filenames, error-message patterns), maintained separately from SecLists.

visit → added by THUGS(red)

gau (GetAllUrls) tool

OSINT Recon Web

Fetches known URLs for a domain from the Wayback Machine, Common Crawl, AlienVault OTX and urlscan.io — a broader net than waybackurls alone.

echo target.tld | gau
visit → added by THUGS(red)

gobuster tool

Brute Force Fuzzing Web

A fast Go-based bruteforcer for directories/files, DNS subdomains, virtual hosts and S3 buckets — the everyday content-discovery default for a lot of testers.

gobuster dir -u http://target -w wordlist.txt -x php,txt,bak
visit → added by THUGS(red)

gowitness tool

Recon Red Team Web

A Go-based web screenshot utility built for the same triage job as EyeWitness, using a headless Chrome for the capture and shipping as a single static binary.

gowitness scan file -f urls.txt
visit → added by THUGS(red)

GraphQL Voyager / InQL tool

Red Team Web

A Burp Suite extension (InQL) and standalone tooling for exploring and attacking GraphQL APIs — schema introspection, query generation and batching-attack helpers.

visit → added by THUGS(red)

Grep.app tool

OSINT Research Web

Fast full-text code search engine across half a million public Git repositories, useful for finding leaked secrets, specific library usage or vulnerable code patterns at scale.

visit → added by THUGS(red)

HTTPTapper / mitmproxy tool

MITM Red Team Web

An interactive, scriptable HTTPS proxy for inspecting and modifying traffic on the fly — the open-source alternative to Burp when you need Python scripting against the traffic stream itself.

mitmproxy --mode transparent
visit → added by THUGS(red)

httpx tool

Recon Red Team Web

ProjectDiscovery's fast, multi-purpose HTTP probing tool — takes a list of hosts and reports which are alive, their titles, status codes, tech stack and more, in one pass.

cat subdomains.txt | httpx -title -tech-detect -status-code
visit → added by THUGS(red)

httpx (ProjectDiscovery) tool

Enumeration OSINT Recon Web

Fast, multi-purpose HTTP toolkit for probing a large list of hosts/subdomains — status codes, titles, tech fingerprints and TLS data — as a recon pipeline stage.

cat subs.txt | httpx -title -tech-detect -status-code
visit → added by THUGS(red)

jwt_tool tool

Cryptography Red Team Web

A toolkit for testing, tampering with and cracking JSON Web Tokens — algorithm-confusion attacks, signature stripping, and a scan mode against a list of known JWT misconfigurations.

python3 jwt_tool.py <token> -T
visit → added by THUGS(red)

jwt-cracker tool

Brute Force Web

Brute-forces the HMAC secret used to sign a JWT (HS256/HS384/HS512), turning a weak signing key into a fully forgeable token.

jwt-cracker eyJhbGciOi... abcdefghijklmnopqrstuvwxyz 6
visit → added by THUGS(red)

katana tool

Recon Red Team Web

A fast web crawler from ProjectDiscovery built for security testing — headless-browser-aware, JavaScript-parsing crawl that feeds URLs straight into fuzzing or nuclei.

katana -u https://target.tld -jc -d 3
visit → added by THUGS(red)

Nikto tool

Network Web

An open-source web server scanner that checks for thousands of dangerous files/programs, outdated server software and other misconfigurations — fast and deliberately noisy.

nikto -h https://target.tld
visit → added by THUGS(red)

Nuclei tool

Recon Red Team Web

ProjectDiscovery's fast, template-driven vulnerability scanner — thousands of community-maintained YAML templates cover CVEs, misconfigurations and exposed panels across a target list in one pass.

nuclei -u https://target.tld -t cves/ -severity critical,high
visit → added by THUGS(red)

OWASP Cheat Sheet Series tool

Cheat Sheets Defensive Web

OWASP's collection of concise, defensive "how to actually do this correctly" references (auth, session management, input validation, crypto storage) rather than attack techniques.

visit → added by THUGS(red)

OWASP ZAP tool

Blackbox Web Whitebox

A free, open-source web application security scanner from OWASP — intercepting proxy, active/passive scanning and automation API, the open-source counterpart to Burp Suite.

visit → added by THUGS(red)

PadBuster tool

Cryptography CTF Web

Automates padding oracle attacks against CBC-mode ciphertext (cookies, tokens) when an application leaks a distinguishable error for bad padding.

perl padbuster.pl http://target/ <encrypted> 8 -cookies "auth=<value>"
visit → added by THUGS(red)

Param Miner tool

Fuzzing Red Team Web

PortSwigger's Burp Suite extension for finding hidden, unlinked parameters and headers — including the ones that unlock web-cache-poisoning bugs.

visit → added by THUGS(red)

ParamSpider tool

OSINT Recon Web

Mines URLs with parameters straight out of the Wayback Machine for a target domain — a fast way to build an attack surface list without touching the live site at all.

paramspider -d target.tld
visit → added by THUGS(red)

PayloadsAllTheThings tool

Cheat Sheets Payloads Web

A huge, actively maintained collection of payloads and bypass techniques for practically every vulnerability class — the reference every web pentester keeps a tab open to.

visit → added by THUGS(red)

Photon tool

OSINT Recon Web

Fast OSINT-focused web crawler that extracts URLs, emails, social-media handles, subdomains and files (with metadata) from a target site as it crawls.

python3 photon.py -u https://example.com -l 3 --wayback
visit → added by THUGS(red)

PublicWWW tool

OSINT Recon Search Engines Web

Source-code search engine that lets you grep the indexed web for a snippet — a tracking ID, a JS library string or a signature left by a specific web shell/skimmer.

visit → added by THUGS(red)

Python one-liner: quick JSON pretty-print from a pipe one-liner

CTF Web

No jq installed? Python's json.tool module is on every box that has Python and does the same job for a quick read.

curl -s https://api.target.tld/data | python3 -m json.tool
added by THUGS(red)

sqlmap tool

CTF Red Team Web

Automates detecting and exploiting SQL injection vulnerabilities, including database fingerprinting, data extraction and, where the DBMS allows it, OS command execution.

sqlmap -u 'http://target/?id=1' --batch --dbs
visit → added by THUGS(red)

testssl.sh tool Linux

Cryptography Network Web

Checks a server's TLS/SSL configuration from the command line — supported protocols and ciphers, certificate details, and known vulnerabilities like Heartbleed or POODLE — no browser or Qualys quota needed.

./testssl.sh https://target.tld
visit → added by THUGS(red)

Turbo Intruder tool

Brute Force Fuzzing Web

High-throughput HTTP request engine (Python-scripted) built for large brute-force jobs and race-condition testing that would be too slow through a regular intercepting proxy.

visit → added by THUGS(red)

Turn archived URLs into a list of endpoints that respond today one-liner

Recon Web

Chains tomnomnom's waybackurls with ProjectDiscovery's httpx to turn archived history into a live-host check in one pipeline.

echo example.com | waybackurls | httpx -silent
visit → added by THUGS(red)

URLScan.io tool

Blue Team Research Web

Free sandboxed URL scanner that renders a page, records every request it makes, and archives screenshots and the DOM — used to safely inspect a suspicious link before clicking it.

visit → added by THUGS(red)

Wafw00f tool

Enumeration Recon Web

Identifies and fingerprints which web application firewall (if any) is protecting a target site, based on response behaviour to a set of probes.

wafw00f https://example.com
visit → added by THUGS(red)

Wappalyzer tool

OSINT Recon Web

Browser extension and API that fingerprints the technology stack of a website (CMS, JS frameworks, server software, analytics) from passive page signals.

visit → added by THUGS(red)

waybackurls tool

OSINT Recon Web

Pulls every URL the Wayback Machine has ever archived for a domain — a quick, passive way to surface old endpoints, parameters and forgotten paths that are still live.

echo target.tld | waybackurls
visit → added by THUGS(red)

WhatWeb tool

Enumeration OSINT Recon Web

CLI website fingerprinting tool with 1800+ plugins identifying CMS, JS libraries, web servers and embedded devices from HTTP responses.

whatweb -a 3 https://example.com
visit → added by THUGS(red)

WPScan tool

Enumeration Red Team Web

A black-box WordPress security scanner — enumerates plugins, themes and users, and checks versions against a maintained vulnerability database.

wpscan --url https://target.tld --enumerate vp,vt,u
visit → added by THUGS(red)

XSStrike tool

Fuzzing Payloads Red Team Web

A cross-site scripting detection suite that fuzzes parameters with a context-aware payload generator, rather than firing a static payload list at everything.

python3 xsstrike.py -u "https://target.tld/search?q=test"
visit → added by THUGS(red)

ysoserial tool

Payloads Red Team Web

Generates payloads that exploit unsafe Java object deserialization across a wide range of common libraries — the standard reference tool for Java deserialisation attacks.

java -jar ysoserial.jar CommonsCollections6 "id" > payload.bin
visit → added by THUGS(red)