mirror of
https://github.com/Ylianst/MeshAgent
synced 2025-12-14 07:13:37 +00:00
1. Updated authenticode parser to check for empty string
2. Updated _agentStatus to support custom IPC
This commit is contained in:
@@ -106,7 +106,10 @@ function locked(uri)
|
||||
var tokens = q.pop().split('=');
|
||||
if (tokens[0].trim().toLowerCase() == 'serverid')
|
||||
{
|
||||
return ({ dns: f.host, id: tokens[1] });
|
||||
if (f.host != null && f.host != '' && tokens[1] != null && tokens[1] != '')
|
||||
{
|
||||
return ({ dns: f.host, id: tokens[1] });
|
||||
}
|
||||
}
|
||||
}
|
||||
return (null);
|
||||
|
||||
Reference in New Issue
Block a user