Estructura inicial del proyecto

This commit is contained in:
2026-06-02 16:57:08 +00:00
commit 8b306b9afc
9864 changed files with 1435687 additions and 0 deletions

23
backend/node_modules/tedious/lib/ntlm-payload.d.ts generated vendored Normal file
View File

@ -0,0 +1,23 @@
interface Options {
domain: string;
userName: string;
password: string;
ntlmpacket: {
target: Buffer;
nonce: Buffer;
};
}
declare class NTLMResponsePayload {
data: Buffer;
constructor(loginData: Options);
toString(indent?: string): string;
createResponse(challenge: Options): Buffer<ArrayBufferLike>;
createClientNonce(): Buffer<ArrayBuffer>;
ntlmv2Response(domain: string, user: string, password: string, serverNonce: Buffer, targetInfo: Buffer, clientNonce: Buffer, mytime: number): Buffer<ArrayBufferLike>;
createTimestamp(time: number): Buffer<ArrayBuffer>;
lmv2Response(domain: string, user: string, password: string, serverNonce: Buffer, clientNonce: Buffer): Buffer<ArrayBuffer>;
ntv2Hash(domain: string, user: string, password: string): Buffer<ArrayBufferLike>;
ntHash(text: string): Buffer<ArrayBuffer>;
hmacMD5(data: Buffer, key: Buffer): Buffer<ArrayBufferLike>;
}
export default NTLMResponsePayload;