Last active
August 29, 2015 14:22
-
-
Save kumatti1/46702febbc73f6b386fb to your computer and use it in GitHub Desktop.
GetProcAddressHook
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Option Explicit | |
Private Declare PtrSafe Function LoadLibrary Lib "kernel32" Alias "LoadLibraryA" (ByVal lpLibFileName As String) As LongPtr | |
Private Declare Function IsBadWritePtr Lib "kernel32" _ | |
(ByVal lp As Long, ByVal ucb As Long) As Long | |
Private Declare Function VirtualProtect Lib "kernel32" _ | |
(ByVal lpAddress As Long, ByVal dwSize As Long, _ | |
ByVal flNewProtect As Long, lpflOldProtect As Long) As Long | |
Private Declare Function VirtualAlloc Lib "kernel32" _ | |
(ByVal lpAddress As Long, ByVal dwSize As Long, _ | |
ByVal flAllocationType As Long, _ | |
ByVal flProtect As Long) As Long | |
Private Declare Function VirtualFree Lib "kernel32" _ | |
(ByVal lpAddress As Long, ByVal dwSize As Long, _ | |
ByVal dwFreeType As Long) As Long | |
Const PAGE_EXECUTE_READWRITE = &H40 | |
Const MEM_COMMIT = &H1000 | |
Const MEM_RESERVE = &H2000 | |
Const MEM_RELEASE = &H8000& | |
Private Declare Function GetCurrentProcess Lib "kernel32" () As Long | |
Private Declare Function FlushInstructionCache Lib "kernel32" _ | |
(ByVal hProcess As Long, lpBaseAddress As Any, _ | |
ByVal dwSize As Long) As Long | |
Private Declare Sub CopyLong Lib "kernel32" Alias "RtlMoveMemory" _ | |
(Destination As Any, Source As Any, _ | |
Optional ByVal length As Long = 4) | |
Const S_OK = &H0& | |
Private Declare PtrSafe Function GetModuleHandle Lib "kernel32" Alias "GetModuleHandleA" (ByVal lpModuleName As String) As LongPtr | |
Private lngCodeLen As Long | |
Private pProc As Long | |
Private HookProc As Long | |
Private proc As LongPtr | |
Private Declare Sub OutputDebugString Lib "kernel32" Alias "OutputDebugStringA" (ByVal lpOutputString As Long) | |
Private Declare PtrSafe Function SysAllocString Lib "OleAut32" (ByVal psz As LongPtr) As LongPtr | |
Private Declare PtrSafe _ | |
Function DispCallFunc Lib "OleAut32.dll" ( _ | |
ByVal pvInstance As LongPtr, _ | |
ByVal oVft As LongPtr, _ | |
ByVal cc_ As Long, _ | |
ByVal vtReturn As Integer, _ | |
ByVal cActuals As Long, _ | |
ByRef prgvt As Integer, _ | |
ByRef prgpvarg As LongPtr, _ | |
ByRef pvargResult As Variant _ | |
) As Long | |
Const CC_STDCALL = 4 | |
Private tmp As Long | |
Declare PtrSafe Function GetProcAddress Lib "kernel32" (ByVal hModule As LongPtr, ByVal lpProcName As String) As LongPtr | |
Sub Main() | |
Dim i As Long | |
HookProc = VBA.Int(AddressOf GetProcAddressHook) | |
proc = GetModuleHandle("vbe7.dll") | |
If proc = 0 Then Exit Sub | |
proc = proc + &H20F36C | |
'退避 | |
CopyLong tmp, ByVal proc, 4 | |
Debug.Print Hex$(tmp) | |
'Hookスタート | |
ForceCopyLong proc, HookProc | |
Dim hDLL& | |
hDLL = GetModuleHandle("Kernel32") | |
Dim func& | |
func = GetProcAddress(hDLL, "GetProcAddress") | |
Debug.Print Hex$(func) | |
EndHook | |
End Sub | |
' フック終了 | |
Sub EndHook() | |
ForceCopyLong proc, tmp | |
End Sub | |
Private Function GetProcAddressHook(ByVal hModule As LongPtr, ByVal lpProcName As Long) As LongPtr | |
OutputDebugString lpProcName | |
Dim hr As Long | |
Dim ret As Variant | |
Dim pVar(0 To 1) As LongPtr | |
Dim v(0 To 1) As Variant | |
v(0) = hModule | |
v(1) = lpProcName | |
pVar(0) = VarPtr(v(0)) | |
pVar(1) = VarPtr(v(1)) | |
Dim vt(0 To 1) As Integer | |
vt(0) = vbLong | |
vt(1) = vbLong | |
hr = DispCallFunc(0, tmp, CC_STDCALL, vbLong, 2, vt(0), pVar(0), ret) | |
Debug.Print Hex$(hr), Hex$(ret) | |
End Function | |
Private Function ForceCopyLong(ByVal Address As Long, _ | |
ByVal Value As Long) As Boolean | |
Dim lngOld As Long | |
If IsBadWritePtr(Address, 4) Then | |
If VirtualProtect(Address, 4, _ | |
PAGE_EXECUTE_READWRITE, lngOld) = 0 Then | |
Exit Function | |
End If | |
CopyLong ByVal Address, Value, 4 | |
VirtualProtect Address, 4, lngOld, lngOld | |
Else | |
CopyLong ByVal Address, Value, 4 | |
End If | |
ForceCopyLong = True | |
End Function |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment