mirror of
https://github.com/Ylianst/MeshCentral.git
synced 2025-02-12 11:01:52 +00:00
Removed IP address filtering for handleMeshSettingsRequest()
This commit is contained in:
parent
8a976f577e
commit
8f3b6cf477
2 changed files with 2 additions and 2 deletions
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "meshcentral",
|
"name": "meshcentral",
|
||||||
"version": "0.5.1-h",
|
"version": "0.5.1-i",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"Remote Management",
|
"Remote Management",
|
||||||
"Intel AMT",
|
"Intel AMT",
|
||||||
|
|
|
@ -3509,7 +3509,7 @@ module.exports.CreateWebServer = function (parent, db, args, certificates) {
|
||||||
|
|
||||||
// Handle a request to download a mesh settings
|
// Handle a request to download a mesh settings
|
||||||
obj.handleMeshSettingsRequest = function (req, res) {
|
obj.handleMeshSettingsRequest = function (req, res) {
|
||||||
const domain = checkUserIpAddress(req, res);
|
const domain = getDomain(req);
|
||||||
if (domain == null) { return; }
|
if (domain == null) { return; }
|
||||||
//if ((domain.id !== '') || (!req.session) || (req.session == null) || (!req.session.userid)) { res.sendStatus(401); return; }
|
//if ((domain.id !== '') || (!req.session) || (req.session == null) || (!req.session.userid)) { res.sendStatus(401); return; }
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue