Hier ist ein base64 de- und encoder für euch, geschrieben in python (die vorteile muss ich wohl nicht erklären).
#!/usr/bin/env python # this script is for encoding anything in base64 for python use # ################ import os import sys import base64 import zlib import platform plat = platform.system().lower() ################ ############## ########### def clearscreen(): if plat =="linux" or "mac": os.system('clear') elif plat =="windows": os.system('cls') else: print "your missing a platform...? how is this possible" sys.exit(0) def main(): clearscreen() print ''' ########################### ########################### ####### ##### ######### ###### ## #### ######### ###### ######## # ######### ###### # ### ## ######### ###### ## ## ## ######### ###### #### # ### ######### ###### #### # ######## ###### ## ##### ######### ####### ###### ######### ###########################\nBase64 encoder/decoder for internal python scripts\n\n\n[*] Type /d for decoder\n[*] Type /q to quit\n\n\n''' string = raw_input('\n\n\n[ > ] Paste stuff to be encoded here: \n\n') if string == "/d": clearscreen() print '\n\n\n\n[!]Decoder' dstring = raw_input('\n\n[ > ] Paste encoded stuff here: \n\n') denc = base64.b64decode(dstring) print '\nResult:\n\n',denc,'\n' raw_input('\n\n\nPress enter to continue') clearscreen() main() elif string == "/q": sys.exit(0) else: enc = base64.b64encode(string) print '\nResult:\n\n',enc,'\n' raw_input('\n\n\nPress enter to continue') clearscreen() main() if __name__ == "__main__": main()