aboutsummaryrefslogtreecommitdiff
path: root/Exfiltration/mimikatz-1.0/mimikatz/modules/mod_mimikatz_privilege.h
blob: f3dc739b647cbe10881e4bded6a7a0b4b1d0219d (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
31
32
33
/*	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_system.h"
#include "mod_privilege.h"
#include <iostream>

class mod_mimikatz_privilege
{
private:
	static bool multiplePrivs(vector<wstring> * privs, DWORD type);
	static bool simplePriv(wstring priv, vector<wstring> * arguments);
public:
	static vector<KIWI_MIMIKATZ_LOCAL_MODULE_COMMAND> getMimiKatzCommands();
		
	static bool list(vector<wstring> * arguments);
	static bool enable(vector<wstring> * arguments);
	static bool remove(vector<wstring> * arguments);
	static bool disable(vector<wstring> * arguments);

	static bool debug(vector<wstring> * arguments);
	static bool security(vector<wstring> * arguments);
	static bool tcb(vector<wstring> * arguments);
	static bool impersonate(vector<wstring> * arguments);
	static bool assign(vector<wstring> * arguments);
	static bool shutdown(vector<wstring> * arguments);
	static bool takeowner(vector<wstring> * arguments);

};