ntlm-parser
Version:
Check and understand the content of a NTLM message
11 lines • 582 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.NTLMMessageType = void 0;
var NTLMMessageType;
(function (NTLMMessageType) {
NTLMMessageType["NEGOTIATE_MESSAGE"] = "NEGOTIATE_MESSAGE (type 1)";
NTLMMessageType["CHALLENGE_MESSAGE"] = "CHALLENGE_MESSAGE (type 2)";
NTLMMessageType["AUTHENTICATE_MESSAGE"] = "NEGOTIATE_MESSAGE (type 3)";
NTLMMessageType["UNKNOWN"] = "unknown (or not yet implemented)";
})(NTLMMessageType = exports.NTLMMessageType || (exports.NTLMMessageType = {}));
//# sourceMappingURL=interfaces.js.map