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

ANY.RUN tool

Blue Team Malware

An interactive online malware sandbox — unlike a fully automated sandbox, an analyst can click through the running VM in real time (dismiss a dialog, wait out a sleep timer) to get past evasion that defeats hands-off detonation.

visit → added by THUGS(red)

APKiD tool

Binary / RE Malware Mobile

Fingerprints an APK's toolchain, compiler and packer/obfuscator (PEiD for Android) — quickly flags whether a sample was built with a known obfuscation or packing tool.

apkid app.apk
visit → added by THUGS(red)

Binary Refinery tool

Blue Team Malware

CLI toolkit of chainable "units" (like a Unix pipeline) for deobfuscating and unpacking malware — base64/XOR decode, carve, decompress and extract config data in one piped command.

emit sample.bin | carve -f b64 | b64 | xor 0x41 | peek
visit → added by THUGS(red)

capa tool

Binary / RE Blue Team Malware

Identifies capabilities in an executable — "reads the clipboard", "installs a service", "encrypts files" — by matching disassembly and API-call patterns, so an analyst gets a functional summary before doing manual reverse engineering.

capa malware.exe
visit → added by THUGS(red)

CAPE Sandbox tool Linux

Blue Team Defensive Malware

An automated malware analysis sandbox descended from Cuckoo, focused on Configuration And Payload Extraction — it unpacks and extracts C2 configs from common malware families rather than just logging behaviour.

visit → added by THUGS(red)

CAPEv2 tool Linux

Blue Team Malware

Config And Payload Extraction — a Cuckoo fork focused on automatically unpacking malware and dumping the decrypted C2 configuration of hundreds of known families.

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)

CFF Explorer (Explorer Suite) tool Windows

Binary / RE Blue Team Malware

PE editor and viewer for manually inspecting and patching Windows executable headers, sections, imports and resources — a staple of PE-format malware triage.

visit → added by THUGS(red)

Check for a global LD_PRELOAD backdoor one-liner Linux

Blue Team Forensics Malware

/etc/ld.so.preload is loaded into every dynamically linked binary on the system, a favourite location for rootkit persistence.

cat /etc/ld.so.preload 2>/dev/null
ls -la /etc/ld.so.preload
added by THUGS(red)

Compute and compare a file hash against a known-bad list one-liner

Blue Team Forensics Malware

Quick manual triage step before uploading a sample anywhere — hash it locally and grep against a downloaded IOC list (e.g. exported from MISP/ThreatFox) offline.

sha256sum suspicious.bin | tee /dev/stderr | cut -d' ' -f1 | grep -Ff known_bad_hashes.txt && echo MATCH
added by THUGS(red)

Cortex tool

Blue Team Defensive Malware

TheHive project's observable-analysis engine — runs analyzers (VirusTotal, abuse.ch, MISP, sandbox lookups, etc.) against IOCs on demand or from a case.

visit → added by THUGS(red)

Cuckoo Sandbox tool Linux

Blue Team Malware

The original open-source automated malware analysis sandbox — detonates a sample in an instrumented VM and reports API calls, network traffic, dropped files and screenshots.

cuckoo submit suspicious.exe
visit → added by THUGS(red)

Detect It Easy (DIE) tool

Binary / RE CTF Malware

Signature-based packer, compiler and file-type identifier for PE/ELF/Mach-O binaries — the modern, actively maintained successor to PEiD for "what packed this".

diec ./sample.exe
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)

dnSpyEx tool Windows

Binary / RE Blue Team Malware

Community-maintained continuation of dnSpy — a .NET assembly editor, debugger and decompiler, the standard tool for analysing .NET malware and unpacking .NET loaders.

visit → added by THUGS(red)

DRAKVUF tool Linux

Blue Team Malware

Agentless dynamic malware analysis system built on Xen VMI — observes a sample from outside the guest, so it leaves no in-guest artifacts for anti-analysis code to detect.

visit → added by THUGS(red)

Dump loaded kernel modules one-liner Linux

Blue Team Forensics Malware

An unfamiliar or unsigned module in the list is one of the more reliable signs of a kernel-level rootkit.

lsmod | sort
added by THUGS(red)

