Skip to content
Gaurav Raj edited this page May 6, 2021 · 1 revision

Welcome to the hiddenwave wiki!

HiddenWave

Hide your personal Data inside The Audio wav file
Written in C++ by Gaurav Raj [TheHackersBrain]

bannerImage

Hiddenwave is a simple audio steganography tool written in C++ for hiding your files or messages inside a .wav or .mp3 audio file. This tool is inspired by HiddenWave created by Techchip.

NOTE: This tool only supports the .mp3 and .wav audio files and can hide any other files inside the audio file.

Version

Hiddenwave 1.0.0 (Early Release)

Requirement

Installation and Uses

  • Make Sure all requirements are installed
sudo apt install libboost-all-dev cmake -y
  • Git clone this repo and change the directory
git clone https://github.com/thehackersbrain/hiddenwave.git && cd hiddenwave
  • Now Build the package
mkdir build && cd build && cmake ..
  • Now make the final binary
make
  • Copy the binary in /usr/bin/ for easy access (optional)
sudo cp hiddenwave /usr/bin/

How to Use

Hiding Data

  • For hiding files inside .wav audio file.
    ./hiddenwave -i input.wav -f filetobehidden.txt -o output.wav
    
  • For hiding message inside .wav audio file.
    ./hiddenwave -i input.wav -m 'Dummy Message' -o output.wav
    

Extracting Data

./hiddenwave -i output.wav
  • If the hidden data is some message, it will be printed on the terminal.
  • If the hidden data is a file, it will be extracted on the current directory.

Credits

Inspired by: HiddenWave by Techchip

Author

Creator: Gaurav Raj
Portfolio: Here
Blog: TheHackersBrain Blog
Projects: Here
Twitter: @thehackersbrain
TryHackMe: hackersbrain

Clone this wiki locally