WMIC详解 – 作者:mengmeng1

关于wmic:

WMIC可以描述为一组管理Windows系统的方法和功能。我们可以把它当作API来与Windows系统进行相互交流,Wmic在渗透测试中的价值在于它不需要下载和安装,因为wmic是Windows系统自带的功能,而且整个运行都载计算机的内存中发生,不会留下任何痕迹。

Wimc信息收集

检索系统已安装的软件:

wmic product list brief | more

image
检索系统运行的服务:

wmic service list brief | more

image
搜索运行中的程序:

wmic process list brief | more

image
搜索启动程序:

wmic startup list brief | more

image
搜索共享驱动盘:

wmic netuse list brief | more

image
搜索用户账户:

wmic useraccount list brief | more

搜索计算机域控制器:

wmic ntdomain list brief

image
搜索登录用户:

wmic logon list brief | more

image
搜索已安装的安全更新:

wmic qfe list brief | more

image

WMIC 执行任务

wmic 不仅仅只是用于检索系统信息,在渗透测试中,使用适当的命令,它也可以执行各种有用的任务。

卸载和重新安装程序:

在渗透测试中,我们经常遇到反病毒程序阻止payload运行,这时候我们可以通过wmic命令来卸载反病毒程序。

wmic product where "name like '%forti'" get name

wmic product where name like "%FortiClient" call uninstall

通过wmic命令来停止运行反病毒服务:

wmic process where name="xxx.exe" call terminate

来源:freebuf.com 2021-03-08 16:54:41 by: mengmeng1

© 版权声明
THE END
喜欢就支持一下吧
点赞0
分享
评论 抢沙发

请登录后发表评论