在上篇,我们说过隐藏windows服务技巧,今天抽空来更新下,如何查找这类隐藏的Windows服务项。 首先看下效果,使用powershell远程下载执行直接获得隐藏的Windows服务名称:
通过远程下载执行无文件落地查看隐藏Windows服务:
powershell -c "IEX (New-Object Net.WebClient).DownloadString('https://gist.githubusercontent.com/Mr-xn/9ee8f18a57cc1e74fdabd98b6c5dd016/raw/ccf2c78c9d7071c8589af2ae57c3caa7433c18c9/find_hide_svc.ps1')"
如果觉得链接太长影响你发挥,可以使用缩短网址:
powershell -c "IEX (New-Object Net.WebClient).DownloadString('https://u.nu/1o-e3')"
下面看下源码: