This commit is contained in:
Ylian Saint-Hilaire 2020-12-31 11:16:47 -08:00
parent f6c71a63d0
commit cfd428a139
1 changed files with 2 additions and 1 deletions

View File

@ -1038,7 +1038,7 @@ module.exports.CreateMeshAgent = function (parent, db, ws, req, args, domain) {
// Verify the agent signature
function processAgentSignature(msg) {
if ((args.ignoreagenthashcheck !== true) && (domain.ignoreagenthashcheck !== true)) {
if (isIgnoreHashCheck() == false) {
var verified = false;
if (msg.length != 384) {
@ -1682,6 +1682,7 @@ module.exports.CreateMeshAgent = function (parent, db, ws, req, args, domain) {
// Return true if we need to ignore the agent hash check
function isIgnoreHashCheck() {
// Test
if ((args.ignoreagenthashcheck === true) || (domain.ignoreagenthashcheck === true)) return true;
// Check site wide exceptions