aboutsummaryrefslogtreecommitdiff
path: root/Exfiltration/mimikatz-1.0/modules/mod_pipe.h
diff options
context:
space:
mode:
Diffstat (limited to 'Exfiltration/mimikatz-1.0/modules/mod_pipe.h')
-rw-r--r--Exfiltration/mimikatz-1.0/modules/mod_pipe.h29
1 files changed, 0 insertions, 29 deletions
diff --git a/Exfiltration/mimikatz-1.0/modules/mod_pipe.h b/Exfiltration/mimikatz-1.0/modules/mod_pipe.h
deleted file mode 100644
index 69ab9e9..0000000
--- a/Exfiltration/mimikatz-1.0/modules/mod_pipe.h
+++ /dev/null
@@ -1,29 +0,0 @@
-/* Benjamin DELPY `gentilkiwi`
- http://blog.gentilkiwi.com
- benjamin@gentilkiwi.com
- Licence : http://creativecommons.org/licenses/by/3.0/fr/
-*/
-#pragma once
-#include "globdefs.h"
-
-class mod_pipe
-{
-private:
- HANDLE hPipe;
- wstring pipePath;
-
-public:
- mod_pipe(wstring pipeName = L"mimikatz\\kiwi", wstring serveur = L".");
- virtual ~mod_pipe(void);
-
- bool closePipe();
-
- bool readFromPipe(wstring &laReponse);
- bool writeToPipe(const wstring &leMessage);
-
- bool createServer();
- bool createClient();
-
- bool isConnected();
-};
-