steg
steganography (hide data in images, audio, text).
Load with: use steg
Quick example
use steg
result = stegi("./example", "value", "./example")
prn(result)
Functions
LSB image steganography (BMP/PNG)
stegi(img_path, data, output_path)
Performs the operation. Takes img_path, data, output_path.
stegi1(img_path)
Performs the operation. Takes img_path.
stegi2(img_path)
Performs the operation. Takes img_path.
LSB audio steganography (WAV)
stega(wav_path, data, output_path)
Performs the operation. Takes wav_path, data, output_path.
stega1(wav_path)
Performs the operation. Takes wav_path.
Metadata injection (EXIF, ID3)
stegm(file_path, key, value)
Performs the operation. Takes file_path, key, value.
stegm1(file_path, key)
Performs the operation. Takes file_path, key.
EOF injection (append data after file end)
stste(file_path, data)
Performs the operation. Takes file_path, data.
stste1(file_path, marker)
Performs the operation. Takes file_path, marker.
Text steganography (zero-width chars, whitespace)
stegz(msg)
Performs the operation. Takes msg.
stegz1(hidden)
Performs the operation. Takes hidden.
stegt(msg, cover_text)
Performs the operation. Takes msg, cover_text.
Statistical analysis
stege(data)
Gets or retrieves a value. Takes data.
stege1(data)
Performs the operation. Takes data.
Detection
stegd(file_path)
Performs the operation. Takes file_path.
Notes
- Steganography - hide/extract data in images. Use only on systems you own.