Update index.js
Browse files
index.js
CHANGED
@@ -13,6 +13,7 @@ app.use((req, res, next) => {
|
|
13 |
const cfConnectingIP = req.headers['cf-connecting-ip'];
|
14 |
|
15 |
let realIP = req.ip;
|
|
|
16 |
|
17 |
if (xForwardedFor) {
|
18 |
realIP = xForwardedFor.split(',')[0].trim();
|
@@ -25,6 +26,10 @@ app.use((req, res, next) => {
|
|
25 |
}
|
26 |
|
27 |
req.realIP = realIP;
|
|
|
|
|
|
|
|
|
28 |
console.log(`Real IP address is: ${realIP}, header: ${xForwardedFor ? "x-forwarded-for" : xRealIP ? "x-real-ip" : cfConnectingIP ? "cf-connecting-ip" : "req.ip"} `);
|
29 |
next();
|
30 |
});
|
|
|
13 |
const cfConnectingIP = req.headers['cf-connecting-ip'];
|
14 |
|
15 |
let realIP = req.ip;
|
16 |
+
const BlockedIp = [103.187.116.9]
|
17 |
|
18 |
if (xForwardedFor) {
|
19 |
realIP = xForwardedFor.split(',')[0].trim();
|
|
|
26 |
}
|
27 |
|
28 |
req.realIP = realIP;
|
29 |
+
if (BlockedIp.includes(realIP)) {
|
30 |
+
console.log(`Blocked request from IP address: ${realIP}`);
|
31 |
+
res.status(403).send("access is blocked");
|
32 |
+
}
|
33 |
console.log(`Real IP address is: ${realIP}, header: ${xForwardedFor ? "x-forwarded-for" : xRealIP ? "x-real-ip" : cfConnectingIP ? "cf-connecting-ip" : "req.ip"} `);
|
34 |
next();
|
35 |
});
|