You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We have a secret file that is password protected. However, we have obtained a wordlist of actors that is part of the password. The password is the combination of one of the names on the list with a year.
Format: "Actor_NameYYYY"
Example: "Henry_Cavill1964"
Fix the script to brute force the password.
Hint
No hints.
Solution
To fix the script:
Fix Line 23: numbers_set = '0123456789'
Add line 20: file1 = open('actorList.txt', 'r')
Add line 21: Lines = file1.readlines()
Add line 27: for actor_name in Lines:
Change line 30 to: password = actor_name.strip()+''.join(c)
After opening the folder there is a txt file that is encoded with ROT13. Use a ROT13 decoder to decode the message to get the code to unlock the next zip file.
After opening the 2nd zip file, the flag is in an mp3 file. But it is not an mp3 file - it is actually a gif file. The file extension has to be renamed to gif to open the file.