npx claudepluginhub mysterionrise/ctf-kitHelp solve steganography challenges. Use this command when: - Challenge involves images (PNG, JPEG, BMP, GIF) - Audio files (WAV, MP3, FLAC) - Hidden data in media files - Challenge mentions "hidden" or "invisible" data - **LSB (Least Significant Bit)**: Data hidden in pixel values - **Metadata**: EXIF data, comments - **File appending**: Data after EOF marker - **Color channels**: Hidden in sp...
SEO specialist for technical audits, on-page optimization, structured data, Core Web Vitals, and keyword mapping. Delegate site audits, meta tag reviews, schema markup, sitemaps/robots issues, and remediation plans.
Share bugs, ideas, or general feedback.
Help solve steganography challenges.
Use this command when:
# Check available tools
ctf check --category stego
# PNG/BMP analysis
zsteg image.png
zsteg -a image.png # all combinations
# JPEG steganography
steghide extract -sf image.jpg
# Metadata
exiftool image.jpg
# Check for embedded files
binwalk image.png
# View hex
xxd image.png | head -50
Check metadata first
exiftool image.jpg
strings image.jpg | head -50
Look for appended data
binwalk image.png
xxd image.png | tail -20
Try common stego tools
zsteg -a image.pngsteghide extract -sf image.jpgAnalyze bit planes
For audio
# All checks
zsteg -a image.png
# Specific extractions
zsteg -E "b1,rgb,lsb,xy" image.png # LSB of RGB
zsteg -E "extradata:0" image.png # Trailing data
# Common patterns
zsteg image.png | grep -i "text\|flag\|ascii"
# Extract with empty password
steghide extract -sf image.jpg -p ""
# Extract with password
steghide extract -sf image.jpg -p "password"
# Info about file
steghide info image.jpg
from PIL import Image
def extract_lsb(image_path):
img = Image.open(image_path)
pixels = list(img.getdata())
bits = ""
for pixel in pixels:
for channel in pixel[:3]: # RGB
bits += str(channel & 1)
# Convert bits to bytes
chars = [chr(int(bits[i:i+8], 2)) for i in range(0, len(bits), 8)]
return ''.join(chars)
When responding to /ctf.stego:
/ctf.analyze - Initial file analysis/ctf.forensics - For file carving