aboutsummaryrefslogtreecommitdiff
path: root/Exfiltration/mimikatz-1.0/mimikatz/modules/mod_mimikatz_thread.h
diff options
context:
space:
mode:
Diffstat (limited to 'Exfiltration/mimikatz-1.0/mimikatz/modules/mod_mimikatz_thread.h')
-rw-r--r--Exfiltration/mimikatz-1.0/mimikatz/modules/mod_mimikatz_thread.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/Exfiltration/mimikatz-1.0/mimikatz/modules/mod_mimikatz_thread.h b/Exfiltration/mimikatz-1.0/mimikatz/modules/mod_mimikatz_thread.h
new file mode 100644
index 0000000..fd072bf
--- /dev/null
+++ b/Exfiltration/mimikatz-1.0/mimikatz/modules/mod_mimikatz_thread.h
@@ -0,0 +1,27 @@
+/* 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_thread.h"
+#include <iostream>
+#include <iomanip>
+
+class mod_mimikatz_thread
+{
+private:
+public:
+ static vector<KIWI_MIMIKATZ_LOCAL_MODULE_COMMAND> getMimiKatzCommands();
+
+ static bool list(vector<wstring> * arguments);
+ //static bool start(vector<wstring> * arguments);
+ static bool suspend(vector<wstring> * arguments);
+ static bool resume(vector<wstring> * arguments);
+ static bool stop(vector<wstring> * arguments);
+ //static bool query(vector<wstring> * arguments);
+
+ static bool quit(vector<wstring> * arguments);
+};