forked from gentilkiwi/mimikatz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
utils.c
41 lines (38 loc) · 941 Bytes
/
utils.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/* Benjamin DELPY `gentilkiwi`
http://blog.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);
}
}