It looks like you're new here. If you want to get involved, click one of these buttons!
from binascii import *
'''
Simply encodes user input using binascii
'''
text = raw_input(\"Text to encode: \")
data = b2a_uu(text)
text = a2b_uu(data)
print text, \"==>\", repr(data)
Text to encode: iexploit
iexploit ==> '(:65X<&QO:70 \n'