1
0
Fork 0
mirror of https://github.com/Ylianst/MeshCentral.git synced 2025-03-09 15:40:18 +00:00

Completed work on host-based AMT ACM TLS activation.

This commit is contained in:
Ylian Saint-Hilaire 2021-03-16 16:29:13 -07:00
parent 7677937cd1
commit 8e19f3bdf5
4 changed files with 624 additions and 528 deletions

View file

@ -430,7 +430,7 @@ function amt_heci() {
// Send the command
this.sendCommand(139, data, function (header, fn, opt) {
if (header.Status == 0) {
if ((header.Status == 0) && (header.Data != null)) {
var amtHash = null;
if (header.Data[0] == 2) { amtHash = header.Data.slice(1, 33); } // SHA256
if (header.Data[0] == 3) { amtHash = header.Data.slice(1, 49); } // SHA384
@ -439,7 +439,7 @@ function amt_heci() {
opt.unshift({ status: header.Status });
}
fn.apply(this, opt);
}, func, optional);
}, func, optional);
}
}