Noob needs help cracking cheat code password - Printable Version +- hashcat Forum (https://hashcat.net/forum) +-- Forum: Support (https://hashcat.net/forum/forum-3.html) +--- Forum: hashcat (https://hashcat.net/forum/forum-45.html) +--- Thread: Noob needs help cracking cheat code password (/thread-11942.html) Pages:
1
2
|
Noob needs help cracking cheat code password - genen - 04-29-2024 I have not used hashcat in a VERY long time, but I need it again. A game came out recently and it has a password system to input cheat codes. The community hasn't yet found all codes, but we have found them encrypted. What we got:
What I need:
Is this possible? if so, how? inb4 "using password cracking software to cheat at a game" in my defense, most of these passwords are stuff like unlocking characters and levels, or using big head mode (not kidding) just for an example, the above hash is "squish it skew it" final note, the "big head mode" hash is Code: V+YkwthNUePKS7zs5uB90VwN6Jeqgl+1r663U5zSGOEIxAO6BoWipzZoxa5H//LM+5Ag9GIGRnEcLbU21hjGfQ== RE: Noob needs help cracking cheat code password - genen - 04-29-2024 also also not naming the game itself, lest the devs take note. if need be however, I will post code RE: Noob needs help cracking cheat code password - DanielG - 04-30-2024 The algorithm is Argon2 with the params, "iterations 2, memory 8192, parallelism 1, hash length 64 bytes, type Argon2id". See for example your text "squish it skew it" encoded here: https://gchq.github.io/CyberChef/#recipe=Argon2(%7B'option':'UTF8','string':'0L4rlK%7D%7B9ay6%5C'VJS'%7D,2,8192,1,64,'Argon2id','Raw%20hash')To_Base64('A-Za-z0-9%2B/%3D')&input=c3F1aXNoIGl0IHNrZXcgaXQ&oeol=VT Hashcat does not support Argon2 as far as I know, however online I see some "argon 2 crackers" such asĀ https://github.com/CyberKnight00/Argon2_Cracker The format you need to provide is "$argon2id$v=19$m=8192,t=2,p=1$MEw0cmxLfXs5YXk2J1ZKUw$i5u5sIsMs5eITy+LzAXvKm6D9OzOVKhUqSy1mTTV/oUxJX6RPsk8OcyLbNaey9Vc6wXOhz+2+mTXILkIRzvXqA" Green = relevant options Blue = base64 encoded salt (so "0L4rlK}{9ay6'VJS" turns into "MEw0cmxLfXs5YXk2J1ZKUw") Red = hash you want to crack, ('i5u5sIsMs5eITy+LzAXvKm6D9OzOVKhUqSy1mTTV/oUxJX6RPsk8OcyLbNaey9Vc6wXOhz+2+mTXILkIRzvXqA==' for 'squish it skew it') RE: Noob needs help cracking cheat code password - DanielG - 04-30-2024 remember to remove the last '==' when using the Argon2_Cracker, if you leave them at the end it will not find the word RE: Noob needs help cracking cheat code password - genen - 04-30-2024 (04-30-2024, 09:09 AM)DanielG Wrote: The algorithm is Argon2 with the params, "iterations 2, memory 8192, parallelism 1, hash length 64 bytes, type Argon2id". thanks for the tip, will test when possible RE: Noob needs help cracking cheat code password - genen - 04-30-2024 Code: python crack_argon2.py -c '$argon2id$v=19$m=8192,t=2,p=1$MEw0cmxLfXs5YXk2J1ZKUw$i5u5sIsMs5eITy+LzAXvKm6D9OzOVKhUqSy1mTTV/oUxJX6RPsk8OcyLbNaey9Vc6wXOhz+2+mTXILkIRzvXq' -w './fasttrack.txt' i had to find a seperate dictionary file for fastrack.txt. it has all the words for the password but it won't output "squish it skew it" RE: Noob needs help cracking cheat code password - DanielG - 04-30-2024 You are missing the last letter in your hash, so yours ends in zvXq in stead of zvXqA. Also is "squish it skew it" in the file fasttrack.txt? It can only successfully find passwords that are in your list. Code: > cat wordz.txt RE: Noob needs help cracking cheat code password - DanielG - 04-30-2024 other words found for your open source game are: Code: WAJJ66pw2rSopXOuw4c4iKzIz3goKtivrv7b/THqYP8ev+E/sRn2LMXHqv8s+uzwMcVNoDxNn+AgG26xi+wgzg -> banana Other forums on the internet have found these apparently. RE: Noob needs help cracking cheat code password - genen - 04-30-2024 (04-30-2024, 11:38 AM)DanielG Wrote: You are missing the last letter in your hash, so yours ends in zvXq in stead of zvXqA. Also is "squish it skew it" in the file fasttrack.txt? It can only successfully find passwords that are in your list. The program didn't come with fasttrack.txt and since I'm using windows, I thought I had to find some other dictionary list. I found one that did have all those words separately. I also found another Argon2 cracker.https://github.com/p0dalirius/Argon2Cracker As for some codes already being known, the devs leaked some on purpose, to help people who didn't want the grind. RE: Noob needs help cracking cheat code password - genen - 04-30-2024 (04-30-2024, 11:41 AM)DanielG Wrote: Screw anonymity. Where'd you find "banana"? |