#!/usr/bin/env python # Geordie Millar # A simple base64 username/password decoder for HTTP. import base64,sys upw = raw_input("base64>") upw_d = base64.b64decode(upw) upw_up = upw_d.split(":") print "Username: %s\nPassword: %s" % (upw_up[0], upw_up[1]) # ignore the below, i was bored # # # // // // // // // // # # # # # # Attempt to replace code here. # # NFI why I'm writing this. # # # # ++ ++ ++ ++ ++ # # #