blob: 96ac879bb9d3a9f823532742163feadc3c89baaa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/* Benjamin DELPY `gentilkiwi`
http://blog.gentilkiwi.com
benjamin@gentilkiwi.com
Licence : http://creativecommons.org/licenses/by/3.0/fr/
*/
#pragma once
#include "globdefs.h"
#include "mod_hash.h"
#include <iostream>
class mod_mimikatz_hash
{
public:
static vector<KIWI_MIMIKATZ_LOCAL_MODULE_COMMAND> getMimiKatzCommands();
static bool lm(vector<wstring> * arguments);
static bool ntlm(vector<wstring> * arguments);
};
|