Synced with Agent Repo

1. Capped smbios to 64k
2. Removed commented out code from win-console.js
3. Updated win-terminal to check for null before pushing
This commit is contained in:
Bryan Roe
2020-04-06 17:21:19 -07:00
parent f5c5ebaf5e
commit 8550ca648b
3 changed files with 28 additions and 17 deletions

View File

@@ -191,6 +191,12 @@ function SMBiosTables()
catch(e)
{
}
try
{
if (JSON.stringify(r).length > 65535) { r = {}; }
}
catch(ee)
{}
return r;
}
this.processorInfo = function processorInfo(data) {