mirror of
https://github.com/EvolutionAPI/evolution-api.git
synced 2025-08-28 18:26:12 -06:00
Improving localhost check
This commit is contained in:
parent
4f043f9576
commit
d4eb61f64d
@ -28,11 +28,14 @@ export class WebsocketController extends EventController implements EventControl
|
||||
allowRequest: async (req, callback) => {
|
||||
try {
|
||||
const url = new URL(req.url || '', 'http://localhost');
|
||||
const isInternalConnection = req.socket.remoteAddress === '127.0.0.1' || req.socket.remoteAddress === '::1';
|
||||
const params = new URLSearchParams(url.search);
|
||||
|
||||
const remoteAddress = req.socket.remoteAddress;
|
||||
const isLocalhost =
|
||||
remoteAddress === '127.0.0.1' || remoteAddress === '::1' || remoteAddress === '::ffff:127.0.0.1';
|
||||
|
||||
// Permite conexões internas do Socket.IO (EIO=4 é o Engine.IO v4)
|
||||
if (params.has('EIO') && isInternalConnection) {
|
||||
if (params.has('EIO') && isLocalhost) {
|
||||
return callback(null, true);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user