Steganography
Basic File Inspection and Metadata Analysis
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:
tailExtracts metadata from files
exiftool <filename>LSB (Least Significant Bit)
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-bitcolor value for a pixel, the least significant bit is the8thbit
Last updated