1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74const express = require('express');
const config = require('../config')
const router = express.Router()
const MongoClient = require('mongodb').MongoClient;
const url = config.MONGODB_URI;
router.post('/customers/register', async (req, res) => {
const client = await MongoClient.connect(url, { useNewUrlParser: true })
.catch(err => { console.log(err); });
if (!client) {
return res.json({ status: "Error" });
}
const db = client.db(config.MONGODB_DB_NAME);
const customers = db.collection("customers")
let myobj = { name: req.body.name, address: req.body.address };
customers.insertOne(myobj, function (err) {
if (err) throw err;
console.log("user registered");
res.json({ status:"success", "message": "user inserted" })
db.close();
});
})
// Vulnerable search function
router.post('/customers/find', async (req, res) => {
const client = await MongoClient.connect(url, { useNewUrlParser: true })
.catch(err => { console.log(err); });
if (!client) {
return res.json({ status: "Error" });
}
const db = client.db(config.MONGODB_DB_NAME);
const customers = db.collection("customers")
let myobj = { name: req.body.name };
customers.findOne(myobj, function (err, result) {
if (err) throw err;
db.close();
res.json(result)
});
})
// Vulnerable Authentication
// Authentication Bypass Example
// curl -X POST http://localhost:3000/customers/login/ --data "{\"email\": {\"\$gt\":\"\"} , \"password\": {\"\$gt\":\"\"}}" -H "Content-Type: application/json"
router.post('/customers/login', async (req, res) => {
const client = await MongoClient.connect(url, { useNewUrlParser: true })
.catch(err => { console.log(err); });
if (!client) {
return res.json({ status: "Error" });
}
const db = client.db(config.MONGODB_DB_NAME);
const customers = db.collection("customers")
let myobj = { email: req.body.email, password: req.body.password };
customers.findOne(myobj, function (err, result) {
if (err) throw err;
db.close();
res.json(result)
});
})
module.exports = router