Skip to content

bad-antics/nullsec-freakshow

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 

History

3 Commits
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

๐ŸŽช nullsec-freakshow

The Freakshow Suite โ€” 30 Weird & Creepy Security CLI Tools

Python License bad-antics Tools

Step right up. The show is about to begin. What you see here cannot be unseen.

Every tool is a standalone Python CLI built with Click. Install one, install all โ€” each has its own setup.py, README, and entry point.


๐ŸŽญ The Full Roster

# Tool Command Description
1 ๐Ÿ”ฎ Sigil sigil Visual hash fingerprinting โ€” turns any hash into geometric SVG art
2 ๐Ÿ“ฆ Dead Drop dead-drop LSB steganography โ€” hide AES-256 encrypted messages in PNG images
3 ๐ŸŽฒ Miasma miasma Shannon entropy analyzer โ€” detect stego, weak crypto, packed malware
4 โฐ Temporal temporal Filesystem forensic timestamp analyzer โ€” detect timestomping
5 ๐Ÿ”ข Hexspeak hexspeak Hex word encoder/decoder with 150+ word dictionary & poetry
6 ๐Ÿ‘๏ธ Whisper whisper Spectral audio steganography โ€” voices hidden in spectrograms
7 ๐Ÿบ Skinwalker skinwalker Process mimicry detector โ€” finds processes wearing other faces
8 ๐Ÿ”ฎ Ouija ouija File carving & recovery โ€” summon spirits from deleted files
9 ๐Ÿ‘ป Eidolon eidolon Ghost network packets โ€” spectral traffic analysis
10 ๐Ÿ‘ฅ Doppelganger doppelganger File identity crisis detector โ€” unmask file impostors
11 ๐Ÿ•ฏ๏ธ Seance seance Network necromancy โ€” resurrect dead connections
12 ๐ŸŸ Lamprey lamprey Dependency infection analyzer โ€” supply chain lamprey detection
13 ๐Ÿชก Voodoo voodoo Live process memory analysis โ€” stick pins in memory
14 ๐ŸฆŽ Cryptid cryptid Hidden API & endpoint hunter โ€” find what shouldn't be found
15 ๐Ÿ‘น Gremlin gremlin Filesystem chaos agent โ€” anomaly detection & honeypots
16 ๐Ÿ“– Grimoire grimoire The dark book of password arts โ€” occult password generator
17 ๐ŸฆŒ Wendigo wendigo Resource devourer detector โ€” hunt hungry processes
18 ๐Ÿ”” Harbinger harbinger Log scream detector โ€” the harbinger hears all
19 ๐ŸงŸ Revenant revenant Zombie process hunter โ€” hunt the undead
20 ๐Ÿ“• Necronomicon necronomicon System dark assessment โ€” the book that should not be read
21 ๐Ÿ‰ Chimera chimera Binary polyglot structure validator โ€” multi-headed file analysis
22 ๐Ÿ Basilisk basilisk DNS resolver security audit โ€” the paralyzing gaze
23 ๐Ÿ‘ค Apparition apparition Environment variable security audit โ€” what lurks in your env
24 ๐Ÿฆ‚ Manticore manticore TLS/SSL certificate chain analyzer โ€” the venomous sting
25 ๐Ÿ‘น Ghoul ghoul Shared library injection detector โ€” feeding on .so files
26 ๐Ÿ’€ Lich lich Kernel module & rootkit surface scanner โ€” commands the dead
27 ๐Ÿ˜ˆ Imp imp Shell history auditor โ€” mischievous secrets finder
28 ๐ŸŒ‘ Shade shade File permission anomaly hunter โ€” lurking in the shadows
29 ๐Ÿงž Djinn djinn Container escape surface analyzer โ€” trapped but scheming
30 ๐Ÿฆ‡ Mothman mothman Network promiscuity & ARP anomaly detector โ€” watching from the dark

โšก Quick Install

# Clone the repo
git clone https://github.com/bad-antics/nullsec-freakshow.git
cd nullsec-freakshow

# Install everything (30 tools + meta-suite)
chmod +x install.sh && ./install.sh

# Or install individually
pip install -e nullsec-sigil/
pip install -e nullsec-grimoire/

๐Ÿ–ฅ๏ธ Quick Demo

# Visual hash art
sigil stamp sha256 "hello world"

# Generate an occult password
grimoire conjure --style rune --length 32

# Hunt processes pretending to be something else
skinwalker scan

# Full system dark assessment
necronomicon ritual

# DNS security audit
basilisk gaze

# Container escape surface analysis
djinn lamp

# Network anomaly detection
mothman sighting

# Shell history secrets
imp mischief

# Master suite โ€” see all tools + install status
freakshow roster

๐Ÿ“ Repo Structure

nullsec-freakshow/          โ† This repo
โ”œโ”€โ”€ install.sh              โ† One-shot installer for all 30 tools
โ”œโ”€โ”€ nullsec-freakshow/      โ† Meta-package (freakshow CLI + roster)
โ”œโ”€โ”€ nullsec-sigil/          โ† Tool 1
โ”‚   โ”œโ”€โ”€ sigil/
โ”‚   โ”‚   โ”œโ”€โ”€ __init__.py
โ”‚   โ”‚   โ”œโ”€โ”€ engine.py       โ† Core logic
โ”‚   โ”‚   โ””โ”€โ”€ cli.py          โ† Click CLI
โ”‚   โ”œโ”€โ”€ setup.py
โ”‚   โ””โ”€โ”€ README.md
โ”œโ”€โ”€ nullsec-dead-drop/      โ† Tool 2
โ”œโ”€โ”€ ...                     โ† Tools 3-29
โ””โ”€โ”€ nullsec-mothman/        โ† Tool 30

Every tool follows the same pattern: {name}/engine.py (logic), {name}/cli.py (Click interface), setup.py (packaging).

๐Ÿ”ง Requirements

  • Python 3.8+
  • Linux (some tools read /proc, /sys, etc.)
  • No external dependencies beyond click>=8.0

๐Ÿ“„ License

MIT โ€” bad-antics / nullsec 2026


The freakshow never closes. It only moves to the next town.

About

๐ŸŽช The Freakshow Suite โ€” 30 Weird & Creepy Security CLI Tools | Python + Click | bad-antics

Topics

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Contributors