Skip to content

Instantly share code, notes, and snippets.

View captain-woof's full-sized avatar
🤔

Sohail Saha captain-woof

🤔
View GitHub Profile
@captain-woof
captain-woof / tryhackme-anonymous_playground-decode.py
Last active December 10, 2020 20:29
TryHackMe - Anonymous Playground - Password Decode Script
#!/usr/bin/python3
encoded = "ENCODED STRING HERE"
all_alpha = "" # String of all lowercase english alphabets
for i in range(ord('a'),ord('z')+1):
all_alpha += chr(i)
print("Encoded => " + encoded)
print("All alphabets => " + all_alpha)