Skip to content

Latest commit

 

History

History
38 lines (25 loc) · 843 Bytes

steganography-cheat-sheet.md

File metadata and controls

38 lines (25 loc) · 843 Bytes

Steganography cheat sheet

NTFS Streams

Hide file inside another file

type c:\calc.exe > c:\readme.txt:calc.exe
mklink executable_link.exe c:\readme.txt:calc.exe
executable_link.exe

White Space Steganography using snow

Hide message in text file

snow -C -m "Secret message" -p "magic" readme.txt readme2.txt

Retrieve message from text file

snow -C -p "magic" readme2.txt

<- Back to index


License

© 2023 javierizquierdovera.com

Licensed under the Apache License, Version 2.0 (LICENSE-APACHE) or the MIT license (LICENSE-MIT), at your option.

SPDX-License-Identifier: (Apache-2.0 OR MIT)