James Charles
James Charles2y ago

Trying to decode a cipher but need assistance.

In this cipher previously posted by DrJacoby, you're given 2 hints which are both an audio file and an image. The audio file (when viewed in a spectrogram) gives you "-s 7 -m 153". Because of the name of the file and how that looks, you can see they're command parameters for this crypter.py file. This means your final command will look something like this "python3 .\crypter.py -i .\decrypt_msg.txt -o output.txt -c X -s 7 -m 153". That X is where this last image comes in. I believe both these hints are command parameters where the audio file tells you the shift and mode to use, whereas, the image file tells you what cipher to use. please look at the image and let me know what you get from it. So far I have established 2, 3, 5 and 6 are all wonky and have rings on them, giving you the new number sequence 2, 3, 4, 1. All help is appreciated!
13 Replies
w33t
w33t2y ago
Damn, I have no idea lmfao. I'll try to give it some thoughts but I'm not good at puzzles like this. They're not practical. What does the -c switch even do? Also is it just me or do the numbers "rotate right", so to speak?
Die Antwoord
Die Antwoord2y ago
12days.jpg
James Charles
James Charles2y ago
Yeah you are right they do seem to be rotating right the -c picks the type of cipher you're doing You can see all the options in the code
functions = {
1: cipher.caesar_decoded,
2: cipher.caesar_encoded,
3: cipher.xor_execute,
4: cipher.base64_decoded,
5: cipher.base64_encoded,
6: cipher.reverse
}
functions = {
1: cipher.caesar_decoded,
2: cipher.caesar_encoded,
3: cipher.xor_execute,
4: cipher.base64_decoded,
5: cipher.base64_encoded,
6: cipher.reverse
}
What's strange is that the numbers in that image that are altered don't go above 6 and then the command also only allows up to the number 6 This is why I believe the image is telling you what cipher to use
w33t
w33t2y ago
Part of me wants to say 4 because 4 is the only "right" one so it'd be right haaaaaahahahaaa idfk, I'm bad at this.
James Charles
James Charles2y ago
Lmao, it's such a strange cipher
w33t
w33t2y ago
Why don't you just try each one and see what happens lol.
James Charles
James Charles2y ago
I have indeed done that My theory is that our tutor has used multiple
w33t
w33t2y ago
ohhhhh
James Charles
James Charles2y ago
If you look at the original code being
wojCiMKsGcOqw6zDr8K+GcOxw7LDqcOgw5TCvhnDscOywr7DrMOvwr7Dq8OlwqzDs8OxwqzDrMO1w6fDr8Ojw7XDqsOxw7bDnsOjw6DDtcOrw7PDscO2wr7DosOxwr7DtcOkw7XDqcOzw7XDoMK+w4nCvsOjw6rDqcOxw63DtcK+wqPCvsOiw6PDoMOpw7TCvsO1w7bDosK+w6DDr8O0wr7Do8Oiw6zDqcOvw67CvsKgwr7Do8Olw6zDr8Owwr7DscK+w6DDr8OUwr7CrMOyw6XDr8Ogw67CvsOqw7XDtcO0wr7Dr8Ojwr7Do8O1w6XDqsOzwr4Zw63CvsO1w7LDr8Ozw7XDssK+w6zDscOzwr7DtcOqw67Dr8O1w67CvhnDrMOxw63CvsOiw6/DjMKIwojCiMKIwojCiMKIwojCiMKIwojCiMKIwojCiMKIwojDo8Ogw7XDtsOuw6nDs8O1w7bDosOmw6nDrcO/wqDCoMKuwqDDs8O2w7/CpMOewqHDtA==
wojCiMKsGcOqw6zDr8K+GcOxw7LDqcOgw5TCvhnDscOywr7DrMOvwr7Dq8OlwqzDs8OxwqzDrMO1w6fDr8Ojw7XDqsOxw7bDnsOjw6DDtcOrw7PDscO2wr7DosOxwr7DtcOkw7XDqcOzw7XDoMK+w4nCvsOjw6rDqcOxw63DtcK+wqPCvsOiw6PDoMOpw7TCvsO1w7bDosK+w6DDr8O0wr7Do8Oiw6zDqcOvw67CvsKgwr7Do8Olw6zDr8Owwr7DscK+w6DDr8OUwr7CrMOyw6XDr8Ogw67CvsOqw7XDtcO0wr7Dr8Ojwr7Do8O1w6XDqsOzwr4Zw63CvsO1w7LDr8Ozw7XDssK+w6zDscOzwr7DtcOqw67Dr8O1w67CvhnDrMOxw63CvsOiw6/DjMKIwojCiMKIwojCiMKIwojCiMKIwojCiMKIwojCiMKIwojDo8Ogw7XDtsOuw6nDs8O1w7bDosOmw6nDrcO/wqDCoMKuwqDDs8O2w7/CpMOewqHDtA==
It looks like a very strange cipher
w33t
w33t2y ago
That's why I'm not a big fan of these, they aren't too practical unless you're doing some really specific type of work.
James Charles
James Charles2y ago
Having lots of ws It just looks weird I'll update you on anything I find I tried to reverse engineer it by creating my own cipher This is my Cipher
w4PigJ3Dg+KAmsOD4oCcw4PCo8ODwrHDg8Ktw4PCosODwqPDg8Kpw4PCoMODwrbDg+KAnMODwr/DgsKgw4LCoMOCwq7DgsKgw4PCs8ODwrbDg8K/w4PCt8ODxb7DgsKhw4PigJ0=
w4PigJ3Dg+KAmsOD4oCcw4PCo8ODwrHDg8Ktw4PCosODwqPDg8Kpw4PCoMODwrbDg+KAnMODwr/DgsKgw4LCoMOCwq7DgsKgw4PCs8ODwrbDg8K/w4PCt8ODxb7DgsKhw4PigJ0=
Looks pretty similar I did that by following the numbers on the 12days.jpg so now I'll do that but with the original cipher backwards @weet i did it I'll give you the full process when Jacob figures it out
DrJacob
DrJacob2y ago
I did it whoop
Muta
Muta2y ago
At this point i better shit myself with AES documentation and crack TLS and then be known as a man who hacked internet litterally, than doing these, ig some of them proves some kind of concept? But most true ones uses math and algorithms so you better learn those