[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
2h ago
last added
clear
tools.db 28 shown

aircrack-ng tool Linux

Brute Force Red Team Wireless / WiFi

The classic WiFi security auditing suite — packet capture, deauthentication and injection, and WEP/WPA-PSK key cracking, in one tightly integrated toolset.

airmon-ng start wlan0\nairodump-ng wlan0mon\naircrack-ng -w rockyou.txt capture.cap
visit → added by THUGS(red)

Airgeddon tool Linux

Red Team Wireless / WiFi

Menu-driven bash wrapper that ties together aircrack-ng, hcxtools, hostapd and other utilities into one guided Wi-Fi auditing workflow (handshake capture, WPS, evil twin, DoS).

sudo bash airgeddon.sh
visit → added by THUGS(red)

Bettercap tool Linux

MITM Network Red Team Wireless / WiFi

A Swiss-army-knife framework for network attacks and monitoring — MITM, WiFi/BLE reconnaissance and attacks, and a scriptable, extensible core.

sudo bettercap -iface eth0
visit → added by THUGS(red)

Bleah tool Linux

Enumeration Wireless / WiFi

Lightweight BLE scanner for quickly enumerating nearby devices and their advertised services/characteristics from the command line, without a full GATT client.

bleah -t 5 -v
visit → added by THUGS(red)

Blue Hydra tool Linux

Defensive Enumeration Wireless / WiFi

Bluetooth (Classic + BLE) device discovery service that logs and fingerprints everything it sees over time, aimed at long-running physical-security/asset-tracking style monitoring.

sudo blue_hydra
visit → added by THUGS(red)

bluetoothctl (BlueZ) tool Linux

Enumeration Wireless / WiFi

The interactive control shell shipped with Linux's BlueZ stack — scanning, pairing and GATT inspection without installing anything extra, and the first thing to reach for before pulling out dedicated BLE tooling.

bluetoothctl
[bluetooth]# scan on
[bluetooth]# devices
[bluetooth]# gatt.list-attributes <MAC>
visit → added by THUGS(red)

Bluing tool Linux

Enumeration Recon Wireless / WiFi

Bluetooth reconnaissance framework covering Classic, LE and (some) mesh/Zigbee-adjacent radios in one CLI, aimed at building a fuller picture than a single-mode scanner.

bluing le scan
visit → added by THUGS(red)

Btlejack tool Linux

Hardware Offensive Wireless / WiFi

BLE sniffing and hijacking toolkit (needs a couple of cheap nRF51-based dongles) that can follow, jam and even take over an existing BLE connection.

btlejack -s
visit → added by THUGS(red)

Bully tool Linux

Brute Force Wireless / WiFi

C reimplementation of the WPS brute-force PIN attack (an alternative to Reaver with different timing/retry behaviour against flaky APs).

bully -b AA:BB:CC:DD:EE:FF wlan0mon
visit → added by THUGS(red)

crackle tool

Cryptography Wireless / WiFi

Cracks the BLE Legacy Pairing key exchange from a captured connection and decrypts the traffic — the classic demonstration of why "Just Works" BLE pairing is not actually secure.

crackle -i capture.pcap -o decrypted.pcap
visit → added by THUGS(red)

EAPHammer tool Linux

Offensive Red Team Wireless / WiFi

Targeted rogue-AP toolkit for attacking WPA2-Enterprise networks — evil twin EAP portals to harvest credentials or relay them, plus PMKID/handshake capture for the WPA2-PSK case.

./eaphammer -i wlan0 --channel 6 --auth wpa-eap --essid CorpWiFi --creds
visit → added by THUGS(red)

Flipper Zero tool

Hardware NFC / RFID Wireless / WiFi

Pocket multi-tool for RF/RFID/NFC/infrared/iButton with a Dolphin-themed UI — reads, emulates and replays sub-GHz, 125kHz LF and 13.56MHz HF tags, plus GPIO for basic hardware hacking.

visit → added by THUGS(red)

GATTacker tool Linux

Hardware MITM Wireless / WiFi

Node.js BLE MITM/impersonation toolkit — scans and clones a target device's GATT profile so a fake peripheral can sit between a phone app and the real hardware.

node scan.js
visit → added by THUGS(red)

hcxdumptool tool Linux

Brute Force Red Team Wireless / WiFi

Captures WPA/WPA2 handshakes and PMKIDs straight off the air (including from clientless APs) without needing a connected station to deauth.

sudo hcxdumptool -i wlan0mon -o capture.pcapng --enable_status=1
visit → added by THUGS(red)

hcxtools tool Linux

Brute Force Hashing Wireless / WiFi

Converts hcxdumptool/airodump-ng captures into hashcat/John-crackable formats (22000, PMKID) — the modern replacement for the old cap2hccapx pipeline.

hcxpcapngtool -o hashes.22000 capture.pcapng
visit → added by THUGS(red)

Kali NetHunter tool Linux

Mobile Red Team Wireless / WiFi

Official Kali Linux mobile penetration testing platform — runs a Kali chroot/rootfs alongside Android, with wireless injection support and NetHunter-specific apps on compatible devices.

visit → added by THUGS(red)

Kismet tool Linux

Blue Team SDR / RF Wireless / WiFi

A wireless network and device detector, sniffer and WIDS framework — covers WiFi, Bluetooth, and SDR-fed protocols well beyond what aircrack-ng alone monitors.

kismet -c wlan0
visit → added by THUGS(red)

Momentum Firmware tool

Hardware NFC / RFID Wireless / WiFi

Community custom firmware for Flipper Zero focused on stability and quality-of-life features on top of the official stack (more protocols, UI tweaks, plugin support).

visit → added by THUGS(red)

nRF Connect for Mobile tool

Enumeration Mobile Wireless / WiFi

Nordic Semiconductor's free Android/iOS app for scanning BLE advertisements and browsing/writing GATT services and characteristics by hand — the everyday tool for poking at a smart-device's Bluetooth surface.

visit → added by THUGS(red)

Pixiewps tool Linux

Brute Force Cryptography Wireless / WiFi

Offline WPS PIN recovery from a single handshake exchange (the "pixie dust" attack) against APs with weak random-number generation, instead of an online brute force.

pixiewps -e <PKE> -r <PKR> -s <E-Hash1> -z <E-Hash2> -a <Authkey> -n <E-Nonce>
visit → added by THUGS(red)

PowerShell — dump saved WiFi passwords one-liner Windows

Enumeration Red Team Wireless / WiFi

netsh (built into every Windows install) will export every remembered WiFi profile with its cleartext key in one loop — a fast post-compromise wireless-credential grab.

netsh wlan show profiles | ForEach-Object { if ($_ -match "All User Profile\s*:\s(.+)") { netsh wlan show profile name="$($matches[1])" key=clear } }
added by THUGS(red)

Reaver (t6x fork) tool Linux

Brute Force Wireless / WiFi

The original online WPS PIN brute-forcer, kept alive as a community fork after the upstream project went unmaintained; still the reference implementation the WPS attack is named after.

reaver -i wlan0mon -b AA:BB:CC:DD:EE:FF -vv
visit → added by THUGS(red)

Ubertooth One tool

Hardware Wireless / WiFi

Open-source USB Bluetooth (Classic and BLE) monitoring hardware plus its host tools, for sniffing and following connections that a normal Bluetooth adapter's firmware hides.

ubertooth-btle -f -c capture.pcap
visit → added by THUGS(red)

WiFi Pineapple tool

Hardware Red Team Wireless / WiFi

Hak5's dedicated rogue-AP/MITM hardware appliance — recon, karma/evil-twin attacks and traffic capture through a web dashboard and a modules ecosystem, built for field engagements.

visit → added by THUGS(red)

Wifiphisher tool Linux

Offensive Red Team Wireless / WiFi

Rogue access point framework built around social-engineering captive portals (fake firmware upgrade, router config pages) rather than brute-forcing the handshake.

sudo wifiphisher -aI wlan0 -jI wlan1 -p firmware-upgrade
visit → added by THUGS(red)

Wifite2 tool Linux

Brute Force Red Team Wireless / WiFi

Python rewrite of the "point it at every visible network" Wi-Fi auditing wrapper — automates monitor mode, handshake/PMKID capture and WPS attacks via aircrack-ng/hcxtools/reaver/bully.

sudo wifite --dict /path/to/wordlist.txt
# target one BSSID only:
sudo wifite -e "Target-SSID" --dict wordlist.txt
visit → added by THUGS(red)

WiGLE.net tool

Device Search OSINT Wireless / WiFi

Crowd-sourced database and search engine of wireless networks (Wi-Fi, Bluetooth, cellular) mapped by GPS location, built from years of wardriving submissions.

visit → added by THUGS(red)

Xtreme Firmware tool

Hardware NFC / RFID Wireless / WiFi

Feature-maximalist community custom firmware for Flipper Zero — bundles extra sub-GHz frequencies/protocols, apps and unlocks beyond what the stock firmware ships.

visit → added by THUGS(red)