mirror of
https://github.com/gentilkiwi/mimikatz
synced 2024-12-12 17:15:23 +00:00
b008188f9f
[new] mimikatz & mimilib **very** experimental support for ARM64 [better] code for Mifare protocol [better] code for sekurlsa WinDBG plugin (credential keys, still not good enough) [new] mimilib sub authentication package for @vletoux with 'bad password knocking' and magic password [new] mimikatz: unmarshalling usernames when marshalled [fix] mimikatz SR98/RDM/Busylight could previously crash [fix #184] again and again ;) [fix #172] swscanf_s VS ARRAYSIZE macro [fix #127] stdout/stdin/stderr vs modern Visual Studio and Windows XP support (thank you @Crypt0-M3lon) [code] refactor for defined / !defined
23 lines
554 B
C
23 lines
554 B
C
/* Benjamin DELPY `gentilkiwi`
|
|
http://blog.gentilkiwi.com
|
|
benjamin@gentilkiwi.com
|
|
Licence : https://creativecommons.org/licenses/by/4.0/
|
|
*/
|
|
#pragma once
|
|
#include "globals.h"
|
|
#include <io.h>
|
|
#include <fcntl.h>
|
|
|
|
FILE * logfile;
|
|
#if !defined(MIMIKATZ_W2000_SUPPORT)
|
|
wchar_t * outputBuffer;
|
|
size_t outputBufferElements, outputBufferElementsPosition;
|
|
#endif
|
|
|
|
void kprintf(PCWCHAR format, ...);
|
|
void kprintf_inputline(PCWCHAR format, ...);
|
|
|
|
BOOL kull_m_output_file(PCWCHAR file);
|
|
|
|
void kull_m_output_init();
|
|
void kull_m_output_clean(); |