[fix] mimikatz as DLL, new console is not mandatory

This commit is contained in:
Benjamin DELPY 2021-07-14 17:37:12 +02:00
parent fc7f5cc2a3
commit 571fc8cc99
1 changed files with 11 additions and 12 deletions

View File

@ -260,8 +260,8 @@ void CALLBACK mimikatz_dll(HWND hwnd, HINSTANCE hinst, LPWSTR lpszCmdLine, int n
{
int argc = 0;
wchar_t ** argv;
if(AllocConsole())
{
AllocConsole();
#pragma warning(push)
#pragma warning(disable:4996)
freopen("CONOUT$", "w", stdout);
@ -278,7 +278,6 @@ void CALLBACK mimikatz_dll(HWND hwnd, HINSTANCE hinst, LPWSTR lpszCmdLine, int n
}
else wmain(0, NULL);
}
}
#endif
FARPROC WINAPI delayHookFailureFunc (unsigned int dliNotify, PDelayLoadInfo pdli)