Exeinfo PE tool Windows

Binary / RE Blue Team Malware

Lightweight PE packer/compiler signature scanner with built-in unpacker scripts for common packers — a quick first pass before deeper static analysis.

visit → added by THUGS(red)

Extract IOCs (IPs and domains) out of a log or report file one-liner

Blue Team Forensics Malware

Pulls every IPv4 address and FQDN-looking string out of an arbitrary text blob (a vendor report, a phishing email, a log dump) for quick pivoting into a threat-intel lookup.

grep -oE '([0-9]{1,3}\.){3}[0-9]{1,3}' report.txt | sort -u
grep -oE '\b[a-z0-9.-]+\.[a-z]{2,}\b' report.txt | sort -u
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)

Fenrir tool Linux

Blue Team Defensive Malware

A dependency-free bash IOC scanner in the same family as Loki — checks hashes, filenames, string matches and suspicious permissions against a simple indicator list, for hosts where nothing heavier can be installed.

./fenrir.sh /path/to/scan
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)

FLARE FLOSS tool

Binary / RE CTF Malware

Mandiant's tool for extracting obfuscated/encoded strings from a binary by emulating the routines that decode them at runtime — surfaces strings plain `strings` cannot see.

floss ./chall
visit → added by THUGS(red)

FLARE-VM tool Windows

Blue Team Malware

Mandiant's Windows counterpart to REMnux — a scripted install of a full reverse-engineering and malware-analysis toolchain onto a fresh Windows VM, for analysing Windows malware in its native environment.

visit → added by THUGS(red)

FLOSS tool

Blue Team Malware

FireEye Labs Obfuscated String Solver — automatically extracts stack strings, decoded strings and tight-loop-obfuscated strings that plain `strings` misses in packed/obfuscated malware.

floss malware.exe -o strings.txt
visit → added by THUGS(red)

FLOSS (FLARE Obfuscated String Solver) tool

Binary / RE Blue Team Malware

Mandiant's successor to plain `strings` for malware triage — statically emulates a binary just enough to decode stack strings, obfuscated strings and strings built at runtime that a normal string dump never reveals.

floss malware.exe
visit → added by THUGS(red)

HollowsHunter tool Windows

Blue Team Malware

Runs PE-sieve across every running process on a system in one pass, flagging and dumping any that show signs of process hollowing or code injection — a whole-host sweep rather than a single-process check.

hollows_hunter64.exe
visit → added by THUGS(red)

Hybrid Analysis tool

Blue Team Malware

CrowdStrike's free public malware sandbox (Falcon Sandbox front end) — submit a sample or hash and get a detailed static/dynamic report, MITRE ATT&CK mapping included.

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)

IntelOwl tool

Blue Team Malware Research

A threat-intel aggregation platform that fans a single observable (hash, IP, domain, URL) out to dozens of analyzers — VirusTotal, AbuseIPDB, YARA, sandboxes — and returns one combined report instead of querying each by hand.

visit → added by THUGS(red)

Intezer Analyze tool

Blue Team Malware

Malware analysis platform built around code-reuse/genetic similarity — classifies a sample by comparing its compiled code fragments against known malware and software libraries.

visit → added by THUGS(red)

Joe Sandbox tool

Blue Team Malware

Deep-analysis malware sandbox with a free cloud-basic tier — hybrid static/dynamic/hypervisor-based analysis with especially detailed behaviour and evasion detection signals.

visit → added by THUGS(red)

Karton tool

Blue Team Malware

CERT.pl's distributed malware analysis pipeline framework — chains classifiers, unpackers and config extractors as independent workers around a shared task queue.

visit → added by THUGS(red)

List processes with no on-disk backing image one-liner

Blue Team Forensics Malware

A process running from memory with a deleted or missing on-disk image is a strong process-injection/hollowing indicator — this osquery pulls exactly that condition.

osqueryi "SELECT pid, name, path, cmdline FROM processes WHERE on_disk = 0;"
added by THUGS(red)

Loki tool

Blue Team Defensive Malware

Florian Roth's free IOC and YARA scanner — walks a filesystem checking file hashes, filenames, YARA signatures and known-bad registry/process indicators against a curated ruleset, for a quick compromise check on a single host.

