Bandit 11
Objectives
Level GoalThe password for the next level is stored in the file data.txt, which contains base64 encoded data
Solution
This one can be completed by using the base64 function in linux with the -d switch to decode
now python
import base64
Objectives
Level GoalThe password for the next level is stored in the file data.txt, which contains base64 encoded data
Solution
This one can be completed by using the base64 function in linux with the -d switch to decode
bandit10@bandit:~$ base64 -d data.txtThe password is IFukwKGsFW8MOq3IRFqrxE1hxTNEbUPR
now python
Comments
Post a Comment