Update index.js
Browse files
index.js
CHANGED
@@ -113,7 +113,8 @@ app.use(async (req, res, next) => {
|
|
113 |
res.status(403).send("access is blocked");
|
114 |
}
|
115 |
*/
|
116 |
-
await CheckIsBlocked(realIP)
|
|
|
117 |
await IPAddressAndUpdate(realIP);
|
118 |
console.log(`Real IP address is: ${realIP}, header: ${xForwardedFor ? "x-forwarded-for" : xRealIP ? "x-real-ip" : cfConnectingIP ? "cf-connecting-ip" : "req.ip"} `);
|
119 |
await next();
|
|
|
113 |
res.status(403).send("access is blocked");
|
114 |
}
|
115 |
*/
|
116 |
+
let results = await CheckIsBlocked(realIP)
|
117 |
+
console.log("Check blocked", results)
|
118 |
await IPAddressAndUpdate(realIP);
|
119 |
console.log(`Real IP address is: ${realIP}, header: ${xForwardedFor ? "x-forwarded-for" : xRealIP ? "x-real-ip" : cfConnectingIP ? "cf-connecting-ip" : "req.ip"} `);
|
120 |
await next();
|