mimikatz/mimidrv/globals.h

58 lines
1.8 KiB
C
Raw Normal View History

2014-04-06 18:31:53 +00:00
/* Benjamin DELPY `gentilkiwi`
https://blog.gentilkiwi.com
2014-04-06 18:31:53 +00:00
benjamin@gentilkiwi.com
Licence : https://creativecommons.org/licenses/by/4.0/
2014-04-06 18:31:53 +00:00
*/
#pragma once
#include <ntifs.h>
#include <fltkernel.h>
#include <ntddk.h>
#include <aux_klib.h>
#include <ntstrsafe.h>
2014-04-12 19:43:49 +00:00
#include <string.h>
2014-04-06 18:31:53 +00:00
#include "ioctl.h"
#define POOL_TAG 'kiwi'
#define MIMIDRV L"mimidrv"
2014-04-12 19:43:49 +00:00
#define kprintf(KiwiBuffer, Format, ...) (RtlStringCbPrintfExW(*(KiwiBuffer)->Buffer, *(KiwiBuffer)->szBuffer, (KiwiBuffer)->Buffer, (KiwiBuffer)->szBuffer, STRSAFE_NO_TRUNCATION, Format, __VA_ARGS__))
2014-04-06 18:31:53 +00:00
extern char * PsGetProcessImageFileName(PEPROCESS monProcess);
extern NTSYSAPI NTSTATUS NTAPI ZwSetInformationProcess (__in HANDLE ProcessHandle, __in PROCESSINFOCLASS ProcessInformationClass, __in_bcount(ProcessInformationLength) PVOID ProcessInformation, __in ULONG ProcessInformationLength);
extern NTSYSAPI NTSTATUS NTAPI ZwUnloadKey(IN POBJECT_ATTRIBUTES DestinationKeyName);
typedef struct _KIWI_BUFFER {
2014-04-12 19:43:49 +00:00
size_t * szBuffer;
PWSTR * Buffer;
2014-04-06 18:31:53 +00:00
} KIWI_BUFFER, *PKIWI_BUFFER;
typedef enum _KIWI_OS_INDEX {
KiwiOsIndex_UNK = 0,
KiwiOsIndex_XP = 1,
KiwiOsIndex_2K3 = 2,
KiwiOsIndex_VISTA = 3,
KiwiOsIndex_7 = 4,
KiwiOsIndex_8 = 5,
KiwiOsIndex_BLUE = 6,
KiwiOsIndex_10_1507 = 7,
KiwiOsIndex_10_1511 = 8,
KiwiOsIndex_10_1607 = 9,
KiwiOsIndex_10_1703 = 10,
KiwiOsIndex_10_1709 = 11,
KiwiOsIndex_10_1803 = 12,
KiwiOsIndex_10_1809 = 13,
KiwiOsIndex_10_1903 = 14,
KiwiOsIndex_10_1909 = 15,
KiwiOsIndex_10_2004 = 16,
KiwiOsIndex_MAX = 17,
2014-04-06 18:31:53 +00:00
} KIWI_OS_INDEX, *PKIWI_OS_INDEX;
#if defined(_M_X64) || defined(_M_ARM64) // TODO:ARM64
2014-04-06 18:31:53 +00:00
#define EX_FAST_REF_MASK 0x0f
#elif defined(_M_IX86)
#define EX_FAST_REF_MASK 0x07
2014-04-06 18:31:53 +00:00
#endif
#define KIWI_mask3bits(addr) (((ULONG_PTR) (addr)) & ~7)
KIWI_OS_INDEX KiwiOsIndex;