PiggyPack
From Just Solve the File Format Problem
(Difference between revisions)
Parchivist (Talk | contribs) (Created page with "{{FormatInfo |formattype=electronic |subcat=Encryption |released=2012 }} '''PiggyPack''' by kristopolous is a very basic open source Ruby script for hiding data in 24-bit imag...") |
Parchivist (Talk | contribs) |
||
(One intermediate revision by one user not shown) | |||
Line 2: | Line 2: | ||
|formattype=electronic | |formattype=electronic | ||
|subcat=Encryption | |subcat=Encryption | ||
+ | |subcat2=Steganography | ||
|released=2012 | |released=2012 | ||
}} | }} | ||
Line 21: | Line 22: | ||
* [http://9ol.es/PiggyPack.html Website] | * [http://9ol.es/PiggyPack.html Website] | ||
* [https://github.com/kristopolous/PiggyPack GitHub] | * [https://github.com/kristopolous/PiggyPack GitHub] | ||
− | * [https://old.reddit.com/r/ | + | * [https://old.reddit.com/r/programming/comments/q75bz/hiding_things_out_in_the_open/ Reddit post] |
Latest revision as of 00:03, 2 September 2023
PiggyPack by kristopolous is a very basic open source Ruby script for hiding data in 24-bit images.
[edit] Technical details
It uses the 8 LSB from each 24-bit RGB triplet (3 LSB from red + 2 LSB green + 3 LSB from blue)
The header is
- 1 byte number specifying the length of the file name
- The filename itself
- 8 byte lsb number specifying the length of the playload
- The payload itself