Posts

Showing posts with the label Python Steganography Tool: Stegosaurus

Python Steganography Tool: Stegosaurus

Image
Python Steganography Tool A steganography tool for embedding payloads within Python bytecode.      Stegosaurus is a steganography tool that allows embedding arbitrary payloads in Python bytecode (pyc or pyo) files. The embedding process does not alter the runtime behavior or file size of the carrier file and typically results in a low encoding density. The payload is dispersed throughout the bytecode so tools like strings will not show the actual payload. Python’s dis module will return the same results for bytecode before and after Stegosaurus is used to embed a payload. At this time, no prior work or detection methods are known for this type of payload delivery. Stegosaurus requires Python 3.6 or later. USAGE $ python3 -m stegosaurus -h usage: stegosaurus.py [-h] [-p PAYLOAD] [-r] [-s] [-v] [-x] carrier positional arguments:   carrier               Carrier py, pyc or pyo file optional arguments:   -h, --help     ...