Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.MD
Original file line number Diff line number Diff line change
Expand Up @@ -125,12 +125,12 @@ constexpr ULONG BASE_ALTITUDE = 375133;
- `ObRegisterCallbacks` - Object Manager handle interception
- `ZwQuerySystemInformation(SystemExtendedHandleInformation)` - Handle enumeration
- `ZwQueryVirtualMemory` - Memory region inspection
- `KeStackAttachProcess` - Cross-process context switching
- `ObOpenObjectByPointer` - Kernel handle from object pointer
- `SeLocateProcessImageName` - Process name retrieval

**Supported Platforms**: Windows 10+ (x64)
**Driver Type**: WDM (Windows Driver Model)
**IRQL Requirements**: PASSIVE_LEVEL

## Special requirements
It was required to add the /INTEGRITYCHECK option for the linker, this is because of a restriction of ObRegisterCallbacks. It will return a 0xC0000022 (STATUS_ACCESS_DENIED) if not detected as a signed image
It was required to add the /INTEGRITYCHECK option for the linker, this is because of a restriction of ObRegisterCallbacks. It will return a 0xC0000022 (STATUS_ACCESS_DENIED) if not detected as a signed image
Loading