Added 'LM Hash' opertaion

This commit is contained in:
n1474335 2022-10-15 00:13:39 +01:00
parent d6344760ec
commit 142f91425c
8 changed files with 91 additions and 14 deletions

View file

@ -9,14 +9,26 @@ import TestRegister from "../../lib/TestRegister.mjs";
TestRegister.addTests([
{
name: "NTLM Hashing",
name: "NT Hash",
input: "QWERTYUIOPASDFGHJKLZXCVBNM1234567890!@#$%^&*()_+.,?/",
expectedOutput: "C5FA1C40E55734A8E528DBFE21766D23",
recipeConfig: [
{
op: "NTLM",
op: "NT Hash",
args: [],
},
],
}
},
{
name: "LM Hash",
input: "QWERTYUIOPASDFGHJKLZXCVBNM1234567890!@#$%^&*()_+.,?/",
expectedOutput: "6D9DF16655336CA75A3C13DD18BA8156",
recipeConfig: [
{
op: "LM Hash",
args: [],
},
],
},
]);