TryHackMe: "Scripting" Room Walkthrough
Base64
This file has been base64 encoded 50 times - write a script to retrieve the flag. Here is the general process to do this:
- read input from the file
- use function to decode the file
- do process in a loop
Python code:# TryHackme - Scripting Room
# Decode a base64 encoded value 50 times
# Daniel Fai, Jul 2022
# www.sinclair-software.deimport base64
f = open("b64.txt", "r")
coded_string= f.read()
- Weiterlesen über TryHackMe: "Scripting" Room Walkthrough
- Anmelden, um Kommentare verfassen zu können