
Hey Hacklido fam! sagnik17 back with another sneaky forensics challenge, this one hides in plain sight in the most unexpected way π
What we got ?
A plain old message.txt. Boring right? Running cat on it just showed some text andβ¦ a suspicious amount of whitespace. Somethingβs off π
cat message.txt

The hint drops here π‘

The challenge hinted at Ctrl+A, so I opened it in VS Code and selected everything. Suddenly all these tabs and spaces lit up at line no 7 that werenβt visible before ποΈ
then confirmed it in the terminal too
cat -A message.txt

Those ^I symbols? Thatβs how Linux represents Tab characters. Sneaky sneaky π
The hint spelled it out
So the invisible whitespace was actually binary data the whole time! Classic whitespace steganography π€―
Scripting it out π
Wrote a quick python script to extract and convert:
with open("message.txt", "r", encoding="utf-8") as f:
data = f.read()
hidden = ''.join(c for c in data if c in (' ', '\t'))
binary = ''.join('0' if c == ' ' else '1' for c in hidden)
print("Hidden binary:", binary)
Grabbed the binary output β threw it into CyberChef β flag unlocked π©π₯

see you in the next writeup!
