aboutsummaryrefslogtreecommitdiff
path: root/Exfiltration/mimikatz-1.0/mimikatz/modules/mod_mimikatz_hash.cpp
diff options
context:
space:
mode:
authormattifestation <mattgraeber@gmail.com>2014-02-03 17:13:35 -0500
committermattifestation <mattgraeber@gmail.com>2014-02-03 17:13:41 -0500
commitc5168cdba6a3b2d7dd8d79c8ac9583d3ace6a504 (patch)
tree31e4238db4984481442faa780e8921782c5de848 /Exfiltration/mimikatz-1.0/mimikatz/modules/mod_mimikatz_hash.cpp
parentd9ca5357e4603222268b1c619da10cc7858153d4 (diff)
downloadPowerSploit-c5168cdba6a3b2d7dd8d79c8ac9583d3ace6a504.tar.gz
PowerSploit-c5168cdba6a3b2d7dd8d79c8ac9583d3ace6a504.zip
Removed mimikatz.
This doesn't need to reside in PowerSploit. Those that are truly paranoid should validate that the embedded executable in Invoke-Mimikatz.ps1 is indeed mimikatz. This was causing AV to flag upon downloading PowerSploit.
Diffstat (limited to 'Exfiltration/mimikatz-1.0/mimikatz/modules/mod_mimikatz_hash.cpp')
-rw-r--r--Exfiltration/mimikatz-1.0/mimikatz/modules/mod_mimikatz_hash.cpp43
1 files changed, 0 insertions, 43 deletions
diff --git a/Exfiltration/mimikatz-1.0/mimikatz/modules/mod_mimikatz_hash.cpp b/Exfiltration/mimikatz-1.0/mimikatz/modules/mod_mimikatz_hash.cpp
deleted file mode 100644
index 302c05e..0000000
--- a/Exfiltration/mimikatz-1.0/mimikatz/modules/mod_mimikatz_hash.cpp
+++ /dev/null
@@ -1,43 +0,0 @@
-/* Benjamin DELPY `gentilkiwi`
- http://blog.gentilkiwi.com
- benjamin@gentilkiwi.com
- Licence : http://creativecommons.org/licenses/by/3.0/fr/
-*/
-#include "mod_mimikatz_hash.h"
-#include "..\global.h"
-
-vector<KIWI_MIMIKATZ_LOCAL_MODULE_COMMAND> mod_mimikatz_hash::getMimiKatzCommands()
-{
- vector<KIWI_MIMIKATZ_LOCAL_MODULE_COMMAND> monVector;
- monVector.push_back(KIWI_MIMIKATZ_LOCAL_MODULE_COMMAND(lm, L"lm", L"Hash LanManager (LM) d\'une chaîne de caractères"));
- monVector.push_back(KIWI_MIMIKATZ_LOCAL_MODULE_COMMAND(ntlm, L"ntlm", L"Hash NT LanManger (NTLM) d\'une chaîne de caractères"));
- return monVector;
-}
-
-bool mod_mimikatz_hash::lm(vector<wstring> * arguments)
-{
- wstring chaine, hash;
-
- if(!arguments->empty())
- chaine = arguments->front();
-
- if(mod_hash::lm(&chaine, &hash))
- (*outputStream) << L"LM(\'" << chaine << L"\') = " << hash << endl;
- else
- (*outputStream) << L"Erreur de calcul du hash LM" << endl;
- return true;
-}
-
-bool mod_mimikatz_hash::ntlm(vector<wstring> * arguments)
-{
- wstring chaine, hash;
-
- if(!arguments->empty())
- chaine = arguments->front();
-
- if(mod_hash::ntlm(&chaine, &hash))
- (*outputStream) << L"NTLM(\'" << chaine << L"\') = " << hash << endl;
- else
- (*outputStream) << L"Erreur de calcul du hash NTLM" << endl;
- return true;
-}