All Projects → danielcardeenas → Audiostego

danielcardeenas / Audiostego

Licence: mit
Audio file steganography. Hides files or text inside audio files and retrieve them automatically

Projects that are alternatives of or similar to Audiostego

Pyexfil
A Python Package for Data Exfiltration
Stars: ✭ 554 (+246.25%)
Mutual labels:  steganography
Tweetable Polyglot Png
Pack up to 3MB of data into a tweetable PNG polyglot file.
Stars: ✭ 299 (+86.88%)
Mutual labels:  steganography
Steganogan
SteganoGAN is a tool for creating steganographic images using adversarial training.
Stars: ✭ 124 (-22.5%)
Mutual labels:  steganography
Stegify
🔍 Go tool for LSB steganography, capable of hiding any file within an image.
Stars: ✭ 927 (+479.38%)
Mutual labels:  steganography
Stegextract
Detect hidden files and text in images
Stars: ✭ 79 (-50.62%)
Mutual labels:  steganography
Steganographer
Steganograpy in Python | Hide files or data in Image Files
Stars: ✭ 104 (-35%)
Mutual labels:  steganography
Covertutils
A framework for Backdoor development!
Stars: ✭ 424 (+165%)
Mutual labels:  steganography
Audio Steganography Algorithms
A Library of Audio Steganography & Watermarking Algorithms
Stars: ✭ 146 (-8.75%)
Mutual labels:  steganography
Pentesting toolkit
🏴‍☠️ Tools for pentesting, CTFs & wargames. 🏴‍☠️
Stars: ✭ 1,268 (+692.5%)
Mutual labels:  steganography
Stego Toolkit
Collection of steganography tools - helps with CTF challenges
Stars: ✭ 1,693 (+958.13%)
Mutual labels:  steganography
F5stegojs
JPEG steganography for browser and node. F5 algo in pure javascript.
Stars: ✭ 42 (-73.75%)
Mutual labels:  steganography
Cloakify
CloakifyFactory - Data Exfiltration & Infiltration In Plain Sight; Convert any filetype into list of everyday strings, using Text-Based Steganography; Evade DLP/MLS Devices, Defeat Data Whitelisting Controls, Social Engineering of Analysts, Evade AV Detection
Stars: ✭ 1,136 (+610%)
Mutual labels:  steganography
Stegonline
A web-based, accessible and open-source port of StegSolve.
Stars: ✭ 105 (-34.37%)
Mutual labels:  steganography
Hackingtool
ALL IN ONE Hacking Tool For Hackers
Stars: ✭ 7,521 (+4600.63%)
Mutual labels:  steganography
Stegbrute
Fast Steganography bruteforce tool written in Rust useful for CTF's
Stars: ✭ 134 (-16.25%)
Mutual labels:  steganography
Jsteg
JPEG steganography
Stars: ✭ 448 (+180%)
Mutual labels:  steganography
Desudesutalk
Steganography for imageboards
Stars: ✭ 100 (-37.5%)
Mutual labels:  steganography
Malware
Rootkits | Backdoors | Sniffers | Virus | Ransomware | Steganography | Cryptography | Shellcodes | Webshells | Keylogger | Botnets | Worms | Other Network Tools
Stars: ✭ 156 (-2.5%)
Mutual labels:  steganography
Steg86
Hiding messages in x86 programs using semantic duals
Stars: ✭ 136 (-15%)
Mutual labels:  steganography
Information Security Tasks
This repository is created only for infosec professionals whom work day to day basis to equip ourself with uptodate skillset, We can daily contribute daily one hour for day to day tasks and work on problem statements daily, Please contribute by providing problem statements and solutions
Stars: ✭ 108 (-32.5%)
Mutual labels:  steganography

AudioStego

Audio file steganography. Hides text or files inside audio files and retrieve them automatically. It actually supports only .mp3 and .wav files as inputs, but you can hide whatever kind of file or text on them.

Here is a post about this software.

Build

This shit needs CMake to build. So download it before compiling.

> sudo apt-get install libboost-all-dev
> git clone https://github.com/danielcardeenas/AudioStego.git
> cd AudioStego
> mkdir build
> cd build
> cmake ..
> make

And it should create be a file named hideme

Note: Boost libraries need to be installed to compile

How to use

Hiding data

In order to hide a file inside another file

> ./hideme file_used_to_hide_data file_to_hide

Or if you want to hide a string on it

> ./hideme file_used_to_hide_data "'Message to hide'"

(Notice the simple quotation inside double quotes)

Both will output a clone of the file with the hidden data as output.(file extension)

Retrieving hidden data

In order to retrieve a hidden message just set the "-f" or "--find" flag:

> ./hideme [file_with_hidden_data] -f

It will automatically detect wether it's a string or a file and the type of the file itself.

  • If it's a file, it will create it as output.(file extension)
  • If it's a string message, it will print it on the console/terminal
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].