aboutsummaryrefslogtreecommitdiff
path: root/Exfiltration/mimikatz-1.0/mimikatz/modules/mod_mimikatz_divers.h
blob: 9bfcf9f7fb4b59a31fb33d272ec0966e4492e832 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/*	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_process.h"
#include "mod_patch.h"
#include "mod_secacl.h"
#include "mod_text.h"
#include "mod_crypto.h"
#include <iostream>
#include <wincred.h>
#include "..\global.h"

class mod_mimikatz_divers
{
public:
	static vector<KIWI_MIMIKATZ_LOCAL_MODULE_COMMAND> getMimiKatzCommands();

	static bool cancelator(vector<wstring> * arguments);
	static bool noroutemon(vector<wstring> * arguments);
	static bool eventdrop(vector<wstring> * arguments);
	static bool secrets(vector<wstring> * arguments);
	static bool nodetour(vector<wstring> * arguments);
	static bool pitme(vector<wstring> * arguments);
};