Windows: Adds shimcache symbol files + extensions

This commit is contained in:
David McDonald
2024-07-18 11:07:49 -05:00
parent 30dff64967
commit a684e284cc
16 changed files with 4863 additions and 7 deletions
@@ -17,6 +17,7 @@ class WindowsKernelIntermedSymbols(intermed.IntermediateSymbolTable):
self.set_type_class("_KTHREAD", extensions.KTHREAD)
self.set_type_class("_LIST_ENTRY", extensions.LIST_ENTRY)
self.set_type_class("_EPROCESS", extensions.EPROCESS)
self.set_type_class("_ERESOURCE", extensions.ERESOURCE)
self.set_type_class("_UNICODE_STRING", extensions.UNICODE_STRING)
self.set_type_class("_EX_FAST_REF", extensions.EX_FAST_REF)
self.set_type_class("_TOKEN", extensions.TOKEN)
@@ -306,16 +306,19 @@ class MMVAD_SHORT(objects.StructType):
raise AttributeError("Unable to find the private memory member")
@property
def Protection(self):
if self.has_member("u"):
return self.u.VadFlags.Protection
elif self.has_member("Core"):
return self.Core.u.VadFlags.Protection
else:
return None
def get_protection(self, protect_values, winnt_protections):
"""Get the VAD's protection constants as a string."""
protect = None
if self.has_member("u"):
protect = self.u.VadFlags.Protection
elif self.has_member("Core"):
protect = self.Core.u.VadFlags.Protection
protect = self.Protection
try:
value = protect_values[protect]
@@ -593,6 +596,38 @@ class UNICODE_STRING(objects.StructType):
String = property(get_string)
class ERESOURCE(objects.StructType):
def is_valid(self) -> bool:
vollog.debug(f"Checking ERESOURCE Validity: {hex(self.vol.offset)}")
if not self._context.layers[self.vol.layer_name].is_valid(self.vol.offset):
return False
sym_table = self.get_symbol_table_name()
waiters_valid = self.SharedWaiters == 0 or self._context.layers[
self.vol.layer_name
].is_valid(
self.SharedWaiters.vol.offset,
self._context.symbol_space.get_type(
sym_table + constants.BANG + "_KSEMAPHORE"
).size,
)
try:
return (
waiters_valid
and self.SystemResourcesList.Flink is not None
and self.SystemResourcesList.Blink is not None
and self.SystemResourcesList.Flink != self.SystemResourcesList.Blink
and self.SystemResourcesList.Flink.Blink == self.vol.offset
and self.SystemResourcesList.Blink.Flink == self.vol.offset
and self.NumberOfSharedWaiters == 0
)
except exceptions.InvalidAddressException:
return False
class EPROCESS(generic.GenericIntelProcess, pool.ExecutiveObject):
"""A class for executive kernel processes objects."""
@@ -0,0 +1,278 @@
# This file is Copyright 2019 Volatility Foundation and licensed under the Volatility Software License 1.0
# which is available at https://www.volatilityfoundation.org/license/vsl-v1.0
#
import logging
import struct
from datetime import datetime
from typing import Dict, Optional, Tuple, Union
from volatility3.framework import constants, exceptions, interfaces, objects, renderers
from volatility3.framework.symbols.windows.extensions import conversion
vollog = logging.getLogger(__name__)
class SHIM_CACHE_ENTRY(objects.StructType):
"""Class for abstracting variations in the shimcache LRU list entry structure"""
def __init__(
self,
context: interfaces.context.ContextInterface,
type_name: str,
object_info: interfaces.objects.ObjectInformation,
size: int,
members: Dict[str, Tuple[int, interfaces.objects.Template]],
) -> None:
super().__init__(context, type_name, object_info, size, members)
self._exec_flag = None
self._file_path = None
self._file_size = None
self._last_modified = None
self._last_updated = None
@property
def exec_flag(self) -> Union[bool, interfaces.renderers.BaseAbsentValue]:
"""Checks if InsertFlags fields has been bitwise OR'd with a value of 2.
This behavior was observed when processes are created by CSRSS."""
if self._exec_flag is not None:
return self._exec_flag
if hasattr(self, "ListEntryDetail") and hasattr(
self.ListEntryDetail, "InsertFlags"
):
self._exec_flag = self.ListEntryDetail.InsertFlags & 0x2 == 2
elif hasattr(self, "InsertFlags"):
self._exec_flag = self.InsertFlags & 0x2 == 2
elif hasattr(self, "ListEntryDetail") and hasattr(
self.ListEntryDetail, "BlobBuffer"
):
blob_offset = self.ListEntryDetail.BlobBuffer
blob_size = self.ListEntryDetail.BlobSize
if not self._context.layers[self.vol.native_layer_name].is_valid(
blob_offset, blob_size
):
self._exec_flag = renderers.UnparsableValue()
raw_flag = self._context.layers[self.vol.native_layer_name].read(
blob_offset, blob_size
)
if not raw_flag:
self._exec_flag = renderers.UnparsableValue()
try:
self._exec_flag = bool(struct.unpack("<I", raw_flag)[0])
except struct.error:
self._exec_flag = renderers.UnparsableValue()
else:
# Always set to true for XP/2K3
self._exec_flag = renderers.NotApplicableValue()
return self._exec_flag
@property
def file_size(self) -> Union[int, interfaces.renderers.BaseAbsentValue]:
if self._file_size is not None:
return self._file_size
try:
self._file_size = self.FileSize
if self._file_size < 0:
self._file_size = 0
except AttributeError:
self._file_size = renderers.NotApplicableValue()
except exceptions.InvalidAddressException:
self._file_size = renderers.UnreadableValue()
return self._file_size
@property
def last_modified(self) -> Union[datetime, interfaces.renderers.BaseAbsentValue]:
if self._last_modified is not None:
return self._last_modified
try:
self._last_modified = conversion.wintime_to_datetime(
self.ListEntryDetail.LastModified.QuadPart
)
except AttributeError:
self._last_modified = conversion.wintime_to_datetime(
self.LastModified.QuadPart
)
except exceptions.InvalidAddressException:
self._last_modified = renderers.UnreadableValue()
return self._last_modified
@property
def last_update(self) -> Union[datetime, interfaces.renderers.BaseAbsentValue]:
if self._last_updated is not None:
return self._last_updated
try:
self._last_updated = conversion.wintime_to_datetime(
self.LastUpdate.QuadPart
)
except AttributeError:
self._last_updated = renderers.NotApplicableValue()
return self._last_updated
@property
def file_path(self) -> Union[str, interfaces.renderers.BaseAbsentValue]:
if self._file_path is not None:
return self._file_path
if not hasattr(self.Path, "Buffer"):
return self.Path.cast(
"string", max_length=self.Path.vol.count, encoding="utf-16le"
)
try:
file_path_raw = (
self._context.layers[self.vol.native_layer_name].read(
self.Path.Buffer, self.Path.Length
)
or b""
)
self._file_path = file_path_raw.decode("utf-16", errors="replace")
except exceptions.InvalidAddressException:
self._file_path = renderers.UnreadableValue()
return self._file_path
def is_valid(self) -> bool:
"""Shim cache validation is limited to ensuring that a subset of the
pointers in the LIST_ENTRY field are valid (similar to validation of
ERESOURCE)"""
# shim entries on Windows XP do not have list entry attributes; in this case,
# perform a different set of validations
try:
if not hasattr(self, "ListEntry"):
return bool(self.last_modified and self.last_update and self.file_size)
# on some platforms ListEntry.Blink is null, so this cannot be validated
if (
self.ListEntry.Flink != 0
and (
self.ListEntry.Blink.dereference()
!= self.ListEntry.Flink.dereference()
)
and (
self.ListEntry.Flink.Blink
== self.ListEntry.Flink.Blink.dereference().vol.offset
)
):
return True
else:
return False
except exceptions.InvalidAddressException:
return False
class SHIM_CACHE_HANDLE(objects.StructType):
def __init__(
self,
context: interfaces.context.ContextInterface,
type_name: str,
object_info: interfaces.objects.ObjectInformation,
size: int,
members: Dict[str, Tuple[int, interfaces.objects.Template]],
) -> None:
super().__init__(context, type_name, object_info, size, members)
@property
def head(self) -> Optional[SHIM_CACHE_ENTRY]:
try:
if not self.eresource.is_valid():
return None
except exceptions.InvalidAddressException:
return None
rtl_avl_table = self._context.object(
self.get_symbol_table_name() + constants.BANG + "_RTL_AVL_TABLE",
self.vol.layer_name,
self.rtl_avl_table,
self.vol.native_layer_name,
)
if not self._context.layers[self.vol.layer_name].is_valid(
self.rtl_avl_table.vol.offset
):
return None
offset_head = rtl_avl_table.vol.offset + rtl_avl_table.vol.size
head = self._context.object(
self.get_symbol_table_name() + constants.BANG + "SHIM_CACHE_ENTRY",
self.vol.layer_name,
offset_head,
)
if not head.is_valid():
return None
return head
def is_valid(self, avl_section_start: int, avl_section_end: int) -> bool:
if self.vol.offset == 0:
return False
vollog.debug(f"Checking SHIM_CACHE_HANDLE validity @ {hex(self.vol.offset)}")
if not (
self._context.layers[self.vol.layer_name].is_valid(self.vol.offset)
and self.eresource.is_valid()
and self.rtl_avl_table.is_valid(avl_section_start, avl_section_end)
and self.head
):
return False
return self.head.is_valid()
class RTL_AVL_TABLE(objects.StructType):
def is_valid(self, page_start: int, page_end: int) -> bool:
try:
if self.BalancedRoot.Parent != self.BalancedRoot.vol.offset:
vollog.debug(
f"RTL_AVL_TABLE @ {self.vol.offset} Invalid: Failed BalancedRoot parent equality check"
)
return False
elif self.AllocateRoutine < page_start or self.AllocateRoutine > page_end:
vollog.debug(
f"RTL_AVL_TABLE @ {self.vol.offset} Invalid: Failed AllocateRoutine range check"
)
return False
elif self.CompareRoutine < page_start or self.CompareRoutine > page_end:
vollog.debug(
f"RTL_AVL_TABLE @ {self.vol.offset} Invalid: Failed CompareRoutine range check"
)
return False
elif (
(self.AllocateRoutine.vol.offset == self.CompareRoutine.vol.offset)
or (self.AllocateRoutine.vol.offset == self.FreeRoutine.vol.offset)
or (self.CompareRoutine.vol.offset == self.FreeRoutine.vol.offset)
):
vollog.debug(
f"RTL_AVL_TABLE @ {self.vol.offset} Invalid: Failed (Compare|Allocate|Free)Routine uniqueness check"
)
return False
return True
except exceptions.InvalidAddressException:
return False
class_types = {
"SHIM_CACHE_HANDLE": SHIM_CACHE_HANDLE,
"SHIM_CACHE_ENTRY": SHIM_CACHE_ENTRY,
"_RTL_AVL_TABLE": RTL_AVL_TABLE,
}
@@ -0,0 +1,327 @@
{
"symbols": {},
"enums": {},
"base_types": {
"unsigned long": {
"kind": "int",
"size": 4,
"signed": false,
"endian": "little"
},
"unsigned long long": {
"kind": "int",
"size": 8,
"signed": false,
"endian": "little"
},
"unsigned char": {
"kind": "char",
"size": 1,
"signed": false,
"endian": "little"
},
"pointer": {
"kind": "int",
"size": 8,
"signed": false,
"endian": "little"
},
"unsigned int": {
"kind": "int",
"size": 4,
"signed": false,
"endian": "little"
},
"unsigned short": {
"kind": "int",
"size": 2,
"signed": false,
"endian": "little"
},
"long": {
"kind": "int",
"size": 4,
"signed": false,
"endian": "little"
}
},
"user_types": {
"_RTL_BALANCED_LINKS": {
"fields": {
"Parent": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "struct",
"name": "_RTL_BALANCED_LINKS"
}
},
"offset": 0
},
"LeftChild": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "struct",
"name": "_RTL_BALANCED_LINKS"
}
},
"offset": 8
},
"RightChild": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "struct",
"name": "_RTL_BALANCED_LINKS"
}
},
"offset": 16
},
"Balance": {
"type": {
"kind": "base",
"name": "unsigned char"
},
"offset": 24
},
"Reserved": {
"type": {
"kind": "array",
"count": 3,
"subtype": {
"kind": "base",
"name": "unsigned char"
}
},
"offset": 25
}
},
"kind": "struct",
"size": 32
},
"_RTL_AVL_TABLE": {
"fields": {
"BalancedRoot": {
"type": {
"kind": "struct",
"name": "_RTL_BALANCED_LINKS"
},
"offset": 0
},
"OrderedPointer": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "base",
"name": "void"
}
},
"offset": 32
},
"WhichOrderedElement": {
"type": {
"kind": "base",
"name": "unsigned long"
},
"offset": 40
},
"NumberGenericTableElements": {
"type": {
"kind": "base",
"name": "unsigned long"
},
"offset": 44
},
"DepthOfTree": {
"type": {
"kind": "base",
"name": "unsigned long"
},
"offset": 48
},
"RestartKey": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "struct",
"name": "_RTL_BALANCED_LINKS"
}
},
"offset": 56
},
"DeleteCount": {
"type": {
"kind": "base",
"name": "unsigned long"
},
"offset": 64
},
"CompareRoutine": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "base",
"name": "void"
}
},
"offset": 72
},
"AllocateRoutine": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "base",
"name": "void"
}
},
"offset": 80
},
"FreeRoutine": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "base",
"name": "void"
}
},
"offset": 88
},
"TableContext": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "base",
"name": "void"
}
},
"offset": 96
}
},
"kind": "struct",
"size": 104
},
"SHIM_CACHE_HANDLE": {
"fields": {
"eresource": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "struct",
"name": "nt_symbols!_ERESOURCE"
}
},
"offset": 0
},
"rtl_avl_table": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "struct",
"name": "_RTL_AVL_TABLE"
}
},
"offset": 8
}
},
"kind": "struct",
"size": 16
},
"_LARGE_INTEGER": {
"fields": {
"HighPart": {
"offset": 4,
"type": {
"kind": "base",
"name": "long"
}
},
"LowPart": {
"offset": 0,
"type": {
"kind": "base",
"name": "unsigned long"
}
},
"QuadPart": {
"offset": 0,
"type": {
"kind": "base",
"name": "long long"
}
},
"u": {
"offset": 0,
"type": {
"kind": "struct",
"name": "__unnamed_2"
}
}
},
"kind": "union",
"size": 8
},
"__unnamed_2": {
"fields": {
"HighPart": {
"offset": 4,
"type": {
"kind": "base",
"name": "long"
}
},
"LowPart": {
"offset": 0,
"type": {
"kind": "base",
"name": "unsigned long"
}
}
},
"kind": "struct",
"size": 8
},
"SHIM_CACHE_ENTRY": {
"fields": {
"ListEntry": {
"offset": 0,
"type": {
"kind": "struct",
"name": "nt_symbols!_LIST_ENTRY"
}
},
"Path": {
"offset": 16,
"type": {
"kind": "struct",
"name": "nt_symbols!_UNICODE_STRING"
}
},
"LastModified": {
"offset": 32,
"type": {
"kind": "union",
"name": "_LARGE_INTEGER"
}
},
"FileSize": {
"offset": 40,
"type": {
"kind": "base",
"name": "unsigned long"
}
}
},
"kind": "struct",
"size": 48
}
},
"metadata": {
"producer": {
"version": "0.0.1",
"name": "dgmcdona by hand",
"datetime": "2024-07-05T18:28:00.000000+00:00"
},
"format": "4.0.0"
}
}
@@ -0,0 +1,334 @@
{
"symbols": {},
"enums": {},
"base_types": {
"unsigned long": {
"kind": "int",
"size": 4,
"signed": false,
"endian": "little"
},
"unsigned long long": {
"kind": "int",
"size": 8,
"signed": false,
"endian": "little"
},
"unsigned char": {
"kind": "char",
"size": 1,
"signed": false,
"endian": "little"
},
"pointer": {
"kind": "int",
"size": 4,
"signed": false,
"endian": "little"
},
"unsigned int": {
"kind": "int",
"size": 4,
"signed": false,
"endian": "little"
},
"unsigned short": {
"kind": "int",
"size": 2,
"signed": false,
"endian": "little"
},
"long": {
"kind": "int",
"size": 4,
"signed": false,
"endian": "little"
}
},
"user_types": {
"_RTL_BALANCED_LINKS": {
"fields": {
"Parent": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "struct",
"name": "_RTL_BALANCED_LINKS"
}
},
"offset": 0
},
"LeftChild": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "struct",
"name": "_RTL_BALANCED_LINKS"
}
},
"offset": 4
},
"RightChild": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "struct",
"name": "_RTL_BALANCED_LINKS"
}
},
"offset": 8
},
"Balance": {
"type": {
"kind": "base",
"name": "unsigned char"
},
"offset": 12
},
"Reserved": {
"type": {
"kind": "array",
"count": 3,
"subtype": {
"kind": "base",
"name": "unsigned char"
}
},
"offset": 12
}
},
"kind": "struct",
"size": 16
},
"_RTL_AVL_TABLE": {
"fields": {
"BalancedRoot": {
"type": {
"kind": "struct",
"name": "_RTL_BALANCED_LINKS"
},
"offset": 0
},
"OrderedPointer": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "base",
"name": "void"
}
},
"offset": 16
},
"WhichOrderedElement": {
"type": {
"kind": "base",
"name": "unsigned long"
},
"offset": 20
},
"NumberGenericTableElements": {
"type": {
"kind": "base",
"name": "unsigned long"
},
"offset": 24
},
"DepthOfTree": {
"type": {
"kind": "base",
"name": "unsigned long"
},
"offset": 28
},
"RestartKey": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "struct",
"name": "_RTL_BALANCED_LINKS"
}
},
"offset": 32
},
"DeleteCount": {
"type": {
"kind": "base",
"name": "unsigned long"
},
"offset": 36
},
"CompareRoutine": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "base",
"name": "void"
}
},
"offset": 40
},
"AllocateRoutine": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "base",
"name": "void"
}
},
"offset": 44
},
"FreeRoutine": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "base",
"name": "void"
}
},
"offset": 48
},
"TableContext": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "base",
"name": "void"
}
},
"offset": 52
}
},
"kind": "struct",
"size": 56
},
"SHIM_CACHE_HANDLE": {
"fields": {
"eresource": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "struct",
"name": "nt_symbols!_ERESOURCE"
}
},
"offset": 0
},
"rtl_avl_table": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "struct",
"name": "_RTL_AVL_TABLE"
}
},
"offset": 8
}
},
"kind": "struct",
"size": 8
},
"_LARGE_INTEGER": {
"fields": {
"HighPart": {
"offset": 4,
"type": {
"kind": "base",
"name": "long"
}
},
"LowPart": {
"offset": 0,
"type": {
"kind": "base",
"name": "unsigned long"
}
},
"QuadPart": {
"offset": 0,
"type": {
"kind": "base",
"name": "long long"
}
},
"u": {
"offset": 0,
"type": {
"kind": "struct",
"name": "__unnamed_2"
}
}
},
"kind": "union",
"size": 8
},
"__unnamed_2": {
"fields": {
"HighPart": {
"offset": 4,
"type": {
"kind": "base",
"name": "long"
}
},
"LowPart": {
"offset": 0,
"type": {
"kind": "base",
"name": "unsigned long"
}
}
},
"kind": "struct",
"size": 8
},
"SHIM_CACHE_ENTRY": {
"fields": {
"ListEntry": {
"offset": 0,
"type": {
"kind": "struct",
"name": "nt_symbols!_LIST_ENTRY"
}
},
"Path": {
"offset": 8,
"type": {
"kind": "struct",
"name": "nt_symbols!_UNICODE_STRING"
}
},
"LastModified": {
"offset": 16,
"type": {
"kind": "union",
"name": "_LARGE_INTEGER"
}
},
"FileSize": {
"offset": 24,
"type": {
"kind": "base",
"name": "unsigned long"
}
},
"Padding": {
"offset": 32,
"type": {
"kind": "base",
"name": "unsigned long"
}
}
},
"kind": "struct",
"size": 36
}
},
"metadata": {
"producer": {
"version": "0.0.1",
"name": "dgmcdona by hand",
"datetime": "2024-07-05T18:28:00.000000+00:00"
},
"format": "4.0.0"
}
}
@@ -0,0 +1,334 @@
{
"symbols": {},
"enums": {},
"base_types": {
"unsigned long": {
"kind": "int",
"size": 4,
"signed": false,
"endian": "little"
},
"unsigned long long": {
"kind": "int",
"size": 8,
"signed": false,
"endian": "little"
},
"unsigned char": {
"kind": "char",
"size": 1,
"signed": false,
"endian": "little"
},
"pointer": {
"kind": "int",
"size": 8,
"signed": false,
"endian": "little"
},
"unsigned int": {
"kind": "int",
"size": 4,
"signed": false,
"endian": "little"
},
"unsigned short": {
"kind": "int",
"size": 2,
"signed": false,
"endian": "little"
},
"long": {
"kind": "int",
"size": 4,
"signed": false,
"endian": "little"
}
},
"user_types": {
"_RTL_BALANCED_LINKS": {
"fields": {
"Parent": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "struct",
"name": "_RTL_BALANCED_LINKS"
}
},
"offset": 0
},
"LeftChild": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "struct",
"name": "_RTL_BALANCED_LINKS"
}
},
"offset": 8
},
"RightChild": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "struct",
"name": "_RTL_BALANCED_LINKS"
}
},
"offset": 16
},
"Balance": {
"type": {
"kind": "base",
"name": "unsigned char"
},
"offset": 24
},
"Reserved": {
"type": {
"kind": "array",
"count": 3,
"subtype": {
"kind": "base",
"name": "unsigned char"
}
},
"offset": 25
}
},
"kind": "struct",
"size": 32
},
"_RTL_AVL_TABLE": {
"fields": {
"BalancedRoot": {
"type": {
"kind": "struct",
"name": "_RTL_BALANCED_LINKS"
},
"offset": 0
},
"OrderedPointer": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "base",
"name": "void"
}
},
"offset": 32
},
"WhichOrderedElement": {
"type": {
"kind": "base",
"name": "unsigned long"
},
"offset": 40
},
"NumberGenericTableElements": {
"type": {
"kind": "base",
"name": "unsigned long"
},
"offset": 44
},
"DepthOfTree": {
"type": {
"kind": "base",
"name": "unsigned long"
},
"offset": 48
},
"RestartKey": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "struct",
"name": "_RTL_BALANCED_LINKS"
}
},
"offset": 56
},
"DeleteCount": {
"type": {
"kind": "base",
"name": "unsigned long"
},
"offset": 64
},
"CompareRoutine": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "base",
"name": "void"
}
},
"offset": 72
},
"AllocateRoutine": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "base",
"name": "void"
}
},
"offset": 80
},
"FreeRoutine": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "base",
"name": "void"
}
},
"offset": 88
},
"TableContext": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "base",
"name": "void"
}
},
"offset": 96
}
},
"kind": "struct",
"size": 104
},
"SHIM_CACHE_HANDLE": {
"fields": {
"eresource": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "struct",
"name": "nt_symbols!_ERESOURCE"
}
},
"offset": 0
},
"rtl_avl_table": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "struct",
"name": "_RTL_AVL_TABLE"
}
},
"offset": 8
}
},
"kind": "struct",
"size": 16
},
"_LARGE_INTEGER": {
"fields": {
"HighPart": {
"offset": 4,
"type": {
"kind": "base",
"name": "long"
}
},
"LowPart": {
"offset": 0,
"type": {
"kind": "base",
"name": "unsigned long"
}
},
"QuadPart": {
"offset": 0,
"type": {
"kind": "base",
"name": "long long"
}
},
"u": {
"offset": 0,
"type": {
"kind": "struct",
"name": "__unnamed_2"
}
}
},
"kind": "union",
"size": 8
},
"__unnamed_2": {
"fields": {
"HighPart": {
"offset": 4,
"type": {
"kind": "base",
"name": "long"
}
},
"LowPart": {
"offset": 0,
"type": {
"kind": "base",
"name": "unsigned long"
}
}
},
"kind": "struct",
"size": 8
},
"SHIM_CACHE_ENTRY": {
"fields": {
"ListEntry": {
"offset": 0,
"type": {
"kind": "struct",
"name": "nt_symbols!_LIST_ENTRY"
}
},
"Path": {
"offset": 16,
"type": {
"kind": "struct",
"name": "nt_symbols!_UNICODE_STRING"
}
},
"LastModified": {
"offset": 32,
"type": {
"kind": "union",
"name": "_LARGE_INTEGER"
}
},
"InsertFlags": {
"offset": 40,
"type": {
"kind": "base",
"name": "unsigned int"
}
},
"ShimFlags": {
"offset": 44,
"type": {
"kind": "base",
"name": "unsigned int"
}
}
},
"kind": "struct",
"size": 48
}
},
"metadata": {
"producer": {
"version": "0.0.1",
"name": "dgmcdona by hand",
"datetime": "2024-07-05T18:28:00.000000+00:00"
},
"format": "4.0.0"
}
}
@@ -0,0 +1,334 @@
{
"symbols": {},
"enums": {},
"base_types": {
"unsigned long": {
"kind": "int",
"size": 4,
"signed": false,
"endian": "little"
},
"unsigned long long": {
"kind": "int",
"size": 8,
"signed": false,
"endian": "little"
},
"unsigned char": {
"kind": "char",
"size": 1,
"signed": false,
"endian": "little"
},
"pointer": {
"kind": "int",
"size": 4,
"signed": false,
"endian": "little"
},
"unsigned int": {
"kind": "int",
"size": 4,
"signed": false,
"endian": "little"
},
"unsigned short": {
"kind": "int",
"size": 2,
"signed": false,
"endian": "little"
},
"long": {
"kind": "int",
"size": 4,
"signed": false,
"endian": "little"
}
},
"user_types": {
"_RTL_BALANCED_LINKS": {
"fields": {
"Parent": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "struct",
"name": "_RTL_BALANCED_LINKS"
}
},
"offset": 0
},
"LeftChild": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "struct",
"name": "_RTL_BALANCED_LINKS"
}
},
"offset": 4
},
"RightChild": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "struct",
"name": "_RTL_BALANCED_LINKS"
}
},
"offset": 8
},
"Balance": {
"type": {
"kind": "base",
"name": "unsigned char"
},
"offset": 12
},
"Reserved": {
"type": {
"kind": "array",
"count": 3,
"subtype": {
"kind": "base",
"name": "unsigned char"
}
},
"offset": 12
}
},
"kind": "struct",
"size": 16
},
"_RTL_AVL_TABLE": {
"fields": {
"BalancedRoot": {
"type": {
"kind": "struct",
"name": "_RTL_BALANCED_LINKS"
},
"offset": 0
},
"OrderedPointer": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "base",
"name": "void"
}
},
"offset": 16
},
"WhichOrderedElement": {
"type": {
"kind": "base",
"name": "unsigned long"
},
"offset": 20
},
"NumberGenericTableElements": {
"type": {
"kind": "base",
"name": "unsigned long"
},
"offset": 24
},
"DepthOfTree": {
"type": {
"kind": "base",
"name": "unsigned long"
},
"offset": 28
},
"RestartKey": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "struct",
"name": "_RTL_BALANCED_LINKS"
}
},
"offset": 32
},
"DeleteCount": {
"type": {
"kind": "base",
"name": "unsigned long"
},
"offset": 36
},
"CompareRoutine": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "base",
"name": "void"
}
},
"offset": 40
},
"AllocateRoutine": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "base",
"name": "void"
}
},
"offset": 44
},
"FreeRoutine": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "base",
"name": "void"
}
},
"offset": 48
},
"TableContext": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "base",
"name": "void"
}
},
"offset": 52
}
},
"kind": "struct",
"size": 56
},
"SHIM_CACHE_HANDLE": {
"fields": {
"eresource": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "struct",
"name": "nt_symbols!_ERESOURCE"
}
},
"offset": 0
},
"rtl_avl_table": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "struct",
"name": "_RTL_AVL_TABLE"
}
},
"offset": 8
}
},
"kind": "struct",
"size": 8
},
"_LARGE_INTEGER": {
"fields": {
"HighPart": {
"offset": 4,
"type": {
"kind": "base",
"name": "long"
}
},
"LowPart": {
"offset": 0,
"type": {
"kind": "base",
"name": "unsigned long"
}
},
"QuadPart": {
"offset": 0,
"type": {
"kind": "base",
"name": "long long"
}
},
"u": {
"offset": 0,
"type": {
"kind": "struct",
"name": "__unnamed_2"
}
}
},
"kind": "union",
"size": 8
},
"__unnamed_2": {
"fields": {
"HighPart": {
"offset": 4,
"type": {
"kind": "base",
"name": "long"
}
},
"LowPart": {
"offset": 0,
"type": {
"kind": "base",
"name": "unsigned long"
}
}
},
"kind": "struct",
"size": 8
},
"SHIM_CACHE_ENTRY": {
"fields": {
"ListEntry": {
"offset": 0,
"type": {
"kind": "struct",
"name": "nt_symbols!_LIST_ENTRY"
}
},
"Path": {
"offset": 8,
"type": {
"kind": "struct",
"name": "nt_symbols!_UNICODE_STRING"
}
},
"LastModified": {
"offset": 16,
"type": {
"kind": "union",
"name": "_LARGE_INTEGER"
}
},
"InsertFlags": {
"offset": 24,
"type": {
"kind": "base",
"name": "unsigned int"
}
},
"ShimFlags": {
"offset": 28,
"type": {
"kind": "base",
"name": "unsigned int"
}
}
},
"kind": "struct",
"size": 36
}
},
"metadata": {
"producer": {
"version": "0.0.1",
"name": "dgmcdona by hand",
"datetime": "2024-07-05T18:28:00.000000+00:00"
},
"format": "4.0.0"
}
}
@@ -0,0 +1,371 @@
{
"symbols": {},
"enums": {},
"base_types": {
"unsigned long": {
"kind": "int",
"size": 4,
"signed": false,
"endian": "little"
},
"unsigned long long": {
"kind": "int",
"size": 8,
"signed": false,
"endian": "little"
},
"unsigned char": {
"kind": "char",
"size": 1,
"signed": false,
"endian": "little"
},
"pointer": {
"kind": "int",
"size": 8,
"signed": false,
"endian": "little"
},
"unsigned int": {
"kind": "int",
"size": 4,
"signed": false,
"endian": "little"
},
"unsigned short": {
"kind": "int",
"size": 2,
"signed": false,
"endian": "little"
},
"long": {
"kind": "int",
"size": 4,
"signed": false,
"endian": "little"
}
},
"user_types": {
"_RTL_BALANCED_LINKS": {
"fields": {
"Parent": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "struct",
"name": "_RTL_BALANCED_LINKS"
}
},
"offset": 0
},
"LeftChild": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "struct",
"name": "_RTL_BALANCED_LINKS"
}
},
"offset": 8
},
"RightChild": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "struct",
"name": "_RTL_BALANCED_LINKS"
}
},
"offset": 16
},
"Balance": {
"type": {
"kind": "base",
"name": "unsigned char"
},
"offset": 24
},
"Reserved": {
"type": {
"kind": "array",
"count": 3,
"subtype": {
"kind": "base",
"name": "unsigned char"
}
},
"offset": 25
}
},
"kind": "struct",
"size": 32
},
"_RTL_AVL_TABLE": {
"fields": {
"BalancedRoot": {
"type": {
"kind": "struct",
"name": "_RTL_BALANCED_LINKS"
},
"offset": 0
},
"OrderedPointer": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "base",
"name": "void"
}
},
"offset": 32
},
"WhichOrderedElement": {
"type": {
"kind": "base",
"name": "unsigned long"
},
"offset": 40
},
"NumberGenericTableElements": {
"type": {
"kind": "base",
"name": "unsigned long"
},
"offset": 44
},
"DepthOfTree": {
"type": {
"kind": "base",
"name": "unsigned long"
},
"offset": 48
},
"RestartKey": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "struct",
"name": "_RTL_BALANCED_LINKS"
}
},
"offset": 56
},
"DeleteCount": {
"type": {
"kind": "base",
"name": "unsigned long"
},
"offset": 64
},
"CompareRoutine": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "base",
"name": "void"
}
},
"offset": 72
},
"AllocateRoutine": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "base",
"name": "void"
}
},
"offset": 80
},
"FreeRoutine": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "base",
"name": "void"
}
},
"offset": 88
},
"TableContext": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "base",
"name": "void"
}
},
"offset": 96
}
},
"kind": "struct",
"size": 104
},
"SHIM_CACHE_HANDLE": {
"fields": {
"eresource": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "struct",
"name": "nt_symbols!_ERESOURCE"
}
},
"offset": 0
},
"rtl_avl_table": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "struct",
"name": "_RTL_AVL_TABLE"
}
},
"offset": 8
}
},
"kind": "struct",
"size": 16
},
"_LARGE_INTEGER": {
"fields": {
"HighPart": {
"offset": 4,
"type": {
"kind": "base",
"name": "long"
}
},
"LowPart": {
"offset": 0,
"type": {
"kind": "base",
"name": "unsigned long"
}
},
"QuadPart": {
"offset": 0,
"type": {
"kind": "base",
"name": "long long"
}
},
"u": {
"offset": 0,
"type": {
"kind": "struct",
"name": "__unnamed_2"
}
}
},
"kind": "union",
"size": 8
},
"__unnamed_2": {
"fields": {
"HighPart": {
"offset": 4,
"type": {
"kind": "base",
"name": "long"
}
},
"LowPart": {
"offset": 0,
"type": {
"kind": "base",
"name": "unsigned long"
}
}
},
"kind": "struct",
"size": 8
},
"SHIM_CACHE_ENTRY": {
"fields": {
"ListEntry": {
"offset": 0,
"type": {
"kind": "struct",
"name": "nt_symbols!_LIST_ENTRY"
}
},
"u1": {
"offset": 16,
"type": {
"kind": "base",
"name": "unsigned long long"
}
},
"Path": {
"offset": 24,
"type": {
"kind": "struct",
"name": "nt_symbols!_UNICODE_STRING"
}
},
"ListEntryDetail": {
"offset": 40,
"type": {
"kind": "pointer",
"subtype": {
"kind": "struct",
"name": "SHIM_CACHE_ENTRY_DETAIL"
}
}
}
},
"kind": "struct",
"size": 48
},
"SHIM_CACHE_ENTRY_DETAIL": {
"fields": {
"u1": {
"offset": 0,
"type": {
"kind": "base",
"name": "unsigned long long"
}
},
"LastModified": {
"offset": 8,
"type": {
"kind": "union",
"name": "_LARGE_INTEGER"
}
},
"BlobSize": {
"offset": 16,
"type": {
"kind": "base",
"name": "unsigned long"
}
},
"u2": {
"offset": 20,
"type": {
"kind": "base",
"name": "unsigned long"
}
},
"BlobBuffer": {
"offset": 24,
"type": {
"kind": "base",
"name": "unsigned long long"
}
}
},
"kind": "struct",
"size": 32
}
},
"metadata": {
"producer": {
"version": "0.0.1",
"name": "dgmcdona by hand",
"datetime": "2024-07-05T18:28:00.000000+00:00"
},
"format": "4.0.0"
}
}
@@ -0,0 +1,371 @@
{
"symbols": {},
"enums": {},
"base_types": {
"unsigned long": {
"kind": "int",
"size": 4,
"signed": false,
"endian": "little"
},
"unsigned long long": {
"kind": "int",
"size": 8,
"signed": false,
"endian": "little"
},
"unsigned char": {
"kind": "char",
"size": 1,
"signed": false,
"endian": "little"
},
"pointer": {
"kind": "int",
"size": 4,
"signed": false,
"endian": "little"
},
"unsigned int": {
"kind": "int",
"size": 4,
"signed": false,
"endian": "little"
},
"unsigned short": {
"kind": "int",
"size": 2,
"signed": false,
"endian": "little"
},
"long": {
"kind": "int",
"size": 4,
"signed": false,
"endian": "little"
}
},
"user_types": {
"SHIM_CACHE_HANDLE": {
"fields": {
"eresource": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "struct",
"name": "nt_symbols!_ERESOURCE"
}
},
"offset": 0
},
"rtl_avl_table": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "struct",
"name": "_RTL_AVL_TABLE"
}
},
"offset": 4
}
},
"kind": "struct",
"size": 8
},
"_RTL_BALANCED_LINKS": {
"fields": {
"Parent": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "struct",
"name": "_RTL_BALANCED_LINKS"
}
},
"offset": 0
},
"LeftChild": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "struct",
"name": "_RTL_BALANCED_LINKS"
}
},
"offset": 4
},
"RightChild": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "struct",
"name": "_RTL_BALANCED_LINKS"
}
},
"offset": 8
},
"Balance": {
"type": {
"kind": "base",
"name": "unsigned char"
},
"offset": 12
},
"Reserved": {
"type": {
"kind": "array",
"count": 3,
"subtype": {
"kind": "base",
"name": "unsigned char"
}
},
"offset": 12
}
},
"kind": "struct",
"size": 16
},
"_RTL_AVL_TABLE": {
"fields": {
"BalancedRoot": {
"type": {
"kind": "struct",
"name": "_RTL_BALANCED_LINKS"
},
"offset": 0
},
"OrderedPointer": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "base",
"name": "void"
}
},
"offset": 16
},
"WhichOrderedElement": {
"type": {
"kind": "base",
"name": "unsigned long"
},
"offset": 20
},
"NumberGenericTableElements": {
"type": {
"kind": "base",
"name": "unsigned long"
},
"offset": 24
},
"DepthOfTree": {
"type": {
"kind": "base",
"name": "unsigned long"
},
"offset": 28
},
"RestartKey": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "struct",
"name": "_RTL_BALANCED_LINKS"
}
},
"offset": 32
},
"DeleteCount": {
"type": {
"kind": "base",
"name": "unsigned long"
},
"offset": 36
},
"CompareRoutine": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "base",
"name": "void"
}
},
"offset": 40
},
"AllocateRoutine": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "base",
"name": "void"
}
},
"offset": 44
},
"FreeRoutine": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "base",
"name": "void"
}
},
"offset": 48
},
"TableContext": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "base",
"name": "void"
}
},
"offset": 52
}
},
"kind": "struct",
"size": 56
},
"_LARGE_INTEGER": {
"fields": {
"HighPart": {
"offset": 4,
"type": {
"kind": "base",
"name": "long"
}
},
"LowPart": {
"offset": 0,
"type": {
"kind": "base",
"name": "unsigned long"
}
},
"QuadPart": {
"offset": 0,
"type": {
"kind": "base",
"name": "long long"
}
},
"u": {
"offset": 0,
"type": {
"kind": "struct",
"name": "__unnamed_2"
}
}
},
"kind": "union",
"size": 8
},
"__unnamed_2": {
"fields": {
"HighPart": {
"offset": 4,
"type": {
"kind": "base",
"name": "long"
}
},
"LowPart": {
"offset": 0,
"type": {
"kind": "base",
"name": "unsigned long"
}
}
},
"kind": "struct",
"size": 8
},
"SHIM_CACHE_ENTRY": {
"fields": {
"ListEntry": {
"offset": 0,
"type": {
"kind": "struct",
"name": "nt_symbols!_LIST_ENTRY"
}
},
"u1": {
"offset": 8,
"type": {
"kind": "base",
"name": "unsigned long"
}
},
"Path": {
"offset": 12,
"type": {
"kind": "struct",
"name": "nt_symbols!_UNICODE_STRING"
}
},
"ListEntryDetail": {
"offset": 20,
"type": {
"kind": "pointer",
"subtype": {
"kind": "struct",
"name": "SHIM_CACHE_ENTRY_DETAIL"
}
}
}
},
"kind": "struct",
"size": 24
},
"SHIM_CACHE_ENTRY_DETAIL": {
"fields": {
"u1": {
"offset": 0,
"type": {
"kind": "base",
"name": "unsigned long"
}
},
"InsertFlags": {
"offset": 4,
"type": {
"kind": "base",
"name": "unsigned long"
}
},
"LastModified": {
"offset": 8,
"type": {
"kind": "union",
"name": "_LARGE_INTEGER"
}
},
"BlobSize": {
"offset": 16,
"type": {
"kind": "base",
"name": "unsigned long"
}
},
"BlobBuffer": {
"offset": 20,
"type": {
"kind": "base",
"name": "unsigned long"
}
}
},
"kind": "struct",
"size": 24
}
},
"metadata": {
"producer": {
"version": "0.0.1",
"name": "dgmcdona by hand",
"datetime": "2024-07-05T18:28:00.000000+00:00"
},
"format": "4.0.0"
}
}
@@ -0,0 +1,348 @@
{
"symbols": {},
"enums": {},
"base_types": {
"unsigned long": {
"kind": "int",
"size": 4,
"signed": false,
"endian": "little"
},
"unsigned long long": {
"kind": "int",
"size": 8,
"signed": false,
"endian": "little"
},
"unsigned char": {
"kind": "char",
"size": 1,
"signed": false,
"endian": "little"
},
"pointer": {
"kind": "int",
"size": 8,
"signed": false,
"endian": "little"
},
"unsigned int": {
"kind": "int",
"size": 4,
"signed": false,
"endian": "little"
},
"unsigned short": {
"kind": "int",
"size": 2,
"signed": false,
"endian": "little"
},
"long": {
"kind": "int",
"size": 4,
"signed": false,
"endian": "little"
}
},
"user_types": {
"_RTL_BALANCED_LINKS": {
"fields": {
"Parent": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "struct",
"name": "_RTL_BALANCED_LINKS"
}
},
"offset": 0
},
"LeftChild": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "struct",
"name": "_RTL_BALANCED_LINKS"
}
},
"offset": 8
},
"RightChild": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "struct",
"name": "_RTL_BALANCED_LINKS"
}
},
"offset": 16
},
"Balance": {
"type": {
"kind": "base",
"name": "unsigned char"
},
"offset": 24
},
"Reserved": {
"type": {
"kind": "array",
"count": 3,
"subtype": {
"kind": "base",
"name": "unsigned char"
}
},
"offset": 25
}
},
"kind": "struct",
"size": 32
},
"_RTL_AVL_TABLE": {
"fields": {
"BalancedRoot": {
"type": {
"kind": "struct",
"name": "_RTL_BALANCED_LINKS"
},
"offset": 0
},
"OrderedPointer": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "base",
"name": "void"
}
},
"offset": 32
},
"WhichOrderedElement": {
"type": {
"kind": "base",
"name": "unsigned long"
},
"offset": 40
},
"NumberGenericTableElements": {
"type": {
"kind": "base",
"name": "unsigned long"
},
"offset": 44
},
"DepthOfTree": {
"type": {
"kind": "base",
"name": "unsigned long"
},
"offset": 48
},
"RestartKey": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "struct",
"name": "_RTL_BALANCED_LINKS"
}
},
"offset": 56
},
"DeleteCount": {
"type": {
"kind": "base",
"name": "unsigned long"
},
"offset": 64
},
"CompareRoutine": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "base",
"name": "void"
}
},
"offset": 72
},
"AllocateRoutine": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "base",
"name": "void"
}
},
"offset": 80
},
"FreeRoutine": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "base",
"name": "void"
}
},
"offset": 88
},
"TableContext": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "base",
"name": "void"
}
},
"offset": 96
}
},
"kind": "struct",
"size": 104
},
"SHIM_CACHE_HANDLE": {
"fields": {
"eresource": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "struct",
"name": "nt_symbols!_ERESOURCE"
}
},
"offset": 0
},
"rtl_avl_table": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "struct",
"name": "_RTL_AVL_TABLE"
}
},
"offset": 8
}
},
"kind": "struct",
"size": 8
},
"_LARGE_INTEGER": {
"fields": {
"HighPart": {
"offset": 4,
"type": {
"kind": "base",
"name": "long"
}
},
"LowPart": {
"offset": 0,
"type": {
"kind": "base",
"name": "unsigned long"
}
},
"QuadPart": {
"offset": 0,
"type": {
"kind": "base",
"name": "long long"
}
},
"u": {
"offset": 0,
"type": {
"kind": "struct",
"name": "__unnamed_2"
}
}
},
"kind": "union",
"size": 8
},
"__unnamed_2": {
"fields": {
"HighPart": {
"offset": 4,
"type": {
"kind": "base",
"name": "long"
}
},
"LowPart": {
"offset": 0,
"type": {
"kind": "base",
"name": "unsigned long"
}
}
},
"kind": "struct",
"size": 8
},
"SHIM_CACHE_ENTRY": {
"fields": {
"ListEntry": {
"offset": 0,
"type": {
"kind": "struct",
"name": "nt_symbols!_LIST_ENTRY"
}
},
"Path": {
"offset": 16,
"type": {
"kind": "struct",
"name": "nt_symbols!_UNICODE_STRING"
}
},
"LastModified": {
"offset": 32,
"type": {
"kind": "union",
"name": "_LARGE_INTEGER"
}
},
"InsertFlags": {
"offset": 40,
"type": {
"kind": "base",
"name": "unsigned int"
}
},
"ShimFlags": {
"offset": 44,
"type": {
"kind": "base",
"name": "unsigned int"
}
},
"BlobSize": {
"offset": 48,
"type": {
"kind": "base",
"name": "unsigned long long"
}
},
"BlobBuffer": {
"offset": 56,
"type": {
"kind": "base",
"name": "unsigned long long"
}
}
},
"kind": "struct",
"size": 64
}
},
"metadata": {
"producer": {
"version": "0.0.1",
"name": "dgmcdona by hand",
"datetime": "2024-07-05T18:28:00.000000+00:00"
},
"format": "4.0.0"
}
}
@@ -0,0 +1,348 @@
{
"symbols": {},
"enums": {},
"base_types": {
"unsigned long": {
"kind": "int",
"size": 4,
"signed": false,
"endian": "little"
},
"unsigned long long": {
"kind": "int",
"size": 8,
"signed": false,
"endian": "little"
},
"unsigned char": {
"kind": "char",
"size": 1,
"signed": false,
"endian": "little"
},
"pointer": {
"kind": "int",
"size": 4,
"signed": false,
"endian": "little"
},
"unsigned int": {
"kind": "int",
"size": 4,
"signed": false,
"endian": "little"
},
"unsigned short": {
"kind": "int",
"size": 2,
"signed": false,
"endian": "little"
},
"long": {
"kind": "int",
"size": 4,
"signed": false,
"endian": "little"
}
},
"user_types": {
"_RTL_BALANCED_LINKS": {
"fields": {
"Parent": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "struct",
"name": "_RTL_BALANCED_LINKS"
}
},
"offset": 0
},
"LeftChild": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "struct",
"name": "_RTL_BALANCED_LINKS"
}
},
"offset": 4
},
"RightChild": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "struct",
"name": "_RTL_BALANCED_LINKS"
}
},
"offset": 8
},
"Balance": {
"type": {
"kind": "base",
"name": "unsigned char"
},
"offset": 12
},
"Reserved": {
"type": {
"kind": "array",
"count": 3,
"subtype": {
"kind": "base",
"name": "unsigned char"
}
},
"offset": 12
}
},
"kind": "struct",
"size": 16
},
"_RTL_AVL_TABLE": {
"fields": {
"BalancedRoot": {
"type": {
"kind": "struct",
"name": "_RTL_BALANCED_LINKS"
},
"offset": 0
},
"OrderedPointer": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "base",
"name": "void"
}
},
"offset": 16
},
"WhichOrderedElement": {
"type": {
"kind": "base",
"name": "unsigned long"
},
"offset": 20
},
"NumberGenericTableElements": {
"type": {
"kind": "base",
"name": "unsigned long"
},
"offset": 24
},
"DepthOfTree": {
"type": {
"kind": "base",
"name": "unsigned long"
},
"offset": 28
},
"RestartKey": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "struct",
"name": "_RTL_BALANCED_LINKS"
}
},
"offset": 32
},
"DeleteCount": {
"type": {
"kind": "base",
"name": "unsigned long"
},
"offset": 36
},
"CompareRoutine": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "base",
"name": "void"
}
},
"offset": 40
},
"AllocateRoutine": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "base",
"name": "void"
}
},
"offset": 44
},
"FreeRoutine": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "base",
"name": "void"
}
},
"offset": 48
},
"TableContext": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "base",
"name": "void"
}
},
"offset": 52
}
},
"kind": "struct",
"size": 56
},
"SHIM_CACHE_HANDLE": {
"fields": {
"eresource": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "struct",
"name": "nt_symbols!_ERESOURCE"
}
},
"offset": 0
},
"rtl_avl_table": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "struct",
"name": "_RTL_AVL_TABLE"
}
},
"offset": 4
}
},
"kind": "struct",
"size": 8
},
"_LARGE_INTEGER": {
"fields": {
"HighPart": {
"offset": 4,
"type": {
"kind": "base",
"name": "long"
}
},
"LowPart": {
"offset": 0,
"type": {
"kind": "base",
"name": "unsigned long"
}
},
"QuadPart": {
"offset": 0,
"type": {
"kind": "base",
"name": "long long"
}
},
"u": {
"offset": 0,
"type": {
"kind": "struct",
"name": "__unnamed_2"
}
}
},
"kind": "union",
"size": 8
},
"__unnamed_2": {
"fields": {
"HighPart": {
"offset": 4,
"type": {
"kind": "base",
"name": "long"
}
},
"LowPart": {
"offset": 0,
"type": {
"kind": "base",
"name": "unsigned long"
}
}
},
"kind": "struct",
"size": 8
},
"SHIM_CACHE_ENTRY": {
"fields": {
"ListEntry": {
"offset": 0,
"type": {
"kind": "struct",
"name": "nt_symbols!_LIST_ENTRY"
}
},
"Path": {
"offset": 8,
"type": {
"kind": "struct",
"name": "nt_symbols!_UNICODE_STRING"
}
},
"LastModified": {
"offset": 16,
"type": {
"kind": "union",
"name": "_LARGE_INTEGER"
}
},
"InsertFlags": {
"offset": 24,
"type": {
"kind": "base",
"name": "unsigned int"
}
},
"ShimFlags": {
"offset": 28,
"type": {
"kind": "base",
"name": "unsigned int"
}
},
"BlobSize": {
"offset": 32,
"type": {
"kind": "base",
"name": "unsigned int"
}
},
"BlobBuffer": {
"offset": 36,
"type": {
"kind": "base",
"name": "unsigned long"
}
}
},
"kind": "struct",
"size": 40
}
},
"metadata": {
"producer": {
"version": "0.0.1",
"name": "dgmcdona by hand",
"datetime": "2024-07-05T18:28:00.000000+00:00"
},
"format": "4.0.0"
}
}
@@ -0,0 +1,392 @@
{
"symbols": {},
"enums": {},
"base_types": {
"unsigned long": {
"kind": "int",
"size": 4,
"signed": false,
"endian": "little"
},
"unsigned long long": {
"kind": "int",
"size": 8,
"signed": false,
"endian": "little"
},
"unsigned char": {
"kind": "char",
"size": 1,
"signed": false,
"endian": "little"
},
"pointer": {
"kind": "int",
"size": 8,
"signed": false,
"endian": "little"
},
"unsigned int": {
"kind": "int",
"size": 4,
"signed": false,
"endian": "little"
},
"unsigned short": {
"kind": "int",
"size": 2,
"signed": false,
"endian": "little"
},
"long": {
"kind": "int",
"size": 4,
"signed": false,
"endian": "little"
}
},
"user_types": {
"_RTL_BALANCED_LINKS": {
"fields": {
"Parent": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "struct",
"name": "_RTL_BALANCED_LINKS"
}
},
"offset": 0
},
"LeftChild": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "struct",
"name": "_RTL_BALANCED_LINKS"
}
},
"offset": 8
},
"RightChild": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "struct",
"name": "_RTL_BALANCED_LINKS"
}
},
"offset": 16
},
"Balance": {
"type": {
"kind": "base",
"name": "unsigned char"
},
"offset": 24
},
"Reserved": {
"type": {
"kind": "array",
"count": 3,
"subtype": {
"kind": "base",
"name": "unsigned char"
}
},
"offset": 25
}
},
"kind": "struct",
"size": 32
},
"_RTL_AVL_TABLE": {
"fields": {
"BalancedRoot": {
"type": {
"kind": "struct",
"name": "_RTL_BALANCED_LINKS"
},
"offset": 0
},
"OrderedPointer": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "base",
"name": "void"
}
},
"offset": 32
},
"WhichOrderedElement": {
"type": {
"kind": "base",
"name": "unsigned long"
},
"offset": 40
},
"NumberGenericTableElements": {
"type": {
"kind": "base",
"name": "unsigned long"
},
"offset": 44
},
"DepthOfTree": {
"type": {
"kind": "base",
"name": "unsigned long"
},
"offset": 48
},
"RestartKey": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "struct",
"name": "_RTL_BALANCED_LINKS"
}
},
"offset": 56
},
"DeleteCount": {
"type": {
"kind": "base",
"name": "unsigned long"
},
"offset": 64
},
"CompareRoutine": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "base",
"name": "void"
}
},
"offset": 72
},
"AllocateRoutine": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "base",
"name": "void"
}
},
"offset": 80
},
"FreeRoutine": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "base",
"name": "void"
}
},
"offset": 88
},
"TableContext": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "base",
"name": "void"
}
},
"offset": 96
}
},
"kind": "struct",
"size": 104
},
"SHIM_CACHE_HANDLE": {
"fields": {
"eresource": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "struct",
"name": "nt_symbols!_ERESOURCE"
}
},
"offset": 0
},
"rtl_avl_table": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "struct",
"name": "_RTL_AVL_TABLE"
}
},
"offset": 8
}
},
"kind": "struct",
"size": 8
},
"_LARGE_INTEGER": {
"fields": {
"HighPart": {
"offset": 4,
"type": {
"kind": "base",
"name": "long"
}
},
"LowPart": {
"offset": 0,
"type": {
"kind": "base",
"name": "unsigned long"
}
},
"QuadPart": {
"offset": 0,
"type": {
"kind": "base",
"name": "long long"
}
},
"u": {
"offset": 0,
"type": {
"kind": "struct",
"name": "__unnamed_2"
}
}
},
"kind": "union",
"size": 8
},
"__unnamed_2": {
"fields": {
"HighPart": {
"offset": 4,
"type": {
"kind": "base",
"name": "long"
}
},
"LowPart": {
"offset": 0,
"type": {
"kind": "base",
"name": "unsigned long"
}
}
},
"kind": "struct",
"size": 8
},
"SHIM_CACHE_ENTRY": {
"fields": {
"ListEntry": {
"offset": 0,
"type": {
"kind": "struct",
"name": "nt_symbols!_LIST_ENTRY"
}
},
"u1": {
"offset": 16,
"type": {
"kind": "base",
"name": "unsigned long long"
}
},
"Path": {
"offset": 24,
"type": {
"kind": "struct",
"name": "nt_symbols!_UNICODE_STRING"
}
},
"u2": {
"offset": 40,
"type": {
"kind": "base",
"name": "unsigned long long"
}
},
"u3": {
"offset": 48,
"type": {
"kind": "base",
"name": "unsigned long long"
}
},
"ListEntryDetail": {
"offset": 56,
"type": {
"kind": "pointer",
"subtype": {
"kind": "struct",
"name": "SHIM_CACHE_ENTRY_DETAIL"
}
}
}
},
"kind": "struct",
"size": 64
},
"SHIM_CACHE_ENTRY_DETAIL": {
"fields": {
"LastModified": {
"offset": 0,
"type": {
"kind": "struct",
"name": "_LARGE_INTEGER"
}
},
"InsertFlags": {
"offset": 8,
"type": {
"kind": "base",
"name": "unsigned int"
}
},
"ShimFlags": {
"offset": 12,
"type": {
"kind": "base",
"name": "unsigned int"
}
},
"BlobSize": {
"offset": 16,
"type": {
"kind": "base",
"name": "unsigned long long"
}
},
"Padding": {
"offset": 24,
"type": {
"kind": "base",
"name": "unsigned long long"
}
},
"BlobBuffer": {
"offset": 32,
"type": {
"kind": "base",
"name": "unsigned long long"
}
}
},
"kind": "struct",
"size": 40
}
},
"metadata": {
"producer": {
"version": "0.0.1",
"name": "dgmcdona by hand",
"datetime": "2024-07-05T18:28:00.000000+00:00"
},
"format": "4.0.0"
}
}
@@ -0,0 +1,386 @@
{
"symbols": {},
"enums": {},
"base_types": {
"unsigned long": {
"kind": "int",
"size": 4,
"signed": false,
"endian": "little"
},
"unsigned long long": {
"kind": "int",
"size": 8,
"signed": false,
"endian": "little"
},
"unsigned char": {
"kind": "char",
"size": 1,
"signed": false,
"endian": "little"
},
"pointer": {
"kind": "int",
"size": 4,
"signed": false,
"endian": "little"
},
"unsigned int": {
"kind": "int",
"size": 4,
"signed": false,
"endian": "little"
},
"unsigned short": {
"kind": "int",
"size": 2,
"signed": false,
"endian": "little"
},
"long": {
"kind": "int",
"size": 4,
"signed": false,
"endian": "little"
}
},
"user_types": {
"_RTL_BALANCED_LINKS": {
"fields": {
"Parent": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "struct",
"name": "_RTL_BALANCED_LINKS"
}
},
"offset": 0
},
"LeftChild": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "struct",
"name": "_RTL_BALANCED_LINKS"
}
},
"offset": 4
},
"RightChild": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "struct",
"name": "_RTL_BALANCED_LINKS"
}
},
"offset": 8
},
"Balance": {
"type": {
"kind": "base",
"name": "unsigned char"
},
"offset": 12
},
"Reserved": {
"type": {
"kind": "array",
"count": 3,
"subtype": {
"kind": "base",
"name": "unsigned char"
}
},
"offset": 12
}
},
"kind": "struct",
"size": 16
},
"_RTL_AVL_TABLE": {
"fields": {
"BalancedRoot": {
"type": {
"kind": "struct",
"name": "_RTL_BALANCED_LINKS"
},
"offset": 0
},
"OrderedPointer": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "base",
"name": "void"
}
},
"offset": 16
},
"WhichOrderedElement": {
"type": {
"kind": "base",
"name": "unsigned long"
},
"offset": 20
},
"NumberGenericTableElements": {
"type": {
"kind": "base",
"name": "unsigned long"
},
"offset": 24
},
"DepthOfTree": {
"type": {
"kind": "base",
"name": "unsigned long"
},
"offset": 28
},
"RestartKey": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "struct",
"name": "_RTL_BALANCED_LINKS"
}
},
"offset": 32
},
"DeleteCount": {
"type": {
"kind": "base",
"name": "unsigned long"
},
"offset": 36
},
"CompareRoutine": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "base",
"name": "void"
}
},
"offset": 40
},
"AllocateRoutine": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "base",
"name": "void"
}
},
"offset": 44
},
"FreeRoutine": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "base",
"name": "void"
}
},
"offset": 48
},
"TableContext": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "base",
"name": "void"
}
},
"offset": 52
}
},
"kind": "struct",
"size": 56
},
"SHIM_CACHE_HANDLE": {
"fields": {
"eresource": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "struct",
"name": "nt_symbols!_ERESOURCE"
}
},
"offset": 0
},
"rtl_avl_table": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "struct",
"name": "_RTL_AVL_TABLE"
}
},
"offset": 4
}
},
"kind": "struct",
"size": 8
},
"_LARGE_INTEGER": {
"fields": {
"HighPart": {
"offset": 4,
"type": {
"kind": "base",
"name": "long"
}
},
"LowPart": {
"offset": 0,
"type": {
"kind": "base",
"name": "unsigned long"
}
},
"QuadPart": {
"offset": 0,
"type": {
"kind": "base",
"name": "long long"
}
},
"u": {
"offset": 0,
"type": {
"kind": "struct",
"name": "__unnamed_2"
}
}
},
"kind": "union",
"size": 8
},
"__unnamed_2": {
"fields": {
"HighPart": {
"offset": 4,
"type": {
"kind": "base",
"name": "long"
}
},
"LowPart": {
"offset": 0,
"type": {
"kind": "base",
"name": "unsigned long"
}
}
},
"kind": "struct",
"size": 8
},
"SHIM_CACHE_ENTRY": {
"fields": {
"ListEntry": {
"offset": 0,
"type": {
"kind": "struct",
"name": "nt_symbols!_LIST_ENTRY"
}
},
"u1": {
"offset": 8,
"type": {
"kind": "base",
"name": "unsigned long"
}
},
"u2": {
"offset": 12,
"type": {
"kind": "base",
"name": "unsigned long"
}
},
"Path": {
"offset": 16,
"type": {
"kind": "struct",
"name": "nt_symbols!_UNICODE_STRING"
}
},
"u3": {
"offset": 24,
"type": {
"kind": "base",
"name": "unsigned long long"
}
},
"ListEntryDetail": {
"offset": 32,
"type": {
"kind": "pointer",
"subtype": {
"kind": "struct",
"name": "SHIM_CACHE_ENTRY_DETAIL"
}
}
}
},
"kind": "struct",
"size": 36
},
"SHIM_CACHE_ENTRY_DETAIL": {
"fields": {
"LastModified": {
"offset": 0,
"type": {
"kind": "struct",
"name": "_LARGE_INTEGER"
}
},
"InsertFlags": {
"offset": 8,
"type": {
"kind": "base",
"name": "unsigned int"
}
},
"ShimFlags": {
"offset": 12,
"type": {
"kind": "base",
"name": "unsigned long"
}
},
"BlobSize": {
"offset": 16,
"type": {
"kind": "base",
"name": "unsigned long"
}
},
"BlobBuffer": {
"offset": 20,
"type": {
"kind": "base",
"name": "unsigned long"
}
}
},
"kind": "struct",
"size": 24
}
},
"metadata": {
"producer": {
"version": "0.0.1",
"name": "dgmcdona by hand",
"datetime": "2024-07-05T18:28:00.000000+00:00"
},
"format": "4.0.0"
}
}
@@ -0,0 +1,485 @@
{
"symbols": {},
"enums": {},
"base_types": {
"unsigned long": {
"kind": "int",
"size": 4,
"signed": false,
"endian": "little"
},
"unsigned long long": {
"kind": "int",
"size": 8,
"signed": false,
"endian": "little"
},
"unsigned char": {
"kind": "char",
"size": 1,
"signed": false,
"endian": "little"
},
"pointer": {
"kind": "int",
"size": 4,
"signed": false,
"endian": "little"
},
"unsigned int": {
"kind": "int",
"size": 4,
"signed": false,
"endian": "little"
},
"unsigned short": {
"kind": "int",
"size": 2,
"signed": false,
"endian": "little"
},
"long": {
"kind": "int",
"size": 4,
"signed": false,
"endian": "little"
}
},
"user_types": {
"_LARGE_INTEGER": {
"fields": {
"HighPart": {
"offset": 4,
"type": {
"kind": "base",
"name": "long"
}
},
"LowPart": {
"offset": 0,
"type": {
"kind": "base",
"name": "unsigned long"
}
},
"QuadPart": {
"offset": 0,
"type": {
"kind": "base",
"name": "long long"
}
},
"u": {
"offset": 0,
"type": {
"kind": "struct",
"name": "__unnamed_2"
}
}
},
"kind": "union",
"size": 8
},
"__unnamed_2": {
"fields": {
"HighPart": {
"offset": 4,
"type": {
"kind": "base",
"name": "long"
}
},
"LowPart": {
"offset": 0,
"type": {
"kind": "base",
"name": "unsigned long"
}
}
},
"kind": "struct",
"size": 8
},
"_RTL_BALANCED_LINKS": {
"fields": {
"Parent": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "struct",
"name": "_RTL_BALANCED_LINKS"
}
},
"offset": 0
},
"LeftChild": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "struct",
"name": "_RTL_BALANCED_LINKS"
}
},
"offset": 4
},
"RightChild": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "struct",
"name": "_RTL_BALANCED_LINKS"
}
},
"offset": 8
},
"Balance": {
"type": {
"kind": "base",
"name": "unsigned char"
},
"offset": 12
},
"Reserved": {
"type": {
"kind": "array",
"count": 3,
"subtype": {
"kind": "base",
"name": "unsigned char"
}
},
"offset": 12
}
},
"kind": "struct",
"size": 16
},
"_RTL_AVL_TABLE": {
"fields": {
"BalancedRoot": {
"type": {
"kind": "struct",
"name": "_RTL_BALANCED_LINKS"
},
"offset": 0
},
"OrderedPointer": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "base",
"name": "void"
}
},
"offset": 16
},
"WhichOrderedElement": {
"type": {
"kind": "base",
"name": "unsigned long"
},
"offset": 20
},
"NumberGenericTableElements": {
"type": {
"kind": "base",
"name": "unsigned long"
},
"offset": 24
},
"DepthOfTree": {
"type": {
"kind": "base",
"name": "unsigned long"
},
"offset": 28
},
"RestartKey": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "struct",
"name": "_RTL_BALANCED_LINKS"
}
},
"offset": 32
},
"DeleteCount": {
"type": {
"kind": "base",
"name": "unsigned long"
},
"offset": 36
},
"CompareRoutine": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "base",
"name": "void"
}
},
"offset": 40
},
"AllocateRoutine": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "base",
"name": "void"
}
},
"offset": 44
},
"FreeRoutine": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "base",
"name": "void"
}
},
"offset": 48
},
"TableContext": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "base",
"name": "void"
}
},
"offset": 52
}
},
"kind": "struct",
"size": 56
},
"SHIM_CACHE_HANDLE": {
"fields": {
"eresource": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "struct",
"name": "nt_symbols!_ERESOURCE"
}
},
"offset": 0
},
"rtl_avl_table": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "struct",
"name": "_RTL_AVL_TABLE"
}
},
"offset": 4
}
},
"kind": "struct",
"size": 8
},
"SHIM_CACHE_HEADER": {
"fields": {
"Magic": {
"type": {
"kind": "base",
"name": "unsigned int"
},
"offset": 0
},
"u1": {
"type": {
"kind": "base",
"name": "unsigned int"
},
"offset": 4
},
"NumEntries": {
"type": {
"kind": "base",
"name": "unsigned int"
},
"offset": 8
},
"u2": {
"type": {
"kind": "base",
"name": "unsigned int"
},
"offset": 12
}
},
"kind": "struct",
"size": 400
},
"SHIM_CACHE_ENTRY": {
"fields": {
"Path": {
"type": {
"count": 520,
"kind": "array",
"subtype": {
"kind": "base",
"name": "unsigned char"
}
},
"offset": 0
},
"LastModified": {
"type": {
"kind": "union",
"name": "LARGE_INTEGER"
},
"offset": 4
},
"FileSize": {
"type": {
"kind": "base",
"name": "long long"
},
"offset": 8
},
"LastUpdate": {
"type": {
"kind": "union",
"name": "LARGE_INTEGER"
},
"offset": 12
}
},
"kind": "struct",
"size": 552
},
"_SEGMENT": {
"fields": {
"ControlArea": {
"offset": 0,
"type": {
"kind": "pointer",
"subtype": {
"kind": "struct",
"name": "nt_symbols!_CONTROL_AREA"
}
}
},
"TotalNumberOfPtes": {
"offset": 4,
"type": {
"kind": "base",
"name": "unsigned long"
}
},
"NonExtendedPtes": {
"offset": 8,
"type": {
"kind": "base",
"name": "unsigned long"
}
},
"WritableUserReferences": {
"offset": 12,
"type": {
"kind": "base",
"name": "unsigned long"
}
},
"SizeOfSegment": {
"offset": 16,
"type": {
"kind": "base",
"name": "unsigned long"
}
},
"SegmentPteTemplate": {
"offset": 24,
"type": {
"kind": "struct",
"name": "nt_symbols!_MMPTE"
}
},
"NumberOfCommittedPages": {
"offset": 28,
"type": {
"kind": "base",
"name": "unsigned long"
}
},
"ExtendInfo": {
"offset": 32,
"type": {
"kind": "pointer",
"subtype": {
"kind": "struct",
"name": "nt_symbols!_MMEXTEND_INFO"
}
}
},
"SystemImageBase": {
"offset": 36,
"type": {
"kind": "pointer",
"subtype": {
"kind": "base",
"name": "void"
}
}
},
"BasedAddress": {
"offset": 40,
"type": {
"kind": "base",
"name": "long"
}
},
"u1": {
"offset": 44,
"type": {
"kind": "base",
"name": "long"
}
},
"u2": {
"offset": 48,
"type": {
"kind": "base",
"name": "long"
}
},
"PrototypePte": {
"offset": 52,
"type": {
"kind": "pointer",
"subtype": {
"kind": "struct",
"name": "nt_symbols!_MMPTE"
}
}
},
"ThePtes": {
"offset": 60,
"type": {
"kind": "array",
"count": 1,
"subtype": {
"kind": "base",
"name": "nt_symbols!_MMPTE"
}
}
}
},
"kind": "struct",
"size": 64
}
},
"metadata": {
"producer": {
"version": "0.0.1",
"name": "dgmcdona by hand",
"datetime": "2024-07-05T18:28:00.000000+00:00"
},
"format": "4.0.0"
}
}
@@ -0,0 +1,485 @@
{
"symbols": {},
"enums": {},
"base_types": {
"unsigned long": {
"kind": "int",
"size": 4,
"signed": false,
"endian": "little"
},
"unsigned long long": {
"kind": "int",
"size": 8,
"signed": false,
"endian": "little"
},
"unsigned char": {
"kind": "char",
"size": 1,
"signed": false,
"endian": "little"
},
"pointer": {
"kind": "int",
"size": 4,
"signed": false,
"endian": "little"
},
"unsigned int": {
"kind": "int",
"size": 4,
"signed": false,
"endian": "little"
},
"unsigned short": {
"kind": "int",
"size": 2,
"signed": false,
"endian": "little"
},
"long": {
"kind": "int",
"size": 4,
"signed": false,
"endian": "little"
}
},
"user_types": {
"_LARGE_INTEGER": {
"fields": {
"HighPart": {
"offset": 4,
"type": {
"kind": "base",
"name": "long"
}
},
"LowPart": {
"offset": 0,
"type": {
"kind": "base",
"name": "unsigned long"
}
},
"QuadPart": {
"offset": 0,
"type": {
"kind": "base",
"name": "long long"
}
},
"u": {
"offset": 0,
"type": {
"kind": "struct",
"name": "__unnamed_2"
}
}
},
"kind": "union",
"size": 8
},
"__unnamed_2": {
"fields": {
"HighPart": {
"offset": 4,
"type": {
"kind": "base",
"name": "long"
}
},
"LowPart": {
"offset": 0,
"type": {
"kind": "base",
"name": "unsigned long"
}
}
},
"kind": "struct",
"size": 8
},
"_RTL_BALANCED_LINKS": {
"fields": {
"Parent": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "struct",
"name": "_RTL_BALANCED_LINKS"
}
},
"offset": 0
},
"LeftChild": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "struct",
"name": "_RTL_BALANCED_LINKS"
}
},
"offset": 4
},
"RightChild": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "struct",
"name": "_RTL_BALANCED_LINKS"
}
},
"offset": 8
},
"Balance": {
"type": {
"kind": "base",
"name": "unsigned char"
},
"offset": 12
},
"Reserved": {
"type": {
"kind": "array",
"count": 3,
"subtype": {
"kind": "base",
"name": "unsigned char"
}
},
"offset": 12
}
},
"kind": "struct",
"size": 16
},
"_RTL_AVL_TABLE": {
"fields": {
"BalancedRoot": {
"type": {
"kind": "struct",
"name": "_RTL_BALANCED_LINKS"
},
"offset": 0
},
"OrderedPointer": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "base",
"name": "void"
}
},
"offset": 16
},
"WhichOrderedElement": {
"type": {
"kind": "base",
"name": "unsigned long"
},
"offset": 20
},
"NumberGenericTableElements": {
"type": {
"kind": "base",
"name": "unsigned long"
},
"offset": 24
},
"DepthOfTree": {
"type": {
"kind": "base",
"name": "unsigned long"
},
"offset": 28
},
"RestartKey": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "struct",
"name": "_RTL_BALANCED_LINKS"
}
},
"offset": 32
},
"DeleteCount": {
"type": {
"kind": "base",
"name": "unsigned long"
},
"offset": 36
},
"CompareRoutine": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "base",
"name": "void"
}
},
"offset": 40
},
"AllocateRoutine": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "base",
"name": "void"
}
},
"offset": 44
},
"FreeRoutine": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "base",
"name": "void"
}
},
"offset": 48
},
"TableContext": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "base",
"name": "void"
}
},
"offset": 52
}
},
"kind": "struct",
"size": 56
},
"SHIM_CACHE_HEADER": {
"fields": {
"Magic": {
"type": {
"kind": "base",
"name": "unsigned int"
},
"offset": 0
},
"u1": {
"type": {
"kind": "base",
"name": "unsigned int"
},
"offset": 4
},
"NumEntries": {
"type": {
"kind": "base",
"name": "unsigned int"
},
"offset": 8
},
"u2": {
"type": {
"kind": "base",
"name": "unsigned int"
},
"offset": 12
}
},
"kind": "struct",
"size": 400
},
"SHIM_CACHE_ENTRY": {
"fields": {
"Path": {
"type": {
"count": 520,
"kind": "array",
"subtype": {
"kind": "base",
"name": "unsigned char"
}
},
"offset": 0
},
"LastModified": {
"type": {
"kind": "union",
"name": "_LARGE_INTEGER"
},
"offset": 528
},
"FileSize": {
"type": {
"kind": "base",
"name": "long long"
},
"offset": 536
},
"LastUpdate": {
"type": {
"kind": "union",
"name": "_LARGE_INTEGER"
},
"offset": 544
}
},
"kind": "struct",
"size": 552
},
"SHIM_CACHE_HANDLE": {
"fields": {
"eresource": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "struct",
"name": "nt_symbols!ERESOURCE"
}
},
"offset": 0
},
"rtl_avl_table": {
"type": {
"kind": "pointer",
"subtype": {
"kind": "struct",
"name": "_RTL_AVL_TABLE"
}
},
"offset": 4
}
},
"kind": "struct",
"size": 8
},
"_SEGMENT": {
"fields": {
"ControlArea": {
"offset": 0,
"type": {
"kind": "pointer",
"subtype": {
"kind": "struct",
"name": "nt_symbols!_CONTROL_AREA"
}
}
},
"TotalNumberOfPtes": {
"offset": 4,
"type": {
"kind": "base",
"name": "unsigned long"
}
},
"NonExtendedPtes": {
"offset": 8,
"type": {
"kind": "base",
"name": "unsigned long"
}
},
"WritableUserReferences": {
"offset": 12,
"type": {
"kind": "base",
"name": "unsigned long"
}
},
"SizeOfSegment": {
"offset": 16,
"type": {
"kind": "base",
"name": "unsigned long"
}
},
"SegmentPteTemplate": {
"offset": 24,
"type": {
"kind": "struct",
"name": "nt_symbols!_MMPTE"
}
},
"NumberOfCommittedPages": {
"offset": 32,
"type": {
"kind": "base",
"name": "unsigned long"
}
},
"ExtendInfo": {
"offset": 36,
"type": {
"kind": "pointer",
"subtype": {
"kind": "struct",
"name": "nt_symbols!_MMEXTEND_INFO"
}
}
},
"SystemImageBase": {
"offset": 40,
"type": {
"kind": "pointer",
"subtype": {
"kind": "base",
"name": "void"
}
}
},
"BasedAddress": {
"offset": 44,
"type": {
"kind": "base",
"name": "long"
}
},
"u1": {
"offset": 48,
"type": {
"kind": "base",
"name": "long"
}
},
"u2": {
"offset": 52,
"type": {
"kind": "base",
"name": "long"
}
},
"PrototypePte": {
"offset": 56,
"type": {
"kind": "pointer",
"subtype": {
"kind": "struct",
"name": "nt_symbols!_MMPTE"
}
}
},
"ThePtes": {
"offset": 64,
"type": {
"kind": "array",
"count": 1,
"subtype": {
"kind": "base",
"name": "nt_symbols!_MMPTE"
}
}
}
},
"kind": "struct",
"size": 72
}
},
"metadata": {
"producer": {
"version": "0.0.1",
"name": "dgmcdona by hand",
"datetime": "2024-07-05T18:28:00.000000+00:00"
},
"format": "4.0.0"
}
}
@@ -114,6 +114,24 @@ is_windows_xp = OsDistinguisher(
],
)
is_windows_xp_sp2 = OsDistinguisher(
version_check=lambda x: (5, 1) <= x < (5, 2),
fallback_checks=[
("KdCopyDataBlock", None, False),
("_MMFREE_POOL_ENTRY", None, False),
("_HANDLE_TABLE", "HandleCount", True),
],
)
is_windows_xp_sp3 = OsDistinguisher(
version_check=lambda x: (5, 1) <= x < (5, 2),
fallback_checks=[
("KdCopyDataBlock", None, False),
("_MMFREE_POOL_ENTRY", None, True),
("_HANDLE_TABLE", "HandleCount", True),
],
)
is_xp_or_2003 = OsDistinguisher(
version_check=lambda x: (5, 1) <= x < (6, 0),
fallback_checks=[
@@ -122,6 +140,15 @@ is_xp_or_2003 = OsDistinguisher(
],
)
is_2003 = OsDistinguisher(
version_check=lambda x: (5, 2) <= x < (5, 3),
fallback_checks=[
("KdCopyDataBlock", None, False),
("_HANDLE_TABLE", "HandleCount", True),
("_MM_AVL_TABLE", None, True),
],
)
is_win10_up_to_15063 = OsDistinguisher(
version_check=lambda x: (10, 0) <= x < (10, 0, 15063),
fallback_checks=[