Page cover
githubEdit

paletteSteganography

chevron-rightBasic File Inspection and Metadata Analysishashtag
Extracts printable strings of at least 10 characters, useful for spotting hidden text or clues
strings -n 10 <filename>
Useful for viewing the end of files where hidden data might be appended:
tail
Extracts metadata from files
exiftool <filename>
chevron-rightExtraction Toolshashtag
chevron-rightLSB (Least Significant Bit)hashtag
circle-info

The least significant bit is the very last bit from binary sequence, which has the smallest impact on the overall value. Changing this bit usually causes a very tiny change in the data that’s often imperceptible to the human eye or ear.

  • For example, in an 8-bit color value for a pixel, the least significant bit is the 8th bit

chevron-rightAudio Steganography Analysishashtag

Last updated