{"id":35169562,"url":"https://github.com/thehackersbrain/hiddenwave","last_synced_at":"2025-12-28T20:04:54.933Z","repository":{"id":54266352,"uuid":"365014926","full_name":"thehackersbrain/hiddenwave","owner":"thehackersbrain","description":"An Audio Steganography Tool, written in C++","archived":false,"fork":false,"pushed_at":"2021-05-14T20:58:28.000Z","size":60,"stargazers_count":50,"open_issues_count":0,"forks_count":4,"subscribers_count":3,"default_branch":"main","last_synced_at":"2023-03-06T13:33:31.769Z","etag":null,"topics":["audio","audio-files","audio-steganography","hacking","hacking-tool","hiddenwave","mrrobot","steganography","steganography-algorithms","thehackersbrain"],"latest_commit_sha":null,"homepage":"https://thehackersbrain.github.io/posts/how-to-hide-files-inside-audio-file-or-music-file/","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/thehackersbrain.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2021-05-06T19:22:21.000Z","updated_at":"2023-02-01T09:18:45.000Z","dependencies_parsed_at":"2022-08-13T10:30:46.276Z","dependency_job_id":null,"html_url":"https://github.com/thehackersbrain/hiddenwave","commit_stats":null,"previous_names":[],"tags_count":null,"template":null,"template_full_name":null,"purl":"pkg:github/thehackersbrain/hiddenwave","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thehackersbrain%2Fhiddenwave","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thehackersbrain%2Fhiddenwave/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thehackersbrain%2Fhiddenwave/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thehackersbrain%2Fhiddenwave/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/thehackersbrain","download_url":"https://codeload.github.com/thehackersbrain/hiddenwave/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thehackersbrain%2Fhiddenwave/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28103407,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-12-28T02:00:05.685Z","response_time":62,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["audio","audio-files","audio-steganography","hacking","hacking-tool","hiddenwave","mrrobot","steganography","steganography-algorithms","thehackersbrain"],"created_at":"2025-12-28T20:03:53.420Z","updated_at":"2025-12-28T20:04:54.925Z","avatar_url":"https://github.com/thehackersbrain.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# HiddenWave\n\u003e Hide your personal Data inside The Audio wav file\u003cbr/\u003e\n\u003e Written in C++ by Gaurav Raj \\[TheHackersBrain\\]\n\n![bannerImage](https://thehackersbrain.github.io/assets/hiddenwave/banner.png)\n\nHiddenwave is an audio steganography tool written in **C++** for hiding your files or messages inside a `.wav` or `.mp3` audio file. You might be wondering, In **C++** :confused: ?? You could have done it easily in **Python** :expressionless:. Yeah! I could but we are hackers Gentleman, We love challenges :sunglasses:.\nThis tool is inspired by [HiddenWave](https://github.com/techchipnet/HiddenWave) created by [Techchip](https://github.com/techchipnet).\n\n**NOTE:** This tool only supports the `.mp3` and `.wav` audio files and can hide any other files inside the audio file.\n\n## Version\n**Hiddenwave 1.2.1**\n\n## Requirement\n- [libboost-all-dev](https://packages.debian.org/search?keywords=libboost-all-dev)\n    ```\n    sudo apt install libboost-all-dev -y\n    ```\n- [cmake](https://cmake.org/)\n    ```\n    sudo apt install cmake -y\n    ```\n\n## Todo\n- [x] Adding Support to hide files inside audio files\n- [x] Adding Support to `.mp3` files\n- [x] Improving UI by adding some colors\n\n## Installation and Uses\n\n### Automated Installation (Recommanded)\nChange the directory to where you want to install this tool and run the follwing command\n```\ncurl https://raw.githubusercontent.com/thehackersbrain/hiddenwave/main/install.sh -s | bash\n```\n\n### Manual Installation\n\n- Make Sure all requirements are installed\n```\nsudo apt install libboost-all-dev cmake -y\n```\n- Git clone this repo and change the directory\n```\ngit clone https://github.com/thehackersbrain/hiddenwave.git \u0026\u0026 cd hiddenwave\n```\n- Now Build the package\n```\nmkdir build \u0026\u0026 cd build \u0026\u0026 cmake ..\n```\n- Now make the final binary\n```\nmake\n```\n- Copy the binary in `/usr/bin/` for easy access \\(optional\\)\n```\nsudo cp hiddenwave /usr/bin/\n```\n\n## How to Use\n\n### Hiding Data\n- For hiding files inside `.wav` audio file.\n    ```\n    ./hiddenwave -i input.wav -f filetobehidden.txt -o output.wav\n    ```\n- For hiding message inside `.wav` audio file.\n    ```\n    ./hiddenwave -i input.wav -m 'Dummy Message' -o output.wav\n    ```\n\n### Extracting Data\n\n```\n./hiddenwave -i output.wav\n```\n- If the hidden data is some message, it will be printed on the terminal.\n- If the hidden data is a file, it will be extracted on the current directory.\n\n## Credits\n**Inspired by:** [HiddenWave](https://github.com/techchipnet/HiddenWave) by [Techchip](https://github.com/techchipnet)\n\n## Author\n\n**Creator:** [Gaurav Raj](https://github.com/thehackersbrain/)\u003cbr/\u003e\n**Portfolio:** [Here](https://thehackersbrain.github.io/)\u003cbr/\u003e\n**Blog:** [TheHackersBrain Blog](https://thehackersbrain.pythonanywhere.com)\u003cbr/\u003e\n**Projects:** [Here](https://github.com/thehackersbrain?tab=repositories)\u003cbr/\u003e\n**Twitter:** [@thehackersbrain](https://twitter.com/thehackersbrain)\u003cbr/\u003e\n**TryHackMe:** [hackersbrain](https://tryhackme.com/p/hackersbrain)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthehackersbrain%2Fhiddenwave","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fthehackersbrain%2Fhiddenwave","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthehackersbrain%2Fhiddenwave/lists"}