python loki.py -p C:\
visit → added by THUGS(red)

LOLDrivers tool Windows

Cheat Sheets LOLBAS / LOTL Malware

Catalogue of known vulnerable and malicious signed Windows kernel drivers (the "bring your own vulnerable driver" list) used for EDR-killing and kernel-level attacks.

visit → added by THUGS(red)

Malcat tool Windows

Binary / RE Blue Team Malware

Hex-editor-meets-static-analyzer built for malware and CTF work — combines hex view, disassembly, string extraction, entropy visualisation and YARA scanning in one IDE-like window.

visit → added by THUGS(red)

MalDuck tool

Blue Team Malware

CERT.pl's Python library for malware config extraction and crypto/decoding primitives — the extraction engine behind mwdb/Karton pipelines for many malware families.

visit → added by THUGS(red)

MalwareBazaar tool

Malware Research

abuse.ch project sharing malware samples and hashes submitted by the community, with free API access for hash lookups and bulk sample downloads for research.

visit → added by THUGS(red)

Manalyze tool

Binary / RE Blue Team Malware

Static PE analysis tool aimed at malware triage — plugin architecture scores suspicious imports, packing, resources and sections and can run YARA rules over the binary.

manalyze --dump=all suspicious.exe
visit → added by THUGS(red)

MISP tool

Blue Team Defensive Malware

Open-source threat intelligence platform — stores, correlates and shares IOCs and events between organisations via a structured, taxonomy-tagged data model.

visit → added by THUGS(red)

Moneta tool Windows

Blue Team Malware

A memory-anomaly scanner for detecting malware implants that leave no trace on disk — walks a process's virtual memory looking for the permission/backing-file inconsistencies that in-memory injection techniques produce.

Moneta64.exe -p 1234
visit → added by THUGS(red)

mwdb-core tool

Blue Team Malware

CERT.pl's Malware Database — a sample repository and analysis pipeline hub that stores samples, configs and relations, feeding automated processing via Karton.

visit → added by THUGS(red)

Noriben tool Windows

Blue Team Malware

A Python wrapper around Sysinternals Procmon that auto-generates a concise, readable malware behaviour report — file, registry, network and process activity — from one run.

python Noriben.py
visit → added by THUGS(red)

PE-bear tool Windows

Binary / RE CTF Malware

GUI PE file analyzer for inspecting and editing headers, sections, imports and resources of Windows executables — a staple for manual PE malware/CTF triage.

visit → added by THUGS(red)

PE-sieve tool Windows

Binary / RE Blue Team Malware

hasherezade's scanner for detecting and dumping malicious implants (process hollowing, reflective DLL injection, shellcode) from a single running Windows process, recovering an unpacked copy for analysis.

pe-sieve64.exe /pid 1234
visit → added by THUGS(red)

peframe tool

Binary / RE Blue Team Malware

Open-source Python tool for static malware analysis of PE files — extracts strings, imports, indicators of packing and generic obfuscation with a simple CLI report.

peframe suspicious.exe
visit → added by THUGS(red)

PEStudio tool Windows

Binary / RE Blue Team Malware

Static PE-file triage tool that surfaces imports, strings, resources and known-bad indicators in a suspicious Windows executable up front — designed specifically to be run without ever executing the sample.

visit → added by THUGS(red)

Process Monitor (Procmon) tool Windows

Blue Team Forensics Malware

Sysinternals tool logging real-time file system, registry and process/thread activity — the standard way to see exactly what a suspicious process is doing on a live Windows host.

procmon.exe /BackingFile trace.pml /Quiet /Minimized
visit → added by THUGS(red)

Qiling Framework tool

Binary / RE CTF Malware

Higher-level binary emulation framework built on Unicorn that emulates whole userspace programs (Linux/Windows/macOS/firmware) including syscalls, letting you run a target off its own OS.

qltool run -f ./sample --rootfs ./rootfs
visit → added by THUGS(red)

Quark-Engine tool

Malware Mobile

Android malware-scoring engine that matches API call sequences against a rule set to produce a "how malicious does this behave" score, rather than just a static signature match.

quark -a app.apk -s
visit → added by THUGS(red)

