Tags: forensics stego
Rating:
# important_notes - Forensics (456 pts)
## Description
> idk im blanking on any lore for this challenge
### Provided files
important_notes.zip - a ZIP archive containing 7 plain-text files \[[download](https://ctfnote.shinmai.wtf:31337/files/downloadFile?id=5wewbMbk9HDkKSy)\]
## Ideas and observations
1. All other files seem like just random (based on the language, likely AI generated) text, but `idea2.txt` and `essay2.txt` have a bunch of extraneous whitespace at the end of the file.
2. The `idea` files contain ideas for CTF challenges, `idea2.txt` is about a stego challenge
## Notes
1. The whitespace at the end of `essay2.txt` is just a bunch of linefeeds
2. `idea2.txt` however has lines containig a mix of tabs and spaces
## Solution
1. Take the block of whitespace at the end of `idea2.txt`
2. Replace `\t` with 1 and ` ` with 0
3. remove lines with a lone `1` on them
4. discard 4 leading zeroes so you have 8 bits per line
5. decode each line as an 8-bit byte for the flag
`wctf{h4rD_dr1v3_bR0Wn135_mmMmmMm}`