Skip to content

Latest commit

 

History

History
43 lines (26 loc) · 954 Bytes

challenge.md

File metadata and controls

43 lines (26 loc) · 954 Bytes

Brute For Loot

  • Published: 02/09/2024 (#6/11 in round)
  • Category: Misc
  • Points: 90
  • Author: Kshau

Try cracking the password! (command to crack the zip "login.exe <password>")

Attachments

Hint

This hint costed 10 points.

Reveal hint

Make a python script that tries a password from rockyou

Write-up

Reveal write-up

Since we know that it's a password, it can be a common one where a dictionary attack can be used to crack it. Based off the previous challenge, rockyou.txt was used as the wordlist. We can write a script to iterate through the wordlist and determine the password.

After writing the script, we now know the password, which is nicole1.

Flag: csd{GmoWiViKVkfZnLvO3moQnAB96lp}

Write-up by GodderE2D