mirror of
https://github.com/gentilkiwi/mimikatz
synced 2025-03-04 01:27:30 +00:00
[credits] with his work on AD, Vincent Le Toux (@vletoux) is starring as co-author :) [internal] DRSR RPC [fix] dcsync export as CSV without junk chars between username and NTLM hash
23 lines
548 B
C
23 lines
548 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;
|
|
#ifndef 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(); |