Quick Gatekeeper/quarantine status of a downloaded file one-liner macOS

Forensics Malware

Shows the quarantine extended attribute macOS stamps on anything downloaded from the internet — useful for both malware triage and testing your own tooling's execution path.

xattr -l suspicious_file
added by THUGS(red)

Regshot tool Windows

Blue Team Malware

Takes a registry+filesystem snapshot before and after running a sample and diffs them — the quickest way to see exactly what a piece of malware changed on disk/registry.

visit → added by THUGS(red)

REMnux tool Linux

Blue Team Malware

Lenny Zeltser's curated Linux distribution for malware analysis — pre-installs the FLARE/community toolchain (FLOSS, Capa, YARA tooling, network fakers, deobfuscators) so an analyst is not assembling one tool at a time.

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)

signature-base tool

Blue Team Defensive Malware

Neo23x0's public collection of YARA rules and IOCs used by Loki/THOR — a solid, actively maintained rule set to drop straight into your own scanner or SIEM.

visit → added by THUGS(red)

Speakeasy tool

Binary / RE Blue Team Malware

Mandiant's Windows binary emulator for malware analysis — runs a sample's code against an emulated Windows API surface to observe its behaviour (registry, network, file activity) without a full sandbox VM or real execution.

speakeasy -t malware.exe -o report.json
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)

ssdeep tool

Hashing Malware

Fuzzy (context-triggered piecewise) hashing tool for measuring similarity between files rather than exact equality — used to cluster near-identical malware samples or CTF file variants.

ssdeep -r samples/
visit → 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)

theZoo tool

Blue Team Malware Research

Curated repository of live malware samples for research and defence testing — clearly labelled and deliberately hard to run by accident.

visit → added by THUGS(red)

THOR Lite tool

Blue Team Defensive Malware

Nextron Systems' free edition of their commercial THOR APT scanner — a faster, more actively maintained successor to Loki, built to sweep a host for the same class of compromise indicators and YARA hits.

visit → added by THUGS(red)

ThreatFox tool

Blue Team Malware Research

abuse.ch platform for sharing indicators of compromise (IOCs) — malicious IPs, domains and URLs tied to specific malware families, free to query via API.

visit → added by THUGS(red)

TLSH tool

Hashing Malware

Trend Micro's locality-sensitive fuzzy hash, an alternative to ssdeep with better resistance to certain evasion tricks, used for file/malware similarity matching.

visit → added by THUGS(red)

Triage (tria.ge) tool

Blue Team Malware

Hatching's automated malware sandbox — detonates a submitted sample across multiple Windows/Linux/Android profiles and returns behavioural reports, extracted configs and IOCs, with a free tier for public submissions.

visit → added by THUGS(red)

URLhaus tool

Blue Team Malware Research

abuse.ch project tracking URLs actively distributing malware, with a searchable database and downloadable blocklists for defensive use.

visit → added by THUGS(red)

VirusTotal tool

Blue Team Malware Research

Multi-engine file/URL/domain/IP reputation lookup aggregating dozens of AV engines and sandboxes — the standard first stop for triaging a suspicious sample or link.

visit → added by THUGS(red)

VX-Underground tool

Blue Team Malware Research

Large public archive of malware samples, source code leaks and research papers — the go-to reference library for malware researchers looking up a family or campaign.

visit → added by THUGS(red)

YARA tool

Blue Team Forensics Malware

A pattern-matching engine purpose-built for malware research — write rules describing families of malicious files, then scan a filesystem or memory image against them at speed.

yara rules.yar suspicious_file
visit → added by THUGS(red)

YARA-X tool

Blue Team Malware

VirusTotal's ground-up Rust rewrite of the YARA scanning engine — a drop-in-compatible, faster and memory-safer replacement for the original C implementation, maintained by the same team.

yr scan rules.yar sample.bin
visit → added by THUGS(red)

yarGen tool

Blue Team Defensive Malware

Generates YARA rules from a set of malware samples, using string frequency scoring against a large goodware corpus to avoid noisy, false-positive-prone signatures.

python3 yarGen.py -m /malware_samples/ -o generated.yar
visit → added by THUGS(red)