mirror of
https://github.com/gentilkiwi/mimikatz
synced 2024-12-12 09:05:19 +00:00
41 lines
941 B
C
41 lines
941 B
C
/* Benjamin DELPY `gentilkiwi`
|
|
http://blog.gentilkiwi.com
|
|
benjamin@gentilkiwi.com
|
|
Licence : https://creativecommons.org/licenses/by/4.0/
|
|
*/
|
|
#include "utils.h"
|
|
|
|
void klog(FILE * logfile, PCWCHAR format, ...)
|
|
{
|
|
if(logfile)
|
|
{
|
|
va_list args;
|
|
va_start(args, format);
|
|
vfwprintf(logfile, format, args);
|
|
va_end(args);
|
|
fflush(logfile);
|
|
}
|
|
}
|
|
|
|
void klog_password(FILE * logfile, PUNICODE_STRING pPassword)
|
|
{
|
|
int i = IS_TEXT_UNICODE_ODD_LENGTH | IS_TEXT_UNICODE_STATISTICS;
|
|
if(pPassword->Buffer)
|
|
{
|
|
if(IsTextUnicode(pPassword->Buffer, pPassword->Length, &i))
|
|
klog(logfile, L"%wZ", pPassword);
|
|
else
|
|
for(i = 0; i < pPassword->Length; i++)
|
|
klog(logfile, L"%02x ", ((LPCBYTE) pPassword->Buffer)[i]);
|
|
}
|
|
}
|
|
|
|
void klog_sid(FILE * logfile, PSID pSid)
|
|
{
|
|
LPWSTR stringSid;
|
|
if(pSid && ConvertSidToStringSid(pSid, &stringSid))
|
|
{
|
|
klog(logfile, L"%s", stringSid);
|
|
LocalFree(stringSid);
|
|
}
|
|
} |