A simple function to decode base64 encoded content designed for VulnHub VM - FristiLeaks v1.3
#Wrote this simple function to solve the CTF designed for FristiLeaks v1.3 VulnHub VM | |
#!/usr/bin/python | |
import base64,codecs,sys | |
def decodeString(str): | |
decode = codecs.decode(str[::-1], 'rot13') | |
return base64.b64decode(decode) | |
cryptoResult=decodeString(sys.argv[1]) | |
print cryptoResult |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment