forked from gentilkiwi/mimikatz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutils.h
51 lines (45 loc) · 1.42 KB
/
utils.h
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
42
43
44
45
46
47
48
49
50
51
/* Benjamin DELPY `gentilkiwi`
https://blog.gentilkiwi.com
Licence : https://creativecommons.org/licenses/by/4.0/
*/
#pragma once
#include <ntstatus.h>
#define WIN32_NO_STATUS
#define SECURITY_WIN32
#define CINTERFACE
#define COBJMACROS
#include <windows.h>
#include <ntsecapi.h>
#include <sspi.h>
#include <sddl.h>
#include <wincred.h>
#include <ntsecapi.h>
#include <ntsecpkg.h>
#include <stdio.h>
#if defined(_M_ARM64)
#define MIMIKATZ_ARCH_A "arm64"
#elif defined(_M_X64)
#define MIMIKATZ_ARCH_A "x64"
#elif defined(_M_IX86)
#define MIMIKATZ_ARCH_A "x86"
#endif
#define MIMIKATZ_A "mimikatz"
#define MIMIKATZ_VERSION_A "2.2.0"
#define MIMIKATZ_CODENAME_A "A La Vie, A L\'Amour"
#define MIMIKATZ_FULL_A MIMIKATZ_A " " MIMIKATZ_VERSION_A " (" MIMIKATZ_ARCH_A ") built on " __DATE__ " " __TIME__
#define MIMIKATZ_SECOND_A "\"" MIMIKATZ_CODENAME_A "\""
#if !defined(NT_SUCCESS)
#define NT_SUCCESS(Status) ((NTSTATUS)(Status) >= 0)
#endif
#define LM_NTLM_HASH_LENGTH 16
void klog(FILE * logfile, PCWCHAR format, ...);
void klog_password(FILE * logfile, PUNICODE_STRING pPassword);
void klog_hash(FILE * logfile, PUNICODE_STRING pHash, BOOLEAN withSpace);
void klog_sid(FILE * logfile, PSID pSid);
typedef struct _REMOTE_LIB_FUNC {
DWORD outputSize;
PVOID outputData;
DWORD inputSize;
BYTE inputData[ANYSIZE_ARRAY];
} REMOTE_LIB_FUNC, *PREMOTE_LIB_FUNC;