Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hjr265/sneak
Tool to hide files within other file formats
https://github.com/hjr265/sneak
go golang steganography
Last synced: 23 days ago
JSON representation
Tool to hide files within other file formats
- Host: GitHub
- URL: https://github.com/hjr265/sneak
- Owner: hjr265
- Created: 2023-09-16T14:15:04.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2023-09-16T14:15:23.000Z (about 1 year ago)
- Last Synced: 2024-04-10T18:18:54.341Z (7 months ago)
- Topics: go, golang, steganography
- Language: Go
- Homepage: https://hjr265.me/blog/hiding-files-in-zip-archives/
- Size: 4.88 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Sneak
Sneak is a program that can hide a file in other files.
Container formats supported:
- ZIP
_Yes, just one for now._
## Usage
Install Sneak by running the following command:
``` sh
go install github.com/hjr265/sneak@latest
```### Example
``` sh
# Make a ZIP file
echo 'Hello World' > nothamlet.txt
zip archive.zip nothamlet.txt# Make a secret file
echo 'KeyboardCat' > secret.txt# Add secret.txt to archive.zip
sneak archive.zip secret.txt# Remove the secret file
rm secret.txt
cat secret.txt # Won't work. We have just removed it.# Extract hidden file from archive.zip
sneak -x archive.sneak.zip
cat secret.txt # Will print 'KeyboardCat'.
```