Dawg ctf
ctftime scoreboard
crypto
- here it is just mapping of alpabets to the numbers like a-1 b-2
crypto 2
- unzip the zip file
- we see a dumster file with names and hashes
- this is the dumpster file
- we write a python script to get the hashes ``` fp=open(“dumpsterfire”,”r”) i=0 while True: line=fp.readline() if not line: break d=line.split(“:”)[1] d=d.strip() name=”file”+str(i) i+=1 f=open(name,”w”) f.write(d)
- we use john to crack the hashes
![image](https://github.com/m0wn1ka/ctf/assets/127676379/b0f8f099-3451-474d-8cce-b07f8437640f)
` hashcat -m 0 -a 0 file11 rockyou.txt`
- we use 7z x to unzip
- ![image](https://github.com/m0wn1ka/ctf/assets/127676379/07ace1a0-2e3c-4f16-9ab6-f0e24e4950b6)
- out of all cracked hashes the second one worked
serendipity astonvilla poiuytrewq gusanito guadalajara gallardo hellfire wisinyyandel nuncateolvidare systemofadown friends4eva ```
DawgCTF{W3W1llR0ckY0u}