mirror of
https://github.com/SillyTavern/SillyTavern.git
synced 2025-06-05 21:59:27 +02:00
ip whitelist fix
This commit is contained in:
@@ -99,14 +99,14 @@ app.use(CORS);
|
|||||||
|
|
||||||
app.use(function (req, res, next) { //Security
|
app.use(function (req, res, next) { //Security
|
||||||
let clientIp = req.connection.remoteAddress;
|
let clientIp = req.connection.remoteAddress;
|
||||||
const ip = ipaddr.parse(clientIp);
|
let ip = ipaddr.parse(clientIp);
|
||||||
|
|
||||||
// Check if the IP address is IPv4-mapped IPv6 address
|
// Check if the IP address is IPv4-mapped IPv6 address
|
||||||
if (ip.kind() === 'ipv6' && ip.isIPv4MappedAddress()) {
|
if (ip.kind() === 'ipv6' && ip.isIPv4MappedAddress()) {
|
||||||
const ipv4 = ip.toIPv4Address().toString();
|
const ipv4 = ip.toIPv4Address().toString();
|
||||||
clientIp = ipv4;
|
clientIp = ipv4;
|
||||||
} else {
|
} else {
|
||||||
clientIp = ip;
|
clientIp = ip;
|
||||||
|
clientIp = clientIp.octets.join('.');
|
||||||
}
|
}
|
||||||
//clientIp = req.connection.remoteAddress.split(':').pop();
|
//clientIp = req.connection.remoteAddress.split(':').pop();
|
||||||
if (whitelistMode === true && !whitelist.includes(clientIp)) {
|
if (whitelistMode === true && !whitelist.includes(clientIp)) {
|
||||||
|
Reference in New Issue
Block a user