Fix
Browse files
index.js
CHANGED
@@ -79,7 +79,6 @@ const CheckIsBlocked = async (ip) => {
|
|
79 |
}
|
80 |
};
|
81 |
|
82 |
-
|
83 |
app.get('/', (req, res) => {
|
84 |
res.redirect('https://t.me/RendyProjects');
|
85 |
});
|
@@ -90,7 +89,6 @@ app.use(async (req, res, next) => {
|
|
90 |
const cfConnectingIP = req.headers['cf-connecting-ip'];
|
91 |
|
92 |
let realIP = req.ip;
|
93 |
-
// const BlockedIp = ["103.187.116.9"];
|
94 |
|
95 |
if (xForwardedFor) {
|
96 |
realIP = xForwardedFor.split(',')[0].trim();
|
@@ -105,21 +103,15 @@ app.use(async (req, res, next) => {
|
|
105 |
req.realIP = realIP;
|
106 |
if (req.path === '/env') {
|
107 |
console.log("check path /env");
|
108 |
-
await AddIpisBlocked(realIP)
|
109 |
}
|
110 |
-
/*
|
111 |
-
if (BlockedIp.includes(realIP)) {
|
112 |
-
console.log(`Blocked request from IP address: ${realIP}`);
|
113 |
-
res.status(403).send("access is blocked");
|
114 |
-
}
|
115 |
-
*/
|
116 |
const isBlocked = await CheckIsBlocked(realIP)
|
117 |
-
if (isBlocked.blocked) {
|
118 |
-
res.status(403).send("
|
119 |
}
|
120 |
await IPAddressAndUpdate(realIP);
|
121 |
console.log(`Real IP address is: ${realIP}, header: ${xForwardedFor ? "x-forwarded-for" : xRealIP ? "x-real-ip" : cfConnectingIP ? "cf-connecting-ip" : "req.ip"} `);
|
122 |
-
|
123 |
});
|
124 |
|
125 |
app.get('/api/test', async (req, res) => {
|
|
|
79 |
}
|
80 |
};
|
81 |
|
|
|
82 |
app.get('/', (req, res) => {
|
83 |
res.redirect('https://t.me/RendyProjects');
|
84 |
});
|
|
|
89 |
const cfConnectingIP = req.headers['cf-connecting-ip'];
|
90 |
|
91 |
let realIP = req.ip;
|
|
|
92 |
|
93 |
if (xForwardedFor) {
|
94 |
realIP = xForwardedFor.split(',')[0].trim();
|
|
|
103 |
req.realIP = realIP;
|
104 |
if (req.path === '/env') {
|
105 |
console.log("check path /env");
|
106 |
+
return await AddIpisBlocked(realIP)
|
107 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
108 |
const isBlocked = await CheckIsBlocked(realIP)
|
109 |
+
if (isBlocked && isBlocked.blocked === true) {
|
110 |
+
return res.status(403).send("Access denied: IP is blocked");
|
111 |
}
|
112 |
await IPAddressAndUpdate(realIP);
|
113 |
console.log(`Real IP address is: ${realIP}, header: ${xForwardedFor ? "x-forwarded-for" : xRealIP ? "x-real-ip" : cfConnectingIP ? "cf-connecting-ip" : "req.ip"} `);
|
114 |
+
next();
|
115 |
});
|
116 |
|
117 |
app.get('/api/test', async (req, res) => {
|