Steganography
Steganography - Find a hidden message in a text
I’m trying to solve a challenge in cryptography. Its goal is to inspect the text and find the hidden message.
Text: BacK bacon IS a CUt oF BAcON that iNcluDeS thE pOrK LoiN fROM the BacK of The piG. it MaY also InCludE a poRtiON of the porK bElLy In the SamE CUt. it Is mUch LEaNeR ThaN side bacoN made onLy fROM the PorK BElly. baCk bAcoN is Derived from thE sAme cUT usED fOR poRK cHops.
I think that it may be solved through steganography. I found this article really interesting: https://www.researchgate.netpublica..., the proposed solution is to change the upper case with 1 and the lower case with 0 (space and punctuations aren’t considered). From the binary obtained, you should be able to easily convert it to ASCII and then get the hidden message.
Unluckily, it didn’t work for me. Any suggestions?
Steganography - Find a hidden message in a text
L.ook at the text you are working on.
its starts with an uppercase so according to you the first byte will have its strongest bit set to 1.
In what range this byte will be ? does that fit the ASCII characters range ?
Steganography - Find a hidden message in a text
Thank you for your answer!
Accordingly to what I found, it should be translated as follows:
B -> 1
a -> 0
c -> 0
K -> 1
b -> 0
a -> 0
c -> 0
o -> 0
the first byte should be 10010000, which ASCII translation is É.
Steganography - Find a hidden message in a text
Which tool is recommended?