[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; int argc = 0;
wchar_t ** argv; wchar_t ** argv;
if(AllocConsole())
{ AllocConsole();
#pragma warning(push) #pragma warning(push)
#pragma warning(disable:4996) #pragma warning(disable:4996)
freopen("CONOUT$", "w", stdout); freopen("CONOUT$", "w", stdout);
@ -277,7 +277,6 @@ void CALLBACK mimikatz_dll(HWND hwnd, HINSTANCE hinst, LPWSTR lpszCmdLine, int n
} }
} }
else wmain(0, NULL); else wmain(0, NULL);
}
} }
#endif #endif