PW Crack 2

Download the password checker and the encrypted flag file:

curl https://artifacts.picoctf.net/c/13/level2.py -o level2.py
curl -s https://artifacts.picoctf.net/c/13/level2.flag.txt.enc -o level2.flag.txt.enc
  • -s: Download in silent mode.

  • -o: To output the file.

Read those files:

cat level2.flag.txt.enc
cat level2.py

Garbage strings with some non-printable characters.

The same as the previous challenge, but the only difference this time, is that they tried to obfuscate the user password.

We simply can recover it with python3:

python3
	chr(0x64) + chr(0x65) + chr(0x37) + chr(0x36)

This is the password:

python3 level2.py
	de76

Here is the flag.

Last updated