EverydayTech Platform - Developer Reference
Complete Source Code Documentation - All Applications
Loading...
Searching...
No Matches
amt-0.2.0.js
Go to the documentation of this file.
1/**
2* @fileoverview Intel(r) AMT Communication Stack
3* @author Ylian Saint-Hilaire
4* @version v0.2.0b
5*/
6
7/**
8 * Construct a AmtStackCreateService object, this ia the main Intel AMT communication stack.
9 * @constructor
10 */
11function AmtStackCreateService(wsmanStack) {
12 var obj = new Object();
13 obj.wsman = wsmanStack;
14 obj.pfx = ["http://intel.com/wbem/wscim/1/amt-schema/1/", "http://schemas.dmtf.org/wbem/wscim/1/cim-schema/2/", "http://intel.com/wbem/wscim/1/ips-schema/1/"];
15 obj.PendingEnums = [];
16 obj.PendingBatchOperations = 0;
17 obj.ActiveEnumsCount = 0;
18 obj.MaxActiveEnumsCount = 1; // Maximum number of enumerations that can be done at the same time.
19 obj.onProcessChanged = null;
20 var _MaxProcess = 0;
21 var _LastProcess = 0;
22
23 // Return the number of pending actions
24 obj.GetPendingActions = function () { return (obj.PendingEnums.length * 2) + (obj.ActiveEnumsCount) + obj.wsman.comm.PendingAjax.length + obj.wsman.comm.ActiveAjaxCount + obj.PendingBatchOperations; }
25
26 // Private Method, Update the current processing status, this gives the application an idea of what progress is being done by the WSMAN stack
27 function _up() {
28 var x = obj.GetPendingActions();
29 if (_MaxProcess < x) _MaxProcess = x;
30 if (obj.onProcessChanged != null && _LastProcess != x) {
31 //console.log("Process Old=" + _LastProcess + ", New=" + x + ", PEnums=" + obj.PendingEnums.length + ", AEnums=" + obj.ActiveEnumsCount + ", PAjax=" + obj.wsman.comm.PendingAjax.length + ", AAjax=" + obj.wsman.comm.ActiveAjaxCount + ", PBatch=" + obj.PendingBatchOperations);
32 _LastProcess = x;
33 obj.onProcessChanged(x, _MaxProcess);
34 }
35 if (x == 0) _MaxProcess = 0;
36 }
37
38 // Perform a WSMAN "SUBSCRIBE" operation.
39 obj.Subscribe = function (name, delivery, url, callback, tag, pri, selectors, opaque, user, pass) { obj.wsman.ExecSubscribe(obj.CompleteName(name), delivery, url, function (ws, resuri, response, xstatus) { _up(); callback(obj, name, response, xstatus, tag); }, 0, pri, selectors, opaque, user, pass); _up(); }
40
41 // Perform a WSMAN "UNSUBSCRIBE" operation.
42 obj.UnSubscribe = function (name, callback, tag, pri, selectors) { obj.wsman.ExecUnSubscribe(obj.CompleteName(name), function (ws, resuri, response, xstatus) { _up(); callback(obj, name, response, xstatus, tag); }, 0, pri, selectors); _up(); }
43
44 // Perform a WSMAN "GET" operation.
45 obj.Get = function (name, callback, tag, pri) { obj.wsman.ExecGet(obj.CompleteName(name), function (ws, resuri, response, xstatus) { _up(); callback(obj, name, response, xstatus, tag); }, 0, pri); _up(); }
46
47 // Perform a WSMAN "PUT" operation.
48 obj.Put = function (name, putobj, callback, tag, pri, selectors) { obj.wsman.ExecPut(obj.CompleteName(name), putobj, function (ws, resuri, response, xstatus) { _up(); callback(obj, name, response, xstatus, tag); }, 0, pri, selectors); _up(); }
49
50 // Perform a WSMAN "CREATE" operation.
51 obj.Create = function (name, putobj, callback, tag, pri) { obj.wsman.ExecCreate(obj.CompleteName(name), putobj, function (ws, resuri, response, xstatus) { _up(); callback(obj, name, response, xstatus, tag); }, 0, pri); _up(); }
52
53 // Perform a WSMAN "DELETE" operation.
54 obj.Delete = function (name, putobj, callback, tag, pri) { obj.wsman.ExecDelete(obj.CompleteName(name), putobj, function (ws, resuri, response, xstatus) { _up(); callback(obj, name, response, xstatus, tag); }, 0, pri); _up(); }
55
56 // Perform a WSMAN method call operation.
57 obj.Exec = function (name, method, args, callback, tag, pri, selectors) { obj.wsman.ExecMethod(obj.CompleteName(name), method, args, function (ws, resuri, response, xstatus) { _up(); callback(obj, name, obj.CompleteExecResponse(response), xstatus, tag); }, 0, pri, selectors); _up(); }
58
59 // Perform a WSMAN method call operation.
60 obj.ExecWithXml = function (name, method, args, callback, tag, pri, selectors) { obj.wsman.ExecMethodXml(obj.CompleteName(name), method, execArgumentsToXml(args), function (ws, resuri, response, xstatus) { _up(); callback(obj, name, obj.CompleteExecResponse(response), xstatus, tag); }, 0, pri, selectors); _up(); }
61
62 // Perform a WSMAN "ENUMERATE" operation.
63 obj.Enum = function (name, callback, tag, pri) {
64 if (obj.ActiveEnumsCount < obj.MaxActiveEnumsCount) {
65 obj.ActiveEnumsCount++; obj.wsman.ExecEnum(obj.CompleteName(name), function (ws, resuri, response, xstatus, tag0) { _up(); _EnumStartSink(name, response, callback, resuri, xstatus, tag0); }, tag, pri);
66 } else {
67 obj.PendingEnums.push([name, callback, tag, pri]);
68 }
69 _up();
70 }
71
72 // Private method
73 function _EnumStartSink(name, response, callback, resuri, status, tag, pri) {
74 if (status != 200) { callback(obj, name, null, status, tag); _EnumDoNext(1); return; }
75 if (response == null || response.Header["Method"] != "EnumerateResponse" || !response.Body["EnumerationContext"]) { callback(obj, name, null, 603, tag); _EnumDoNext(1); return; }
76 var enumctx = response.Body["EnumerationContext"];
77 obj.wsman.ExecPull(resuri, enumctx, function (ws, resuri, response, xstatus) { _EnumContinueSink(name, response, callback, resuri, [], xstatus, tag, pri); });
78 }
79
80 // Private method
81 function _EnumContinueSink(name, response, callback, resuri, items, status, tag, pri) {
82 if (status != 200) { callback(obj, name, null, status, tag); _EnumDoNext(1); return; }
83 if (response == null || response.Header["Method"] != "PullResponse") { callback(obj, name, null, 604, tag); _EnumDoNext(1); return; }
84 for (var i in response.Body["Items"]) {
85 if (response.Body["Items"][i] instanceof Array) {
86 for (var j in response.Body["Items"][i]) { items.push(response.Body["Items"][i][j]); }
87 } else {
88 items.push(response.Body["Items"][i]);
89 }
90 }
91 if (response.Body["EnumerationContext"]) {
92 var enumctx = response.Body["EnumerationContext"];
93 obj.wsman.ExecPull(resuri, enumctx, function (ws, resuri, response, xstatus) { _EnumContinueSink(name, response, callback, resuri, items, xstatus, tag, 1); });
94 } else {
95 _EnumDoNext(1);
96 callback(obj, name, items, status, tag);
97 _up();
98 }
99 }
100
101 // Private method
102 function _EnumDoNext(dec) {
103 obj.ActiveEnumsCount -= dec;
104 if (obj.ActiveEnumsCount >= obj.MaxActiveEnumsCount || obj.PendingEnums.length == 0) return;
105 var x = obj.PendingEnums.shift();
106 obj.Enum(x[0], x[1], x[2]);
107 _EnumDoNext(0);
108 }
109
110 // Perform a batch of WSMAN "ENUM" operations.
111 obj.BatchEnum = function (batchname, names, callback, tag, continueOnError, pri) {
112 obj.PendingBatchOperations += (names.length * 2);
113 _BatchNextEnum(batchname, Clone(names), callback, tag, {}, continueOnError, pri); _up();
114 }
115
116 // Request each enum in the batch, stopping if something does not return status 200
117 function _BatchNextEnum(batchname, names, callback, tag, results, continueOnError, pri) {
118 obj.PendingBatchOperations -= 2;
119 var n = names.shift(), f = obj.Enum;
120 if (n[0] == '*') { f = obj.Get; n = n.substring(1); } // If the name starts with a star, do a GET instead of an ENUM. This will reduce round trips.
121 //console.log((f == obj.Get?'Get ':'Enum ') + n);
122 // Perform a GET/ENUM action
123 f(n, function (stack, name, responses, status, tag0) {
124 tag0[2][name] = { response: (responses==null?null:responses.Body), responses: responses, status: status };
125 if (tag0[1].length == 0 || status == 401 || (continueOnError != true && status != 200 && status != 400)) { obj.PendingBatchOperations -= (names.length * 2); _up(); callback(obj, batchname, tag0[2], status, tag); }
126 else { _up(); _BatchNextEnum(batchname, names, callback, tag, tag0[2], pri); }
127 }, [batchname, names, results], pri);
128 _up();
129 }
130
131 // Perform a batch of WSMAN "GET" operations.
132 obj.BatchGet = function (batchname, names, callback, tag, pri) {
133 _FetchNext({ name: batchname, names: names, callback: callback, current: 0, responses: {}, tag: tag, pri: pri }); _up();
134 }
135
136 // Private method
137 function _FetchNext(batch) {
138 if (batch.names.length <= batch.current) {
139 batch.callback(obj, batch.name, batch.responses, 200, batch.tag);
140 } else {
141 obj.wsman.ExecGet(obj.CompleteName(batch.names[batch.current]), function (ws, resuri, response, xstatus) { _Fetched(batch, response, xstatus); }, batch.pri);
142 batch.current++;
143 }
144 _up();
145 }
146
147 // Private method
148 function _Fetched(batch, response, status) {
149 if (response == null || status != 200) {
150 batch.callback(obj, batch.name, null, status, batch.tag);
151 } else {
152 batch.responses[response.Header["Method"]] = response;
153 _FetchNext(batch);
154 }
155 }
156
157 // Private method
158 obj.CompleteName = function(name) {
159 if (name.indexOf("AMT_") == 0) return obj.pfx[0] + name;
160 if (name.indexOf("CIM_") == 0) return obj.pfx[1] + name;
161 if (name.indexOf("IPS_") == 0) return obj.pfx[2] + name;
162 }
163
164 obj.CompleteExecResponse = function (resp) {
165 if (resp && resp != null && resp.Body && resp.Body["ReturnValue"]) resp.Body.ReturnValueStr = obj.AmtStatusToStr(resp.Body["ReturnValue"]);
166 return resp;
167 }
168
169 obj.RequestPowerStateChange = function (PowerState, callback_func) {
170 obj.CIM_PowerManagementService_RequestPowerStateChange(PowerState, "<Address xmlns=\"http://schemas.xmlsoap.org/ws/2004/08/addressing\">http://schemas.xmlsoap.org/ws/2004/08/addressing</Address><ReferenceParameters xmlns=\"http://schemas.xmlsoap.org/ws/2004/08/addressing\"><ResourceURI xmlns=\"http://schemas.dmtf.org/wbem/wsman/1/wsman.xsd\">http://schemas.dmtf.org/wbem/wscim/1/cim-schema/2/CIM_ComputerSystem</ResourceURI><SelectorSet xmlns=\"http://schemas.dmtf.org/wbem/wsman/1/wsman.xsd\"><Selector Name=\"CreationClassName\">CIM_ComputerSystem</Selector><Selector Name=\"Name\">ManagedSystem</Selector></SelectorSet></ReferenceParameters>", null, null, callback_func);
171 }
172
173 obj.SetBootConfigRole = function (Role, callback_func) {
174 obj.CIM_BootService_SetBootConfigRole("<Address xmlns=\"http://schemas.xmlsoap.org/ws/2004/08/addressing\">http://schemas.xmlsoap.org/ws/2004/08/addressing</Address><ReferenceParameters xmlns=\"http://schemas.xmlsoap.org/ws/2004/08/addressing\"><ResourceURI xmlns=\"http://schemas.dmtf.org/wbem/wsman/1/wsman.xsd\">http://schemas.dmtf.org/wbem/wscim/1/cim-schema/2/CIM_BootConfigSetting</ResourceURI><SelectorSet xmlns=\"http://schemas.dmtf.org/wbem/wsman/1/wsman.xsd\"><Selector Name=\"InstanceID\">Intel(r) AMT: Boot Configuration 0</Selector></SelectorSet></ReferenceParameters>", Role, callback_func);
175 }
176
177 // Cancel all pending queries with given status
178 obj.CancelAllQueries = function (s) {
179 obj.wsman.CancelAllQueries(s);
180 }
181
182 // Auto generated methods
183 obj.AMT_AgentPresenceWatchdog_RegisterAgent = function (callback_func) { obj.Exec("AMT_AgentPresenceWatchdog", "RegisterAgent", {}, callback_func); }
184 obj.AMT_AgentPresenceWatchdog_AssertPresence = function (SequenceNumber, callback_func) { obj.Exec("AMT_AgentPresenceWatchdog", "AssertPresence", { "SequenceNumber": SequenceNumber }, callback_func); }
185 obj.AMT_AgentPresenceWatchdog_AssertShutdown = function (SequenceNumber, callback_func) { obj.Exec("AMT_AgentPresenceWatchdog", "AssertShutdown", { "SequenceNumber": SequenceNumber }, callback_func); }
186 obj.AMT_AgentPresenceWatchdog_AddAction = function (OldState, NewState, EventOnTransition, ActionSd, ActionEac, callback_func, tag, pri, selectors) { obj.Exec("AMT_AgentPresenceWatchdog", "AddAction", { "OldState": OldState, "NewState": NewState, "EventOnTransition": EventOnTransition, "ActionSd": ActionSd, "ActionEac": ActionEac }, callback_func, tag, pri, selectors); }
187 obj.AMT_AgentPresenceWatchdog_DeleteAllActions = function (callback_func, tag, pri, selectors) { obj.Exec("AMT_AgentPresenceWatchdog", "DeleteAllActions", {}, callback_func, tag, pri, selectors); }
188 obj.AMT_AgentPresenceWatchdogAction_GetActionEac = function (callback_func) { obj.Exec("AMT_AgentPresenceWatchdogAction", "GetActionEac", {}, callback_func); }
189 obj.AMT_AgentPresenceWatchdogVA_RegisterAgent = function (callback_func) { obj.Exec("AMT_AgentPresenceWatchdogVA", "RegisterAgent", {}, callback_func); }
190 obj.AMT_AgentPresenceWatchdogVA_AssertPresence = function (SequenceNumber, callback_func) { obj.Exec("AMT_AgentPresenceWatchdogVA", "AssertPresence", { "SequenceNumber": SequenceNumber }, callback_func); }
191 obj.AMT_AgentPresenceWatchdogVA_AssertShutdown = function (SequenceNumber, callback_func) { obj.Exec("AMT_AgentPresenceWatchdogVA", "AssertShutdown", { "SequenceNumber": SequenceNumber }, callback_func); }
192 obj.AMT_AgentPresenceWatchdogVA_AddAction = function (OldState, NewState, EventOnTransition, ActionSd, ActionEac, callback_func) { obj.Exec("AMT_AgentPresenceWatchdogVA", "AddAction", { "OldState": OldState, "NewState": NewState, "EventOnTransition": EventOnTransition, "ActionSd": ActionSd, "ActionEac": ActionEac }, callback_func); }
193 obj.AMT_AgentPresenceWatchdogVA_DeleteAllActions = function (_method_dummy, callback_func) { obj.Exec("AMT_AgentPresenceWatchdogVA", "DeleteAllActions", { "_method_dummy": _method_dummy }, callback_func); }
194 obj.AMT_AuditLog_ClearLog = function (callback_func) { obj.Exec("AMT_AuditLog", "ClearLog", {}, callback_func); }
195 obj.AMT_AuditLog_RequestStateChange = function (RequestedState, TimeoutPeriod, callback_func) { obj.Exec("AMT_AuditLog", "RequestStateChange", { "RequestedState": RequestedState, "TimeoutPeriod": TimeoutPeriod }, callback_func); }
196 obj.AMT_AuditLog_ReadRecords = function (StartIndex, callback_func, tag) { obj.Exec("AMT_AuditLog", "ReadRecords", { "StartIndex": StartIndex }, callback_func, tag); }
197 obj.AMT_AuditLog_SetAuditLock = function (LockTimeoutInSeconds, Flag, Handle, callback_func) { obj.Exec("AMT_AuditLog", "SetAuditLock", { "LockTimeoutInSeconds": LockTimeoutInSeconds, "Flag": Flag, "Handle": Handle }, callback_func); }
198 obj.AMT_AuditLog_ExportAuditLogSignature = function (SigningMechanism, callback_func) { obj.Exec("AMT_AuditLog", "ExportAuditLogSignature", { "SigningMechanism": SigningMechanism }, callback_func); }
199 obj.AMT_AuditLog_SetSigningKeyMaterial = function (SigningMechanismType, SigningKey, LengthOfCertificates, Certificates, callback_func) { obj.Exec("AMT_AuditLog", "SetSigningKeyMaterial", { "SigningMechanismType": SigningMechanismType, "SigningKey": SigningKey, "LengthOfCertificates": LengthOfCertificates, "Certificates": Certificates }, callback_func); }
200 obj.AMT_AuditPolicyRule_SetAuditPolicy = function (Enable, AuditedAppID, EventID, PolicyType, callback_func) { obj.Exec("AMT_AuditPolicyRule", "SetAuditPolicy", { "Enable": Enable, "AuditedAppID": AuditedAppID, "EventID": EventID, "PolicyType": PolicyType }, callback_func); }
201 obj.AMT_AuditPolicyRule_SetAuditPolicyBulk = function (Enable, AuditedAppID, EventID, PolicyType, callback_func) { obj.Exec("AMT_AuditPolicyRule", "SetAuditPolicyBulk", { "Enable": Enable, "AuditedAppID": AuditedAppID, "EventID": EventID, "PolicyType": PolicyType }, callback_func); }
202 obj.AMT_AuthorizationService_AddUserAclEntryEx = function (DigestUsername, DigestPassword, KerberosUserSid, AccessPermission, Realms, callback_func) { obj.Exec("AMT_AuthorizationService", "AddUserAclEntryEx", { "DigestUsername": DigestUsername, "DigestPassword": DigestPassword, "KerberosUserSid": KerberosUserSid, "AccessPermission": AccessPermission, "Realms": Realms }, callback_func); }
203 obj.AMT_AuthorizationService_EnumerateUserAclEntries = function (StartIndex, callback_func) { obj.Exec("AMT_AuthorizationService", "EnumerateUserAclEntries", { "StartIndex": StartIndex }, callback_func); }
204 obj.AMT_AuthorizationService_GetUserAclEntryEx = function (Handle, callback_func, tag) { obj.Exec("AMT_AuthorizationService", "GetUserAclEntryEx", { "Handle": Handle }, callback_func, tag); }
205 obj.AMT_AuthorizationService_UpdateUserAclEntryEx = function (Handle, DigestUsername, DigestPassword, KerberosUserSid, AccessPermission, Realms, callback_func) { obj.Exec("AMT_AuthorizationService", "UpdateUserAclEntryEx", { "Handle": Handle, "DigestUsername": DigestUsername, "DigestPassword": DigestPassword, "KerberosUserSid": KerberosUserSid, "AccessPermission": AccessPermission, "Realms": Realms }, callback_func); }
206 obj.AMT_AuthorizationService_RemoveUserAclEntry = function (Handle, callback_func) { obj.Exec("AMT_AuthorizationService", "RemoveUserAclEntry", { "Handle": Handle }, callback_func); }
207 obj.AMT_AuthorizationService_SetAdminAclEntryEx = function (Username, DigestPassword, callback_func) { obj.Exec("AMT_AuthorizationService", "SetAdminAclEntryEx", { "Username": Username, "DigestPassword": DigestPassword }, callback_func); }
208 obj.AMT_AuthorizationService_GetAdminAclEntry = function (callback_func) { obj.Exec("AMT_AuthorizationService", "GetAdminAclEntry", {}, callback_func); }
209 obj.AMT_AuthorizationService_GetAdminAclEntryStatus = function (callback_func) { obj.Exec("AMT_AuthorizationService", "GetAdminAclEntryStatus", {}, callback_func); }
210 obj.AMT_AuthorizationService_GetAdminNetAclEntryStatus = function (callback_func) { obj.Exec("AMT_AuthorizationService", "GetAdminNetAclEntryStatus", {}, callback_func); }
211 obj.AMT_AuthorizationService_SetAclEnabledState = function (Handle, Enabled, callback_func, tag) { obj.Exec("AMT_AuthorizationService", "SetAclEnabledState", { "Handle": Handle, "Enabled": Enabled }, callback_func, tag); }
212 obj.AMT_AuthorizationService_GetAclEnabledState = function (Handle, callback_func, tag) { obj.Exec("AMT_AuthorizationService", "GetAclEnabledState", { "Handle": Handle }, callback_func, tag); }
213 obj.AMT_EndpointAccessControlService_RequestStateChange = function (RequestedState, TimeoutPeriod, callback_func) { obj.Exec("AMT_EndpointAccessControlService", "RequestStateChange", { "RequestedState": RequestedState, "TimeoutPeriod": TimeoutPeriod }, callback_func); }
214 obj.AMT_EndpointAccessControlService_GetPosture = function (PostureType, callback_func) { obj.Exec("AMT_EndpointAccessControlService", "GetPosture", { "PostureType": PostureType }, callback_func); }
215 obj.AMT_EndpointAccessControlService_GetPostureHash = function (PostureType, callback_func) { obj.Exec("AMT_EndpointAccessControlService", "GetPostureHash", { "PostureType": PostureType }, callback_func); }
216 obj.AMT_EndpointAccessControlService_UpdatePostureState = function (UpdateType, callback_func) { obj.Exec("AMT_EndpointAccessControlService", "UpdatePostureState", { "UpdateType": UpdateType }, callback_func); }
217 obj.AMT_EndpointAccessControlService_GetEacOptions = function (callback_func) { obj.Exec("AMT_EndpointAccessControlService", "GetEacOptions", {}, callback_func); }
218 obj.AMT_EndpointAccessControlService_SetEacOptions = function (EacVendors, PostureHashAlgorithm, callback_func) { obj.Exec("AMT_EndpointAccessControlService", "SetEacOptions", { "EacVendors": EacVendors, "PostureHashAlgorithm": PostureHashAlgorithm }, callback_func); }
219 obj.AMT_EnvironmentDetectionSettingData_SetSystemDefensePolicy = function (Policy, callback_func) { obj.Exec("AMT_EnvironmentDetectionSettingData", "SetSystemDefensePolicy", { "Policy": Policy }, callback_func); }
220 obj.AMT_EnvironmentDetectionSettingData_EnableVpnRouting = function (Enable, callback_func) { obj.Exec("AMT_EnvironmentDetectionSettingData", "EnableVpnRouting", { "Enable": Enable }, callback_func); }
221 obj.AMT_EthernetPortSettings_SetLinkPreference = function (LinkPreference, Timeout, callback_func) { obj.Exec("AMT_EthernetPortSettings", "SetLinkPreference", { "LinkPreference": LinkPreference, "Timeout": Timeout }, callback_func); }
222 obj.AMT_HeuristicPacketFilterStatistics_ResetSelectedStats = function (SelectedStatistics, callback_func) { obj.Exec("AMT_HeuristicPacketFilterStatistics", "ResetSelectedStats", { "SelectedStatistics": SelectedStatistics }, callback_func); }
223 obj.AMT_KerberosSettingData_GetCredentialCacheState = function (callback_func) { obj.Exec("AMT_KerberosSettingData", "GetCredentialCacheState", {}, callback_func); }
224 obj.AMT_KerberosSettingData_SetCredentialCacheState = function (Enable, callback_func) { obj.Exec("AMT_KerberosSettingData", "SetCredentialCacheState", { "Enable": Enable }, callback_func); }
225 obj.AMT_MessageLog_CancelIteration = function (IterationIdentifier, callback_func) { obj.Exec("AMT_MessageLog", "CancelIteration", { "IterationIdentifier": IterationIdentifier }, callback_func); }
226 obj.AMT_MessageLog_RequestStateChange = function (RequestedState, TimeoutPeriod, callback_func) { obj.Exec("AMT_MessageLog", "RequestStateChange", { "RequestedState": RequestedState, "TimeoutPeriod": TimeoutPeriod }, callback_func); }
227 obj.AMT_MessageLog_ClearLog = function (callback_func) { obj.Exec("AMT_MessageLog", "ClearLog", { }, callback_func); }
228 obj.AMT_MessageLog_GetRecords = function (IterationIdentifier, MaxReadRecords, callback_func, tag) { obj.Exec("AMT_MessageLog", "GetRecords", { "IterationIdentifier": IterationIdentifier, "MaxReadRecords": MaxReadRecords }, callback_func, tag); }
229 obj.AMT_MessageLog_GetRecord = function (IterationIdentifier, PositionToNext, callback_func) { obj.Exec("AMT_MessageLog", "GetRecord", { "IterationIdentifier": IterationIdentifier, "PositionToNext": PositionToNext }, callback_func); }
230 obj.AMT_MessageLog_PositionAtRecord = function (IterationIdentifier, MoveAbsolute, RecordNumber, callback_func) { obj.Exec("AMT_MessageLog", "PositionAtRecord", { "IterationIdentifier": IterationIdentifier, "MoveAbsolute": MoveAbsolute, "RecordNumber": RecordNumber }, callback_func); }
231 obj.AMT_MessageLog_PositionToFirstRecord = function (callback_func, tag) { obj.Exec("AMT_MessageLog", "PositionToFirstRecord", {}, callback_func, tag); }
232 obj.AMT_MessageLog_FreezeLog = function (Freeze, callback_func) { obj.Exec("AMT_MessageLog", "FreezeLog", { "Freeze": Freeze }, callback_func); }
233 obj.AMT_PublicKeyManagementService_AddCRL = function (Url, SerialNumbers, callback_func) { obj.Exec("AMT_PublicKeyManagementService", "AddCRL", { "Url": Url, "SerialNumbers": SerialNumbers }, callback_func); }
234 obj.AMT_PublicKeyManagementService_ResetCRLList = function (_method_dummy, callback_func) { obj.Exec("AMT_PublicKeyManagementService", "ResetCRLList", { "_method_dummy": _method_dummy }, callback_func); }
235 obj.AMT_PublicKeyManagementService_AddCertificate = function (CertificateBlob, callback_func) { obj.Exec("AMT_PublicKeyManagementService", "AddCertificate", { "CertificateBlob": CertificateBlob }, callback_func); }
236 obj.AMT_PublicKeyManagementService_AddTrustedRootCertificate = function (CertificateBlob, callback_func) { obj.Exec("AMT_PublicKeyManagementService", "AddTrustedRootCertificate", { "CertificateBlob": CertificateBlob }, callback_func); }
237 obj.AMT_PublicKeyManagementService_AddKey = function (KeyBlob, callback_func) { obj.Exec("AMT_PublicKeyManagementService", "AddKey", { "KeyBlob": KeyBlob }, callback_func); }
238 obj.AMT_PublicKeyManagementService_GeneratePKCS10Request = function (KeyPair, DNName, Usage, callback_func) { obj.Exec("AMT_PublicKeyManagementService", "GeneratePKCS10Request", { "KeyPair": KeyPair, "DNName": DNName, "Usage": Usage }, callback_func); }
239 obj.AMT_PublicKeyManagementService_GeneratePKCS10RequestEx = function (KeyPair, SigningAlgorithm, NullSignedCertificateRequest, callback_func) { obj.Exec("AMT_PublicKeyManagementService", "GeneratePKCS10RequestEx", { "KeyPair": KeyPair, "SigningAlgorithm": SigningAlgorithm, "NullSignedCertificateRequest": NullSignedCertificateRequest }, callback_func); }
240 obj.AMT_PublicKeyManagementService_GenerateKeyPair = function (KeyAlgorithm, KeyLength, callback_func) { obj.Exec("AMT_PublicKeyManagementService", "GenerateKeyPair", { "KeyAlgorithm": KeyAlgorithm, "KeyLength": KeyLength }, callback_func); }
241 obj.AMT_RedirectionService_RequestStateChange = function (RequestedState, callback_func) { obj.Exec("AMT_RedirectionService", "RequestStateChange", { "RequestedState": RequestedState }, callback_func); }
242 obj.AMT_RedirectionService_TerminateSession = function (SessionType, callback_func) { obj.Exec("AMT_RedirectionService", "TerminateSession", { "SessionType": SessionType }, callback_func); }
243 obj.AMT_RemoteAccessService_AddMpServer = function (AccessInfo, InfoFormat, Port, AuthMethod, Certificate, Username, Password, CN, callback_func) { obj.Exec("AMT_RemoteAccessService", "AddMpServer", { "AccessInfo": AccessInfo, "InfoFormat": InfoFormat, "Port": Port, "AuthMethod": AuthMethod, "Certificate": Certificate, "Username": Username, "Password": Password, "CN": CN }, callback_func); }
244 obj.AMT_RemoteAccessService_AddRemoteAccessPolicyRule = function (Trigger, TunnelLifeTime, ExtendedData, MpServer, callback_func) { obj.Exec("AMT_RemoteAccessService", "AddRemoteAccessPolicyRule", { "Trigger": Trigger, "TunnelLifeTime": TunnelLifeTime, "ExtendedData": ExtendedData, "MpServer": MpServer }, callback_func); }
245 obj.AMT_RemoteAccessService_CloseRemoteAccessConnection = function (_method_dummy, callback_func) { obj.Exec("AMT_RemoteAccessService", "CloseRemoteAccessConnection", { "_method_dummy": _method_dummy }, callback_func); }
246 obj.AMT_SetupAndConfigurationService_CommitChanges = function (_method_dummy, callback_func) { obj.Exec("AMT_SetupAndConfigurationService", "CommitChanges", { "_method_dummy": _method_dummy }, callback_func); }
247 obj.AMT_SetupAndConfigurationService_Unprovision = function (ProvisioningMode, callback_func) { obj.Exec("AMT_SetupAndConfigurationService", "Unprovision", { "ProvisioningMode": ProvisioningMode }, callback_func); }
248 obj.AMT_SetupAndConfigurationService_PartialUnprovision = function (_method_dummy, callback_func) { obj.Exec("AMT_SetupAndConfigurationService", "PartialUnprovision", { "_method_dummy": _method_dummy }, callback_func); }
249 obj.AMT_SetupAndConfigurationService_ResetFlashWearOutProtection = function (_method_dummy, callback_func) { obj.Exec("AMT_SetupAndConfigurationService", "ResetFlashWearOutProtection", { "_method_dummy": _method_dummy }, callback_func); }
250 obj.AMT_SetupAndConfigurationService_ExtendProvisioningPeriod = function (Duration, callback_func) { obj.Exec("AMT_SetupAndConfigurationService", "ExtendProvisioningPeriod", { "Duration": Duration }, callback_func); }
251 obj.AMT_SetupAndConfigurationService_SetMEBxPassword = function (Password, callback_func) { obj.Exec("AMT_SetupAndConfigurationService", "SetMEBxPassword", { "Password": Password }, callback_func); }
252 obj.AMT_SetupAndConfigurationService_SetTLSPSK = function (PID, PPS, callback_func) { obj.Exec("AMT_SetupAndConfigurationService", "SetTLSPSK", { "PID": PID, "PPS": PPS }, callback_func); }
253 obj.AMT_SetupAndConfigurationService_GetProvisioningAuditRecord = function (callback_func) { obj.Exec("AMT_SetupAndConfigurationService", "GetProvisioningAuditRecord", {}, callback_func); }
254 obj.AMT_SetupAndConfigurationService_GetUuid = function (callback_func) { obj.Exec("AMT_SetupAndConfigurationService", "GetUuid", {}, callback_func); }
255 obj.AMT_SetupAndConfigurationService_GetUnprovisionBlockingComponents = function (callback_func) { obj.Exec("AMT_SetupAndConfigurationService", "GetUnprovisionBlockingComponents", {}, callback_func); }
256 obj.AMT_SetupAndConfigurationService_GetProvisioningAuditRecordV2 = function (callback_func) { obj.Exec("AMT_SetupAndConfigurationService", "GetProvisioningAuditRecordV2", {}, callback_func); }
257 obj.AMT_SystemDefensePolicy_GetTimeout = function (callback_func) { obj.Exec("AMT_SystemDefensePolicy", "GetTimeout", {}, callback_func); }
258 obj.AMT_SystemDefensePolicy_SetTimeout = function (Timeout, callback_func) { obj.Exec("AMT_SystemDefensePolicy", "SetTimeout", { "Timeout": Timeout }, callback_func); }
259 obj.AMT_SystemDefensePolicy_UpdateStatistics = function (NetworkInterface, ResetOnRead, callback_func, tag, pri, selectors) { obj.Exec("AMT_SystemDefensePolicy", "UpdateStatistics", { "NetworkInterface": NetworkInterface, "ResetOnRead": ResetOnRead }, callback_func, tag, pri, selectors); }
260 obj.AMT_SystemPowerScheme_SetPowerScheme = function (callback_func, schemeInstanceId, tag) { obj.Exec("AMT_SystemPowerScheme", "SetPowerScheme", {}, callback_func, tag, 0, { "InstanceID": schemeInstanceId }); }
261 obj.AMT_TimeSynchronizationService_GetLowAccuracyTimeSynch = function (callback_func, tag) { obj.Exec("AMT_TimeSynchronizationService", "GetLowAccuracyTimeSynch", {}, callback_func, tag); }
262 obj.AMT_TimeSynchronizationService_SetHighAccuracyTimeSynch = function (Ta0, Tm1, Tm2, callback_func, tag) { obj.Exec("AMT_TimeSynchronizationService", "SetHighAccuracyTimeSynch", { "Ta0": Ta0, "Tm1": Tm1, "Tm2": Tm2 }, callback_func, tag); }
263 obj.AMT_UserInitiatedConnectionService_RequestStateChange = function (RequestedState, TimeoutPeriod, callback_func) { obj.Exec("AMT_UserInitiatedConnectionService", "RequestStateChange", { "RequestedState": RequestedState, "TimeoutPeriod": TimeoutPeriod }, callback_func); }
264 obj.AMT_WebUIService_RequestStateChange = function (RequestedState, TimeoutPeriod, callback_func) { obj.Exec("AMT_WebUIService", "RequestStateChange", { "RequestedState": RequestedState, "TimeoutPeriod": TimeoutPeriod }, callback_func); }
265 obj.AMT_WiFiPortConfigurationService_AddWiFiSettings = function (WiFiEndpoint, WiFiEndpointSettingsInput, IEEE8021xSettingsInput, ClientCredential, CACredential, callback_func) { obj.ExecWithXml("AMT_WiFiPortConfigurationService", "AddWiFiSettings", { "WiFiEndpoint": WiFiEndpoint, "WiFiEndpointSettingsInput": WiFiEndpointSettingsInput, "IEEE8021xSettingsInput": IEEE8021xSettingsInput, "ClientCredential": ClientCredential, "CACredential": CACredential }, callback_func); }
266 obj.AMT_WiFiPortConfigurationService_UpdateWiFiSettings = function (WiFiEndpointSettings, WiFiEndpointSettingsInput, IEEE8021xSettingsInput, ClientCredential, CACredential, callback_func) { obj.ExecWithXml("AMT_WiFiPortConfigurationService", "UpdateWiFiSettings", { "WiFiEndpointSettings": WiFiEndpointSettings, "WiFiEndpointSettingsInput": WiFiEndpointSettingsInput, "IEEE8021xSettingsInput": IEEE8021xSettingsInput, "ClientCredential": ClientCredential, "CACredential": CACredential }, callback_func); }
267 obj.AMT_WiFiPortConfigurationService_DeleteAllITProfiles = function (_method_dummy, callback_func) { obj.Exec("AMT_WiFiPortConfigurationService", "DeleteAllITProfiles", { "_method_dummy": _method_dummy }, callback_func); }
268 obj.AMT_WiFiPortConfigurationService_DeleteAllUserProfiles = function (_method_dummy, callback_func) { obj.Exec("AMT_WiFiPortConfigurationService", "DeleteAllUserProfiles", { "_method_dummy": _method_dummy }, callback_func); }
269 obj.CIM_Account_RequestStateChange = function (RequestedState, TimeoutPeriod, callback_func) { obj.Exec("CIM_Account", "RequestStateChange", { "RequestedState": RequestedState, "TimeoutPeriod": TimeoutPeriod }, callback_func); }
270 obj.CIM_AccountManagementService_CreateAccount = function (System, AccountTemplate, callback_func) { obj.Exec("CIM_AccountManagementService", "CreateAccount", { "System": System, "AccountTemplate": AccountTemplate }, callback_func); }
271 obj.CIM_BootConfigSetting_ChangeBootOrder = function (Source, callback_func) { obj.Exec("CIM_BootConfigSetting", "ChangeBootOrder", { "Source": Source }, callback_func); }
272 obj.CIM_BootService_SetBootConfigRole = function (BootConfigSetting, Role, callback_func) { obj.Exec("CIM_BootService", "SetBootConfigRole", { "BootConfigSetting": BootConfigSetting, "Role": Role }, callback_func, 0, 1); }
273 obj.CIM_Card_ConnectorPower = function (Connector, PoweredOn, callback_func) { obj.Exec("CIM_Card", "ConnectorPower", { "Connector": Connector, "PoweredOn": PoweredOn }, callback_func); }
274 obj.CIM_Card_IsCompatible = function (ElementToCheck, callback_func) { obj.Exec("CIM_Card", "IsCompatible", { "ElementToCheck": ElementToCheck }, callback_func); }
275 obj.CIM_Chassis_IsCompatible = function (ElementToCheck, callback_func) { obj.Exec("CIM_Chassis", "IsCompatible", { "ElementToCheck": ElementToCheck }, callback_func); }
276 obj.CIM_Fan_SetSpeed = function (DesiredSpeed, callback_func) { obj.Exec("CIM_Fan", "SetSpeed", { "DesiredSpeed": DesiredSpeed }, callback_func); }
277 obj.CIM_KVMRedirectionSAP_RequestStateChange = function (RequestedState, TimeoutPeriod, callback_func) { obj.Exec("CIM_KVMRedirectionSAP", "RequestStateChange", { "RequestedState": RequestedState/*, "TimeoutPeriod": TimeoutPeriod */}, callback_func); }
278 obj.CIM_MediaAccessDevice_LockMedia = function (Lock, callback_func) { obj.Exec("CIM_MediaAccessDevice", "LockMedia", { "Lock": Lock }, callback_func); }
279 obj.CIM_MediaAccessDevice_SetPowerState = function (PowerState, Time, callback_func) { obj.Exec("CIM_MediaAccessDevice", "SetPowerState", { "PowerState": PowerState, "Time": Time }, callback_func); }
280 obj.CIM_MediaAccessDevice_Reset = function (callback_func) { obj.Exec("CIM_MediaAccessDevice", "Reset", {}, callback_func); }
281 obj.CIM_MediaAccessDevice_EnableDevice = function (Enabled, callback_func) { obj.Exec("CIM_MediaAccessDevice", "EnableDevice", { "Enabled": Enabled }, callback_func); }
282 obj.CIM_MediaAccessDevice_OnlineDevice = function (Online, callback_func) { obj.Exec("CIM_MediaAccessDevice", "OnlineDevice", { "Online": Online }, callback_func); }
283 obj.CIM_MediaAccessDevice_QuiesceDevice = function (Quiesce, callback_func) { obj.Exec("CIM_MediaAccessDevice", "QuiesceDevice", { "Quiesce": Quiesce }, callback_func); }
284 obj.CIM_MediaAccessDevice_SaveProperties = function (callback_func) { obj.Exec("CIM_MediaAccessDevice", "SaveProperties", {}, callback_func); }
285 obj.CIM_MediaAccessDevice_RestoreProperties = function (callback_func) { obj.Exec("CIM_MediaAccessDevice", "RestoreProperties", {}, callback_func); }
286 obj.CIM_MediaAccessDevice_RequestStateChange = function (RequestedState, TimeoutPeriod, callback_func) { obj.Exec("CIM_MediaAccessDevice", "RequestStateChange", { "RequestedState": RequestedState, "TimeoutPeriod": TimeoutPeriod }, callback_func); }
287 obj.CIM_PhysicalFrame_IsCompatible = function (ElementToCheck, callback_func) { obj.Exec("CIM_PhysicalFrame", "IsCompatible", { "ElementToCheck": ElementToCheck }, callback_func); }
288 obj.CIM_PhysicalPackage_IsCompatible = function (ElementToCheck, callback_func) { obj.Exec("CIM_PhysicalPackage", "IsCompatible", { "ElementToCheck": ElementToCheck }, callback_func); }
289 obj.CIM_PowerManagementService_RequestPowerStateChange = function (PowerState, ManagedElement, Time, TimeoutPeriod, callback_func) { obj.Exec("CIM_PowerManagementService", "RequestPowerStateChange", { "PowerState": PowerState, "ManagedElement": ManagedElement, "Time": Time, "TimeoutPeriod": TimeoutPeriod }, callback_func, 0, 1); }
290 obj.CIM_PowerSupply_SetPowerState = function (PowerState, Time, callback_func) { obj.Exec("CIM_PowerSupply", "SetPowerState", { "PowerState": PowerState, "Time": Time }, callback_func); }
291 obj.CIM_PowerSupply_Reset = function (callback_func) { obj.Exec("CIM_PowerSupply", "Reset", {}, callback_func); }
292 obj.CIM_PowerSupply_EnableDevice = function (Enabled, callback_func) { obj.Exec("CIM_PowerSupply", "EnableDevice", { "Enabled": Enabled }, callback_func); }
293 obj.CIM_PowerSupply_OnlineDevice = function (Online, callback_func) { obj.Exec("CIM_PowerSupply", "OnlineDevice", { "Online": Online }, callback_func); }
294 obj.CIM_PowerSupply_QuiesceDevice = function (Quiesce, callback_func) { obj.Exec("CIM_PowerSupply", "QuiesceDevice", { "Quiesce": Quiesce }, callback_func); }
295 obj.CIM_PowerSupply_SaveProperties = function (callback_func) { obj.Exec("CIM_PowerSupply", "SaveProperties", {}, callback_func); }
296 obj.CIM_PowerSupply_RestoreProperties = function (callback_func) { obj.Exec("CIM_PowerSupply", "RestoreProperties", {}, callback_func); }
297 obj.CIM_PowerSupply_RequestStateChange = function (RequestedState, TimeoutPeriod, callback_func) { obj.Exec("CIM_PowerSupply", "RequestStateChange", { "RequestedState": RequestedState, "TimeoutPeriod": TimeoutPeriod }, callback_func); }
298 obj.CIM_Processor_SetPowerState = function (PowerState, Time, callback_func) { obj.Exec("CIM_Processor", "SetPowerState", { "PowerState": PowerState, "Time": Time }, callback_func); }
299 obj.CIM_Processor_Reset = function (callback_func) { obj.Exec("CIM_Processor", "Reset", {}, callback_func); }
300 obj.CIM_Processor_EnableDevice = function (Enabled, callback_func) { obj.Exec("CIM_Processor", "EnableDevice", { "Enabled": Enabled }, callback_func); }
301 obj.CIM_Processor_OnlineDevice = function (Online, callback_func) { obj.Exec("CIM_Processor", "OnlineDevice", { "Online": Online }, callback_func); }
302 obj.CIM_Processor_QuiesceDevice = function (Quiesce, callback_func) { obj.Exec("CIM_Processor", "QuiesceDevice", { "Quiesce": Quiesce }, callback_func); }
303 obj.CIM_Processor_SaveProperties = function (callback_func) { obj.Exec("CIM_Processor", "SaveProperties", {}, callback_func); }
304 obj.CIM_Processor_RestoreProperties = function (callback_func) { obj.Exec("CIM_Processor", "RestoreProperties", {}, callback_func); }
305 obj.CIM_Processor_RequestStateChange = function (RequestedState, TimeoutPeriod, callback_func) { obj.Exec("CIM_Processor", "RequestStateChange", { "RequestedState": RequestedState, "TimeoutPeriod": TimeoutPeriod }, callback_func); }
306 obj.CIM_RecordLog_ClearLog = function (callback_func) { obj.Exec("CIM_RecordLog", "ClearLog", {}, callback_func); }
307 obj.CIM_RecordLog_RequestStateChange = function (RequestedState, TimeoutPeriod, callback_func) { obj.Exec("CIM_RecordLog", "RequestStateChange", { "RequestedState": RequestedState, "TimeoutPeriod": TimeoutPeriod }, callback_func); }
308 obj.CIM_RedirectionService_RequestStateChange = function (RequestedState, TimeoutPeriod, callback_func) { obj.Exec("CIM_RedirectionService", "RequestStateChange", { "RequestedState": RequestedState, "TimeoutPeriod": TimeoutPeriod }, callback_func); }
309 obj.CIM_Sensor_SetPowerState = function (PowerState, Time, callback_func) { obj.Exec("CIM_Sensor", "SetPowerState", { "PowerState": PowerState, "Time": Time }, callback_func); }
310 obj.CIM_Sensor_Reset = function (callback_func) { obj.Exec("CIM_Sensor", "Reset", {}, callback_func); }
311 obj.CIM_Sensor_EnableDevice = function (Enabled, callback_func) { obj.Exec("CIM_Sensor", "EnableDevice", { "Enabled": Enabled }, callback_func); }
312 obj.CIM_Sensor_OnlineDevice = function (Online, callback_func) { obj.Exec("CIM_Sensor", "OnlineDevice", { "Online": Online }, callback_func); }
313 obj.CIM_Sensor_QuiesceDevice = function (Quiesce, callback_func) { obj.Exec("CIM_Sensor", "QuiesceDevice", { "Quiesce": Quiesce }, callback_func); }
314 obj.CIM_Sensor_SaveProperties = function (callback_func) { obj.Exec("CIM_Sensor", "SaveProperties", {}, callback_func); }
315 obj.CIM_Sensor_RestoreProperties = function (callback_func) { obj.Exec("CIM_Sensor", "RestoreProperties", {}, callback_func); }
316 obj.CIM_Sensor_RequestStateChange = function (RequestedState, TimeoutPeriod, callback_func) { obj.Exec("CIM_Sensor", "RequestStateChange", { "RequestedState": RequestedState, "TimeoutPeriod": TimeoutPeriod }, callback_func); }
317 obj.CIM_StatisticalData_ResetSelectedStats = function (SelectedStatistics, callback_func) { obj.Exec("CIM_StatisticalData", "ResetSelectedStats", { "SelectedStatistics": SelectedStatistics }, callback_func); }
318 obj.CIM_Watchdog_KeepAlive = function (callback_func) { obj.Exec("CIM_Watchdog", "KeepAlive", {}, callback_func); }
319 obj.CIM_Watchdog_SetPowerState = function (PowerState, Time, callback_func) { obj.Exec("CIM_Watchdog", "SetPowerState", { "PowerState": PowerState, "Time": Time }, callback_func); }
320 obj.CIM_Watchdog_Reset = function (callback_func) { obj.Exec("CIM_Watchdog", "Reset", {}, callback_func); }
321 obj.CIM_Watchdog_EnableDevice = function (Enabled, callback_func) { obj.Exec("CIM_Watchdog", "EnableDevice", { "Enabled": Enabled }, callback_func); }
322 obj.CIM_Watchdog_OnlineDevice = function (Online, callback_func) { obj.Exec("CIM_Watchdog", "OnlineDevice", { "Online": Online }, callback_func); }
323 obj.CIM_Watchdog_QuiesceDevice = function (Quiesce, callback_func) { obj.Exec("CIM_Watchdog", "QuiesceDevice", { "Quiesce": Quiesce }, callback_func); }
324 obj.CIM_Watchdog_SaveProperties = function (callback_func) { obj.Exec("CIM_Watchdog", "SaveProperties", {}, callback_func); }
325 obj.CIM_Watchdog_RestoreProperties = function (callback_func) { obj.Exec("CIM_Watchdog", "RestoreProperties", {}, callback_func); }
326 obj.CIM_Watchdog_RequestStateChange = function (RequestedState, TimeoutPeriod, callback_func) { obj.Exec("CIM_Watchdog", "RequestStateChange", { "RequestedState": RequestedState, "TimeoutPeriod": TimeoutPeriod }, callback_func); }
327 obj.CIM_WiFiPort_SetPowerState = function (PowerState, Time, callback_func) { obj.Exec("CIM_WiFiPort", "SetPowerState", { "PowerState": PowerState, "Time": Time }, callback_func); }
328 obj.CIM_WiFiPort_Reset = function (callback_func) { obj.Exec("CIM_WiFiPort", "Reset", {}, callback_func); }
329 obj.CIM_WiFiPort_EnableDevice = function (Enabled, callback_func) { obj.Exec("CIM_WiFiPort", "EnableDevice", { "Enabled": Enabled }, callback_func); }
330 obj.CIM_WiFiPort_OnlineDevice = function (Online, callback_func) { obj.Exec("CIM_WiFiPort", "OnlineDevice", { "Online": Online }, callback_func); }
331 obj.CIM_WiFiPort_QuiesceDevice = function (Quiesce, callback_func) { obj.Exec("CIM_WiFiPort", "QuiesceDevice", { "Quiesce": Quiesce }, callback_func); }
332 obj.CIM_WiFiPort_SaveProperties = function (callback_func) { obj.Exec("CIM_WiFiPort", "SaveProperties", {}, callback_func); }
333 obj.CIM_WiFiPort_RestoreProperties = function (callback_func) { obj.Exec("CIM_WiFiPort", "RestoreProperties", {}, callback_func); }
334 obj.CIM_WiFiPort_RequestStateChange = function (RequestedState, TimeoutPeriod, callback_func) { obj.Exec("CIM_WiFiPort", "RequestStateChange", { "RequestedState": RequestedState, "TimeoutPeriod": TimeoutPeriod }, callback_func); }
335 obj.IPS_HostBasedSetupService_Setup = function (NetAdminPassEncryptionType, NetworkAdminPassword, McNonce, Certificate, SigningAlgorithm, DigitalSignature, callback_func) { obj.Exec("IPS_HostBasedSetupService", "Setup", { "NetAdminPassEncryptionType": NetAdminPassEncryptionType, "NetworkAdminPassword": NetworkAdminPassword, "McNonce": McNonce, "Certificate": Certificate, "SigningAlgorithm": SigningAlgorithm, "DigitalSignature": DigitalSignature }, callback_func); }
336 obj.IPS_HostBasedSetupService_AddNextCertInChain = function (NextCertificate, IsLeafCertificate, IsRootCertificate, callback_func) { obj.Exec("IPS_HostBasedSetupService", "AddNextCertInChain", { "NextCertificate": NextCertificate, "IsLeafCertificate": IsLeafCertificate, "IsRootCertificate": IsRootCertificate }, callback_func); }
337 obj.IPS_HostBasedSetupService_AdminSetup = function (NetAdminPassEncryptionType, NetworkAdminPassword, McNonce, SigningAlgorithm, DigitalSignature, callback_func) { obj.Exec("IPS_HostBasedSetupService", "AdminSetup", { "NetAdminPassEncryptionType": NetAdminPassEncryptionType, "NetworkAdminPassword": NetworkAdminPassword, "McNonce": McNonce, "SigningAlgorithm": SigningAlgorithm, "DigitalSignature": DigitalSignature }, callback_func); }
338 obj.IPS_HostBasedSetupService_UpgradeClientToAdmin = function (McNonce, SigningAlgorithm, DigitalSignature, callback_func) { obj.Exec("IPS_HostBasedSetupService", "UpgradeClientToAdmin", { "McNonce": McNonce, "SigningAlgorithm": SigningAlgorithm, "DigitalSignature": DigitalSignature }, callback_func); }
339 obj.IPS_HostBasedSetupService_DisableClientControlMode = function (_method_dummy, callback_func) { obj.Exec("IPS_HostBasedSetupService", "DisableClientControlMode", { "_method_dummy": _method_dummy }, callback_func); }
340 obj.IPS_KVMRedirectionSettingData_TerminateSession = function (callback_func) { obj.Exec("IPS_KVMRedirectionSettingData", "TerminateSession", {}, callback_func); }
341 obj.IPS_OptInService_StartOptIn = function (callback_func) { obj.Exec("IPS_OptInService", "StartOptIn", {}, callback_func); }
342 obj.IPS_OptInService_CancelOptIn = function (callback_func) { obj.Exec("IPS_OptInService", "CancelOptIn", {}, callback_func); }
343 obj.IPS_OptInService_SendOptInCode = function (OptInCode, callback_func) { obj.Exec("IPS_OptInService", "SendOptInCode", { "OptInCode": OptInCode }, callback_func); }
344 obj.IPS_OptInService_StartService = function (callback_func) { obj.Exec("IPS_OptInService", "StartService", {}, callback_func); }
345 obj.IPS_OptInService_StopService = function (callback_func) { obj.Exec("IPS_OptInService", "StopService", {}, callback_func); }
346 obj.IPS_OptInService_RequestStateChange = function (RequestedState, TimeoutPeriod, callback_func) { obj.Exec("IPS_OptInService", "RequestStateChange", { "RequestedState": RequestedState, "TimeoutPeriod": TimeoutPeriod }, callback_func); }
347 obj.IPS_ProvisioningRecordLog_RequestStateChange = function (RequestedState, TimeoutPeriod, callback_func) { obj.Exec("IPS_ProvisioningRecordLog", "RequestStateChange", { "RequestedState": RequestedState, "TimeoutPeriod": TimeoutPeriod }, callback_func); }
348 obj.IPS_ProvisioningRecordLog_ClearLog = function (_method_dummy, callback_func) { obj.Exec("IPS_ProvisioningRecordLog", "ClearLog", { "_method_dummy": _method_dummy }, callback_func); }
349 obj.IPS_SecIOService_RequestStateChange = function (RequestedState, TimeoutPeriod, callback_func) { obj.Exec("IPS_SecIOService", "RequestStateChange", { "RequestedState": RequestedState, "TimeoutPeriod": TimeoutPeriod }, callback_func); }
350
351 obj.AmtStatusToStr = function (code) { if (obj.AmtStatusCodes[code]) return obj.AmtStatusCodes[code]; else return "UNKNOWN_ERROR" }
352 obj.AmtStatusCodes = {
353 0x0000: "SUCCESS",
354 0x0001: "INTERNAL_ERROR",
355 0x0002: "NOT_READY",
356 0x0003: "INVALID_PT_MODE",
357 0x0004: "INVALID_MESSAGE_LENGTH",
358 0x0005: "TABLE_FINGERPRINT_NOT_AVAILABLE",
359 0x0006: "INTEGRITY_CHECK_FAILED",
360 0x0007: "UNSUPPORTED_ISVS_VERSION",
361 0x0008: "APPLICATION_NOT_REGISTERED",
362 0x0009: "INVALID_REGISTRATION_DATA",
363 0x000A: "APPLICATION_DOES_NOT_EXIST",
364 0x000B: "NOT_ENOUGH_STORAGE",
365 0x000C: "INVALID_NAME",
366 0x000D: "BLOCK_DOES_NOT_EXIST",
367 0x000E: "INVALID_BYTE_OFFSET",
368 0x000F: "INVALID_BYTE_COUNT",
369 0x0010: "NOT_PERMITTED",
370 0x0011: "NOT_OWNER",
371 0x0012: "BLOCK_LOCKED_BY_OTHER",
372 0x0013: "BLOCK_NOT_LOCKED",
373 0x0014: "INVALID_GROUP_PERMISSIONS",
374 0x0015: "GROUP_DOES_NOT_EXIST",
375 0x0016: "INVALID_MEMBER_COUNT",
376 0x0017: "MAX_LIMIT_REACHED",
377 0x0018: "INVALID_AUTH_TYPE",
378 0x0019: "AUTHENTICATION_FAILED",
379 0x001A: "INVALID_DHCP_MODE",
380 0x001B: "INVALID_IP_ADDRESS",
381 0x001C: "INVALID_DOMAIN_NAME",
382 0x001D: "UNSUPPORTED_VERSION",
383 0x001E: "REQUEST_UNEXPECTED",
384 0x001F: "INVALID_TABLE_TYPE",
385 0x0020: "INVALID_PROVISIONING_STATE",
386 0x0021: "UNSUPPORTED_OBJECT",
387 0x0022: "INVALID_TIME",
388 0x0023: "INVALID_INDEX",
389 0x0024: "INVALID_PARAMETER",
390 0x0025: "INVALID_NETMASK",
391 0x0026: "FLASH_WRITE_LIMIT_EXCEEDED",
392 0x0027: "INVALID_IMAGE_LENGTH",
393 0x0028: "INVALID_IMAGE_SIGNATURE",
394 0x0029: "PROPOSE_ANOTHER_VERSION",
395 0x002A: "INVALID_PID_FORMAT",
396 0x002B: "INVALID_PPS_FORMAT",
397 0x002C: "BIST_COMMAND_BLOCKED",
398 0x002D: "CONNECTION_FAILED",
399 0x002E: "CONNECTION_TOO_MANY",
400 0x002F: "RNG_GENERATION_IN_PROGRESS",
401 0x0030: "RNG_NOT_READY",
402 0x0031: "CERTIFICATE_NOT_READY",
403 0x0400: "DISABLED_BY_POLICY",
404 0x0800: "NETWORK_IF_ERROR_BASE",
405 0x0801: "UNSUPPORTED_OEM_NUMBER",
406 0x0802: "UNSUPPORTED_BOOT_OPTION",
407 0x0803: "INVALID_COMMAND",
408 0x0804: "INVALID_SPECIAL_COMMAND",
409 0x0805: "INVALID_HANDLE",
410 0x0806: "INVALID_PASSWORD",
411 0x0807: "INVALID_REALM",
412 0x0808: "STORAGE_ACL_ENTRY_IN_USE",
413 0x0809: "DATA_MISSING",
414 0x080A: "DUPLICATE",
415 0x080B: "EVENTLOG_FROZEN",
416 0x080C: "PKI_MISSING_KEYS",
417 0x080D: "PKI_GENERATING_KEYS",
418 0x080E: "INVALID_KEY",
419 0x080F: "INVALID_CERT",
420 0x0810: "CERT_KEY_NOT_MATCH",
421 0x0811: "MAX_KERB_DOMAIN_REACHED",
422 0x0812: "UNSUPPORTED",
423 0x0813: "INVALID_PRIORITY",
424 0x0814: "NOT_FOUND",
425 0x0815: "INVALID_CREDENTIALS",
426 0x0816: "INVALID_PASSPHRASE",
427 0x0818: "NO_ASSOCIATION",
428 0x081B: "AUDIT_FAIL",
429 0x081C: "BLOCKING_COMPONENT",
430 0x0821: "USER_CONSENT_REQUIRED",
431 0x1000: "APP_INTERNAL_ERROR",
432 0x1001: "NOT_INITIALIZED",
433 0x1002: "LIB_VERSION_UNSUPPORTED",
434 0x1003: "INVALID_PARAM",
435 0x1004: "RESOURCES",
436 0x1005: "HARDWARE_ACCESS_ERROR",
437 0x1006: "REQUESTOR_NOT_REGISTERED",
438 0x1007: "NETWORK_ERROR",
439 0x1008: "PARAM_BUFFER_TOO_SHORT",
440 0x1009: "COM_NOT_INITIALIZED_IN_THREAD",
441 0x100A: "URL_REQUIRED"
442 }
443
444 //
445 // Methods used for getting the event log
446 //
447
448 obj.GetMessageLog = function (func, tag) {
449 obj.AMT_MessageLog_PositionToFirstRecord(_GetMessageLog0, [func, tag, []]);
450 }
451 function _GetMessageLog0(stack, name, responses, status, tag) {
452 if (status != 200 || responses.Body["ReturnValue"] != '0') { tag[0](obj, null, tag[2]); return; }
453 obj.AMT_MessageLog_GetRecords(responses.Body["IterationIdentifier"], 390, _GetMessageLog1, tag);
454 }
455 function _GetMessageLog1(stack, name, responses, status, tag) {
456 if (status != 200 || responses.Body["ReturnValue"] != '0') { tag[0](obj, null, tag[2]); return; }
457 var i, j, x, e, AmtMessages = tag[2], t = new Date(), TimeStamp, ra = responses.Body["RecordArray"];
458 if (typeof ra === 'string') { responses.Body["RecordArray"] = [responses.Body["RecordArray"]]; }
459
460 for (i in ra) {
461 e = null;
462 try { e = window.atob(ra[i]); } catch (ex) { }
463 if (e != null) {
464 TimeStamp = ReadIntX(e, 0);
465 if ((TimeStamp > 0) && (TimeStamp < 0xFFFFFFFF)) {
466 x = { 'DeviceAddress': e.charCodeAt(4), 'EventSensorType': e.charCodeAt(5), 'EventType': e.charCodeAt(6), 'EventOffset': e.charCodeAt(7), 'EventSourceType': e.charCodeAt(8), 'EventSeverity': e.charCodeAt(9), 'SensorNumber': e.charCodeAt(10), 'Entity': e.charCodeAt(11), 'EntityInstance': e.charCodeAt(12), 'EventData': [], 'Time': new Date((TimeStamp + (t.getTimezoneOffset() * 60)) * 1000) };
467 for (j = 13; j < 21; j++) { x['EventData'].push(e.charCodeAt(j)); }
468 x['EntityStr'] = _SystemEntityTypes[x['Entity']];
469 x['Desc'] = _GetEventDetailStr(x['EventSensorType'], x['EventOffset'], x['EventData'], x['Entity']);
470 if (!x['EntityStr']) x['EntityStr'] = "Unknown";
471 AmtMessages.push(x);
472 }
473 }
474 }
475
476 if (responses.Body["NoMoreRecords"] != true) { obj.AMT_MessageLog_GetRecords(responses.Body["IterationIdentifier"], 390, _GetMessageLog1, [tag[0], AmtMessages, tag[2]]); } else { tag[0](obj, AmtMessages, tag[2]); }
477 }
478
479 var _EventTrapSourceTypes = "Platform firmware (e.g. BIOS)|SMI handler|ISV system management software|Alert ASIC|IPMI|BIOS vendor|System board set vendor|System integrator|Third party add-in|OSV|NIC|System management card".split('|');
480 var _SystemFirmwareError = "Unspecified.|No system memory is physically installed in the system.|No usable system memory, all installed memory has experienced an unrecoverable failure.|Unrecoverable hard-disk/ATAPI/IDE device failure.|Unrecoverable system-board failure.|Unrecoverable diskette subsystem failure.|Unrecoverable hard-disk controller failure.|Unrecoverable PS/2 or USB keyboard failure.|Removable boot media not found.|Unrecoverable video controller failure.|No video device detected.|Firmware (BIOS) ROM corruption detected.|CPU voltage mismatch (processors that share same supply have mismatched voltage requirements)|CPU speed matching failure".split('|');
481 var _SystemFirmwareProgress = "Unspecified.|Memory initialization.|Starting hard-disk initialization and test|Secondary processor(s) initialization|User authentication|User-initiated system setup|USB resource configuration|PCI resource configuration|Option ROM initialization|Video initialization|Cache initialization|SM Bus initialization|Keyboard controller initialization|Embedded controller/management controller initialization|Docking station attachment|Enabling docking station|Docking station ejection|Disabling docking station|Calling operating system wake-up vector|Starting operating system boot process|Baseboard or motherboard initialization|reserved|Floppy initialization|Keyboard test|Pointing device test|Primary processor initialization".split('|');
482 var _SystemEntityTypes = "Unspecified|Other|Unknown|Processor|Disk|Peripheral|System management module|System board|Memory module|Processor module|Power supply|Add in card|Front panel board|Back panel board|Power system board|Drive backplane|System internal expansion board|Other system board|Processor board|Power unit|Power module|Power management board|Chassis back panel board|System chassis|Sub chassis|Other chassis board|Disk drive bay|Peripheral bay|Device bay|Fan cooling|Cooling unit|Cable interconnect|Memory device|System management software|BIOS|Intel(r) ME|System bus|Group|Intel(r) ME|External environment|Battery|Processing blade|Connectivity switch|Processor/memory module|I/O module|Processor I/O module|Management controller firmware|IPMI channel|PCI bus|PCI express bus|SCSI bus|SATA/SAS bus|Processor front side bus".split('|');
483 obj.RealmNames = "||Redirection|PT Administration|Hardware Asset|Remote Control|Storage|Event Manager|Storage Admin|Agent Presence Local|Agent Presence Remote|Circuit Breaker|Network Time|General Information|Firmware Update|EIT|LocalUN|Endpoint Access Control|Endpoint Access Control Admin|Event Log Reader|Audit Log|ACL Realm|||Local System".split('|');
484 obj.WatchdogCurrentStates = { 1: 'Not Started', 2: 'Stopped', 4: 'Running', 8: 'Expired', 16: 'Suspended' };
485
486 function _GetEventDetailStr(eventSensorType, eventOffset, eventDataField, entity) {
487
488 if (eventSensorType == 15)
489 {
490 if (eventDataField[0] == 235) return "Invalid Data";
491 if (eventOffset == 0) return _SystemFirmwareError[eventDataField[1]];
492 return _SystemFirmwareProgress[eventDataField[1]];
493 }
494
495 if (eventSensorType == 18 && eventDataField[0] == 170) // System watchdog event
496 {
497 return "Agent watchdog " + char2hex(eventDataField[4]) + char2hex(eventDataField[3]) + char2hex(eventDataField[2]) + char2hex(eventDataField[1]) + "-" + char2hex(eventDataField[6]) + char2hex(eventDataField[5]) + "-... changed to " + obj.WatchdogCurrentStates[eventDataField[7]];
498 }
499
500 /*
501 if (eventSensorType == 5 && eventOffset == 0) // System chassis
502 {
503 return "Case intrusion";
504 }
505
506 if (eventSensorType == 192 && eventOffset == 0 && eventDataField[0] == 170 && eventDataField[1] == 48)
507 {
508 if (eventDataField[2] == 0) return "A remote Serial Over LAN session was established.";
509 if (eventDataField[2] == 1) return "Remote Serial Over LAN session finished. User control was restored.";
510 if (eventDataField[2] == 2) return "A remote IDE-Redirection session was established.";
511 if (eventDataField[2] == 3) return "Remote IDE-Redirection session finished. User control was restored.";
512 }
513
514 if (eventSensorType == 36)
515 {
516 long handle = ((long)(eventDataField[1]) << 24) + ((long)(eventDataField[2]) << 16) + ((long)(eventDataField[3]) << 8) + (long)(eventDataField[4]);
517 string nic = string.Format("#{0}", eventDataField[0]);
518 if (eventDataField[0] == 0xAA) nic = "wired"; // TODO: Add wireless *****
519 //if (eventDataField[0] == 0xAA) nic = "wireless";
520
521 if (handle == 4294967293) { return string.Format("All received packet filter was matched on {0} interface.", nic); }
522 if (handle == 4294967292) { return string.Format("All outbound packet filter was matched on {0} interface.", nic); }
523 if (handle == 4294967290) { return string.Format("Spoofed packet filter was matched on {0} interface.", nic); }
524 return string.Format("Filter {0} was matched on {1} interface.", handle, nic);
525 }
526
527 if (eventSensorType == 192)
528 {
529 if (eventDataField[2] == 0) return "Security policy invoked. Some or all network traffic (TX) was stopped.";
530 if (eventDataField[2] == 2) return "Security policy invoked. Some or all network traffic (RX) was stopped.";
531 return "Security policy invoked.";
532 }
533
534 if (eventSensorType == 193)
535 {
536 if (eventDataField[0] == 0xAA && eventDataField[1] == 0x30 && eventDataField[2] == 0x00 && eventDataField[3] == 0x00) { return "User request for remote connection."; }
537 if (eventDataField[0] == 0xAA && eventDataField[1] == 0x20 && eventDataField[2] == 0x03 && eventDataField[3] == 0x01) { return "EAC error: attempt to get posture while NAC in Intel® AMT is disabled."; // eventDataField = 0xAA20030100000000 }
538 if (eventDataField[0] == 0xAA && eventDataField[1] == 0x20 && eventDataField[2] == 0x04 && eventDataField[3] == 0x00) { return "Certificate revoked. "; }
539 }
540 */
541
542 if (eventSensorType == 6) return "Authentication failed " + (eventDataField[1] + (eventDataField[2] << 8)) + " times. The system may be under attack.";
543 if (eventSensorType == 30) return "No bootable media";
544 if (eventSensorType == 32) return "Operating system lockup or power interrupt";
545 if (eventSensorType == 35) {
546 if (eventDataField[0] == 64) return "BIOS POST (Power On Self-Test) Watchdog Timeout."; // 64,2,252,84,89,0,0,0
547 return "System boot failure";
548 }
549 if (eventSensorType == 37) return "System firmware started (at least one CPU is properly executing).";
550 return "Unknown Sensor Type #" + eventSensorType;
551 }
552
553// ###BEGIN###{AuditLog}
554
555 // Useful link: https://software.intel.com/sites/manageability/AMT_Implementation_and_Reference_Guide/default.htm?turl=WordDocuments%2Fsecurityadminevents.htm
556
557 var _AmtAuditStringTable =
558 {
559 16: 'Security Admin',
560 17: 'RCO',
561 18: 'Redirection Manager',
562 19: 'Firmware Update Manager',
563 20: 'Security Audit Log',
564 21: 'Network Time',
565 22: 'Network Administration',
566 23: 'Storage Administration',
567 24: 'Event Manager',
568 25: 'Circuit Breaker Manager',
569 26: 'Agent Presence Manager',
570 27: 'Wireless Configuration',
571 28: 'EAC',
572 29: 'KVM',
573 30: 'User Opt-In Events',
574 32: 'Screen Blanking',
575 33: 'Watchdog Events',
576 1600: 'Provisioning Started',
577 1601: 'Provisioning Completed',
578 1602: 'ACL Entry Added',
579 1603: 'ACL Entry Modified',
580 1604: 'ACL Entry Removed',
581 1605: 'ACL Access with Invalid Credentials',
582 1606: 'ACL Entry State',
583 1607: 'TLS State Changed',
584 1608: 'TLS Server Certificate Set',
585 1609: 'TLS Server Certificate Remove',
586 1610: 'TLS Trusted Root Certificate Added',
587 1611: 'TLS Trusted Root Certificate Removed',
588 1612: 'TLS Preshared Key Set',
589 1613: 'Kerberos Settings Modified',
590 1614: 'Kerberos Main Key Modified',
591 1615: 'Flash Wear out Counters Reset',
592 1616: 'Power Package Modified',
593 1617: 'Set Realm Authentication Mode',
594 1618: 'Upgrade Client to Admin Control Mode',
595 1619: 'Unprovisioning Started',
596 1700: 'Performed Power Up',
597 1701: 'Performed Power Down',
598 1702: 'Performed Power Cycle',
599 1703: 'Performed Reset',
600 1704: 'Set Boot Options',
601 1800: 'IDER Session Opened',
602 1801: 'IDER Session Closed',
603 1802: 'IDER Enabled',
604 1803: 'IDER Disabled',
605 1804: 'SoL Session Opened',
606 1805: 'SoL Session Closed',
607 1806: 'SoL Enabled',
608 1807: 'SoL Disabled',
609 1808: 'KVM Session Started',
610 1809: 'KVM Session Ended',
611 1810: 'KVM Enabled',
612 1811: 'KVM Disabled',
613 1812: 'VNC Password Failed 3 Times',
614 1900: 'Firmware Updated',
615 1901: 'Firmware Update Failed',
616 2000: 'Security Audit Log Cleared',
617 2001: 'Security Audit Policy Modified',
618 2002: 'Security Audit Log Disabled',
619 2003: 'Security Audit Log Enabled',
620 2004: 'Security Audit Log Exported',
621 2005: 'Security Audit Log Recovered',
622 2100: 'Intel&reg; ME Time Set',
623 2200: 'TCPIP Parameters Set',
624 2201: 'Host Name Set',
625 2202: 'Domain Name Set',
626 2203: 'VLAN Parameters Set',
627 2204: 'Link Policy Set',
628 2205: 'IPv6 Parameters Set',
629 2300: 'Global Storage Attributes Set',
630 2301: 'Storage EACL Modified',
631 2302: 'Storage FPACL Modified',
632 2303: 'Storage Write Operation',
633 2400: 'Alert Subscribed',
634 2401: 'Alert Unsubscribed',
635 2402: 'Event Log Cleared',
636 2403: 'Event Log Frozen',
637 2500: 'CB Filter Added',
638 2501: 'CB Filter Removed',
639 2502: 'CB Policy Added',
640 2503: 'CB Policy Removed',
641 2504: 'CB Default Policy Set',
642 2505: 'CB Heuristics Option Set',
643 2506: 'CB Heuristics State Cleared',
644 2600: 'Agent Watchdog Added',
645 2601: 'Agent Watchdog Removed',
646 2602: 'Agent Watchdog Action Set',
647 2700: 'Wireless Profile Added',
648 2701: 'Wireless Profile Removed',
649 2702: 'Wireless Profile Updated',
650 2800: 'EAC Posture Signer SET',
651 2801: 'EAC Enabled',
652 2802: 'EAC Disabled',
653 2803: 'EAC Posture State',
654 2804: 'EAC Set Options',
655 2900: 'KVM Opt-in Enabled',
656 2901: 'KVM Opt-in Disabled',
657 2902: 'KVM Password Changed',
658 2903: 'KVM Consent Succeeded',
659 2904: 'KVM Consent Failed',
660 3000: 'Opt-In Policy Change',
661 3001: 'Send Consent Code Event',
662 3002: 'Start Opt-In Blocked Event'
663 }
664
665 // Return human readable extended audit log data
666 // TODO: Just put some of them here, but many more still need to be added, helpful link here:
667 // https://software.intel.com/sites/manageability/AMT_Implementation_and_Reference_Guide/default.htm?turl=WordDocuments%2Fsecurityadminevents.htm
668 obj.GetAuditLogExtendedDataStr = function (id, data) {
669 if ((id == 1602 || id == 1604) && data.charCodeAt(0) == 0) { return data.substring(2, 2 + data.charCodeAt(1)); } // ACL Entry Added/Removed (Digest)
670 if (id == 1603) { if (data.charCodeAt(1) == 0) { return data.substring(3); } return null; } // ACL Entry Modified
671 if (id == 1605) { return ["Invalid ME access", "Invalid MEBx access"][data.charCodeAt(0)]; } // ACL Access with Invalid Credentials
672 if (id == 1606) { var r = ["Disabled", "Enabled"][data.charCodeAt(0)]; if (data.charCodeAt(1) == 0) { r += ", " + data.substring(3); } return r;} // ACL Entry State
673 if (id == 1607) { return "Remote " + ["NoAuth", "ServerAuth", "MutualAuth"][data.charCodeAt(0)] + ", Local " + ["NoAuth", "ServerAuth", "MutualAuth"][data.charCodeAt(1)]; } // TLS State Changed
674 if (id == 1617) { return obj.RealmNames[ReadInt(data, 0)] + ", " + ["NoAuth", "Auth", "Disabled"][data.charCodeAt(4)]; } // Set Realm Authentication Mode
675 if (id == 1619) { return ["BIOS", "MEBx", "Local MEI", "Local WSMAN", "Remote WSAMN"][data.charCodeAt(0)]; } // Intel AMT Unprovisioning Started
676 if (id == 1900) { return "From " + ReadShort(data, 0) + "." + ReadShort(data, 2) + "." + ReadShort(data, 4) + "." + ReadShort(data, 6) + " to " + ReadShort(data, 8) + "." + ReadShort(data, 10) + "." + ReadShort(data, 12) + "." + ReadShort(data, 14); } // Firmware Updated
677 if (id == 2100) { var t4 = new Date(); t4.setTime(ReadInt(data, 0) * 1000 + (new Date().getTimezoneOffset() * 60000)); return t4.toLocaleString(); } // Intel AMT Time Set
678 if (id == 3000) { return "From " + ["None", "KVM", "All"][data.charCodeAt(0)] + " to " + ["None", "KVM", "All"][data.charCodeAt(1)]; } // Opt-In Policy Change
679 if (id == 3001) { return ["Success", "Failed 3 times"][data.charCodeAt(0)]; } // Send Consent Code Event
680 return null;
681 }
682
683 obj.GetAuditLog = function (func) {
684 obj.AMT_AuditLog_ReadRecords(1, _GetAuditLog0, [func, []]);
685 }
686
687 function _GetAuditLog0(stack, name, responses, status, tag) {
688 if (status != 200) { tag[0](obj, [], status); return; }
689 var ptr, i, e, x, r = tag[1], t = new Date(), TimeStamp;
690
691 if (responses.Body['RecordsReturned'] > 0) {
692 responses.Body['EventRecords'] = MakeToArray(responses.Body['EventRecords']);
693
694 for (i in responses.Body['EventRecords']) {
695 e = null;
696 try {
697 e = window.atob(responses.Body['EventRecords'][i]);
698 } catch (e) {
699 console.log(e + " " + responses.Body['EventRecords'][i])
700 }
701 x = { 'AuditAppID': ReadShort(e, 0), 'EventID': ReadShort(e, 2), 'InitiatorType': e.charCodeAt(4) };
702 x['AuditApp'] = _AmtAuditStringTable[x['AuditAppID']];
703 x['Event'] = _AmtAuditStringTable[(x['AuditAppID'] * 100) + x['EventID']];
704 if (!x['Event']) x['Event'] = '#' + x['EventID'];
705
706 // Read and process the initiator
707 if (x['InitiatorType'] == 0) {
708 // HTTP digest
709 var userlen = e.charCodeAt(5);
710 x['Initiator'] = e.substring(6, 6 + userlen);
711 ptr = 6 + userlen;
712 }
713 if (x['InitiatorType'] == 1) {
714 // Kerberos
715 x['KerberosUserInDomain'] = ReadInt(e, 5);
716 var userlen = e.charCodeAt(9);
717 x['Initiator'] = GetSidString(e.substring(10, 10 + userlen));
718 ptr = 10 + userlen;
719 }
720 if (x['InitiatorType'] == 2) {
721 // Local
722 x['Initiator'] = '<i>Local</i>';
723 ptr = 5;
724 }
725 if (x['InitiatorType'] == 3) {
726 // KVM Default Port
727 x['Initiator'] = '<i>KVM Default Port</i>';
728 ptr = 5;
729 }
730
731 // Read timestamp
732 TimeStamp = ReadInt(e, ptr);
733 x['Time'] = new Date((TimeStamp + (t.getTimezoneOffset() * 60)) * 1000);
734 ptr += 4;
735
736 // Read network access
737 x['MCLocationType'] = e.charCodeAt(ptr++);
738 var netlen = e.charCodeAt(ptr++);
739 x['NetAddress'] = e.substring(ptr, ptr + netlen);
740
741 // Read extended data
742 ptr += netlen;
743 var exlen = e.charCodeAt(ptr++);
744 x['Ex'] = e.substring(ptr, ptr + exlen);
745 x['ExStr'] = obj.GetAuditLogExtendedDataStr((x['AuditAppID'] * 100) + x['EventID'], x['Ex']);
746
747 r.push(x);
748 }
749 }
750 if (responses.Body['TotalRecordCount'] > r.length) {
751 obj.AMT_AuditLog_ReadRecords(r.length + 1, _GetAuditLog0, [tag[0], r]);
752 } else {
753 tag[0](obj, r, status);
754 }
755 }
756
757 // ###END###{AuditLog}
758
759 return obj;
760}
761
762
763// ###BEGIN###{Certificates}
764
765// Forge MD5
766function hex_md5(str) { if (str == null) { str = ''; } return forge.md.md5.create().update(str).digest().toHex(); }
767
768// ###END###{Certificates}
769
770// ###BEGIN###{!Certificates}
771
772// TinyMD5 from https://github.com/jbt/js-crypto
773
774// Perform MD5 setup
775var md5_k = [];
776for (var i = 0; i < 64;) { md5_k[i] = 0 | (Math.abs(Math.sin(++i)) * 4294967296); }
777
778// Perform MD5 on raw string and return hex
779function hex_md5(str) {
780 if (str == null) { str = ''; }
781 var b, c, d, j,
782 x = [],
783 str2 = unescape(encodeURI(str)),
784 a = str2.length,
785 h = [b = 1732584193, c = -271733879, ~b, ~c],
786 i = 0;
787
788 for (; i <= a;) x[i >> 2] |= (str2.charCodeAt(i) || 128) << 8 * (i++ % 4);
789
790 x[str = (a + 8 >> 6) * 16 + 14] = a * 8;
791 i = 0;
792
793 for (; i < str; i += 16) {
794 a = h; j = 0;
795 for (; j < 64;) {
796 a = [
797 d = a[3],
798 ((b = a[1] | 0) +
799 ((d = (
800 (a[0] +
801 [
802 b & (c = a[2]) | ~b & d,
803 d & b | ~d & c,
804 b ^ c ^ d,
805 c ^ (b | ~d)
806 ][a = j >> 4]
807 ) +
808 (md5_k[j] +
809 (x[[
810 j,
811 5 * j + 1,
812 3 * j + 5,
813 7 * j
814 ][a] % 16 + i] | 0)
815 )
816 )) << (a = [
817 7, 12, 17, 22,
818 5, 9, 14, 20,
819 4, 11, 16, 23,
820 6, 10, 15, 21
821 ][4 * a + j++ % 4]) | d >>> 32 - a)
822 ),
823 b,
824 c
825 ];
826 }
827 for (j = 4; j;) h[--j] = h[j] + a[j];
828 }
829
830 str = '';
831 for (; j < 32;) str += ((h[j >> 3] >> ((1 ^ j++ & 7) * 4)) & 15).toString(16);
832 return str;
833}
834
835// ###END###{!Certificates}
836
837// Perform MD5 on raw string and return raw string result
838function rstr_md5(str) { return hex2rstr(hex_md5(str)); }
839
840/*
841Convert arguments into selector set and body XML. Used by AMT_WiFiPortConfigurationService_UpdateWiFiSettings.
842args = {
843 "WiFiEndpoint": {
844 __parameterType: 'reference',
845 __resourceUri: 'http://schemas.dmtf.org/wbem/wscim/1/cim-schema/2/CIM_WiFiEndpoint',
846 Name: 'WiFi Endpoint 0'
847 },
848 "WiFiEndpointSettingsInput":
849 {
850 __parameterType: 'instance',
851 __namespace: 'http://schemas.dmtf.org/wbem/wscim/1/cim-schema/2/CIM_WiFiEndpointSettings',
852 ElementName: document.querySelector('#editProfile-profileName').value,
853 InstanceID: 'Intel(r) AMT:WiFi Endpoint Settings ' + document.querySelector('#editProfile-profileName').value,
854 AuthenticationMethod: document.querySelector('#editProfile-networkAuthentication').value,
855 //BSSType: 3, // Intel(r) AMT supports only infrastructure networks
856 EncryptionMethod: document.querySelector('#editProfile-encryption').value,
857 SSID: document.querySelector('#editProfile-networkName').value,
858 Priority: 100,
859 PSKPassPhrase: document.querySelector('#editProfile-passPhrase').value
860 },
861 "IEEE8021xSettingsInput": null,
862 "ClientCredential": null,
863 "CACredential": null
864},
865*/
866function execArgumentsToXml(args) {
867 if(args === undefined || args === null) return null;
868
869 var result = '';
870 for(var argName in args) {
871 var arg = args[argName];
872 if(!arg) continue;
873 if(arg['__parameterType'] === 'reference') result += referenceToXml(argName, arg);
874 else result += instanceToXml(argName, arg);
875 //if(arg['__isInstance']) result += instanceToXml(argName, arg);
876 }
877 return result;
878}
879
880/**
881 * Convert JavaScript object into XML
882
883 <r:WiFiEndpointSettingsInput xmlns:q="http://schemas.dmtf.org/wbem/wscim/1/cim-schema/2/CIM_WiFiEndpointSettings">
884 <q:ElementName>Wireless-Profile-Admin</q:ElementName>
885 <q:InstanceID>Intel(r) AMT:WiFi Endpoint Settings Wireless-Profile-Admin</q:InstanceID>
886 <q:AuthenticationMethod>6</q:AuthenticationMethod>
887 <q:EncryptionMethod>4</q:EncryptionMethod>
888 <q:Priority>100</q:Priority>
889 <q:PSKPassPhrase>P@ssw0rd</q:PSKPassPhrase>
890 </r:WiFiEndpointSettingsInput>
891 */
892function instanceToXml(instanceName, inInstance) {
893 if(inInstance === undefined || inInstance === null) return null;
894
895 var hasNamespace = !!inInstance['__namespace'];
896 var startTag = hasNamespace ? '<q:' : '<';
897 var endTag = hasNamespace ? '</q:' : '</';
898 var namespaceDef = hasNamespace ? (' xmlns:q="' + inInstance['__namespace'] + '"' ): '';
899 var result = '<r:' + instanceName + namespaceDef + '>';
900 if (typeof inInstance == 'string') {
901 result += inInstance;
902 } else {
903 for (var prop in inInstance) {
904 if (!inInstance.hasOwnProperty(prop) || prop.indexOf('__') === 0) continue;
905
906 if (typeof inInstance[prop] === 'function' || Array.isArray(inInstance[prop])) continue;
907
908 if (typeof inInstance[prop] === 'object') {
909 //result += startTag + prop +'>' + instanceToXml('prop', inInstance[prop]) + endTag + prop +'>';
910 console.error('only convert one level down...');
911 }
912 else {
913 result += startTag + prop + '>' + inInstance[prop].toString() + endTag + prop + '>';
914 }
915 }
916 }
917 result += '</r:' + instanceName + '>';
918 return result;
919}
920
921
922/**
923 * Convert a selector set into XML. Expect no nesting.
924 * {
925 * selectorName : selectorValue,
926 * selectorName : selectorValue,
927 * ... ...
928 * }
929
930 <r:WiFiEndpoint>
931 <a:Address>http://192.168.1.103:16992/wsman</a:Address>
932 <a:ReferenceParameters>
933 <w:ResourceURI>http://schemas.dmtf.org/wbem/wscim/1/cim-schema/2/CIM_WiFiEndpoint</w:ResourceURI>
934 <w:SelectorSet>
935 <w:Selector Name="Name">WiFi Endpoint 0</w:Selector>
936 </w:SelectorSet>
937 </a:ReferenceParameters>
938 </r:WiFiEndpoint>
939
940 */
941function referenceToXml(referenceName, inReference) {
942 if(inReference === undefined || inReference === null ) return null;
943
944 var result = '<r:' + referenceName + '><a:Address>/wsman</a:Address><a:ReferenceParameters><w:ResourceURI>'+ inReference['__resourceUri']+'</w:ResourceURI><w:SelectorSet>';
945 for(var selectorName in inReference) {
946 if (!inReference.hasOwnProperty(selectorName) || selectorName.indexOf('__') === 0) continue;
947
948 if (typeof inReference[selectorName] === 'function' ||
949 typeof inReference[selectorName] === 'object' ||
950 Array.isArray(inReference[selectorName]) )
951 continue;
952
953 result += '<w:Selector Name="' + selectorName +'">' + inReference[selectorName].toString() + '</w:Selector>';
954 }
955
956 result += '</w:SelectorSet></a:ReferenceParameters></r:' + referenceName + '>';
957 return result;
958}
959
960// Convert a byte array of SID into string
961function GetSidString(sid) {
962 var r = "S-" + sid.charCodeAt(0) + "-" + sid.charCodeAt(7);
963 for (var i = 2; i < (sid.length / 4) ; i++) r += "-" + ReadIntX(sid, i * 4);
964 return r;
965}
966
967// Convert a SID readable string into bytes
968function GetSidByteArray(sidString) {
969 if (!sidString || sidString == null) return null;
970 var sidParts = sidString.split('-');
971
972 // Make sure the SID has at least 4 parts and starts with 'S'
973 if (sidParts.length < 4 || (sidParts[0] != 's' && sidParts[0] != 'S')) return null;
974
975 // Check that each part of the SID is really an integer
976 for (var i = 1; i < sidParts.length; i++) { var y = parseInt(sidParts[i]); if (y != sidParts[i]) return null; sidParts[i] = y; }
977
978 // Version (8 bit) + Id count (8 bit) + 48 bit in big endian -- DO NOT use bitwise right shift operator. JavaScript converts the number into a 32 bit integer before shifting. In real world, it's highly likely this part is always 0.
979 var r = String.fromCharCode(sidParts[1]) + String.fromCharCode(sidParts.length - 3) + ShortToStr(Math.floor(sidParts[2] / Math.pow(2, 32))) + IntToStr((sidParts[2]) & 0xFFFF);
980
981 // the rest are in 32 bit in little endian
982 for (var i = 3; i < sidParts.length; i++) r += IntToStrX(sidParts[i]);
983 return r;
984}