Skip to content

lhvy/sneaky

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

sneaky

What?

A general purpose steganography tool written in Rust (🦀). This is an education tool I used to learn more about steganography, it has support for image encoding with LSB, my own somewhat cursed encoding in WAV files, and a very cool method of encoding data inside of executable files (only Mach-O ARM64 for now).

The image LSB feature is able to store arbitrary data in an RGB image, along with encryption/randomisation of the data using a user-inputted password to mitigate against steganalysis and brute-forcing. On top of this, the LSB encoding/decoding process was rewritten several times and been benchmarked against a popular steganography library that uses NumPy (a highly optimised C library). This Rust tool is significantly faster for both encoding and decoding. Note, you can run the benchmarks yourself by running cargo run --bin bench --release.

Note These benchmarks were run on an M1 MacBook Pro. 8-bit encoding is supported, but benchmark graphs were not very useful.

Where?

You can find the latest releases for Windows, Linux and macOS (universal binary) here. Don't forget to chmod +x on macOS or Linux!

If you want to test out the tool, try completing some of the basic activities here.

If you want to try reading/implementing some super basic image LSB code in Python, check out this.

How?

The entire tool is operated by an interactive terminal interface. Just run the binary to start the tool, and follow the instructions. All files outputted will be stored in the current working directory.

Stretch Goals

On top of the existing functionality, these are potential items to improve in the future. If anyone else has suggestions (or wants to add code 😳), please feel free to make an issue or PR.

  • Interactive UI
  • LSB benchmarks
  • Basic tests
  • Sample activities
  • More error checking
  • x86 binary support
  • Chaining inputs without having to restart the program
  • Automation
  • Testing of unsafe code
  • Phase Encoding or DWT for audio

About

No description or website provided.

Topics

Resources

License

Stars

Watchers

Forks

Languages