-
Notifications
You must be signed in to change notification settings - Fork 10
fix: Windows 11 25H2 26200.7462 ntokrnl.exe offsets #7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -8,6 +8,7 @@ This is the implementation for the Valthrun driver protocol as a kernel driver. | |||||||||
|
|
||||||||||
| - Visual Studio 2022 | ||||||||||
| - Windows Kernel Development Kit | ||||||||||
| - LLVM Compiler Infrastructure | ||||||||||
| - Cargo Make (`cargo install --force cargo-make`) | ||||||||||
|
|
||||||||||
| ### Build the driver | ||||||||||
|
|
@@ -17,7 +18,8 @@ This is the implementation for the Valthrun driver protocol as a kernel driver. | |||||||||
| cd driver-standalone | ||||||||||
| # Create a release build. | ||||||||||
| # The result will be located at "../target/x86_64-pc-windows-msvc/release/valthrun-driver.sys" | ||||||||||
| # The result will be located at "../target/x86_64-pc-windows-msvc/release/valthrun-driver.dll" | ||||||||||
| cargo b -r | ||||||||||
| # Now we Strip the driver to get valthrun-driver.sys via Strip-Driver.ps1 linking input to espected realese build "../target/x86_64-pc-windows-msvc/release/valthrun-driver.dll". | ||||||||||
|
||||||||||
| # Now we Strip the driver to get valthrun-driver.sys via Strip-Driver.ps1 linking input to espected realese build "../target/x86_64-pc-windows-msvc/release/valthrun-driver.dll". | |
| # Now we Strip the driver to get valthrun-driver.sys via Strip-Driver.ps1 linking input to expected realese build "../target/x86_64-pc-windows-msvc/release/valthrun-driver.dll". |
Copilot
AI
Dec 16, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Spelling error: "realese" should be "release".
| # Now we Strip the driver to get valthrun-driver.sys via Strip-Driver.ps1 linking input to espected realese build "../target/x86_64-pc-windows-msvc/release/valthrun-driver.dll". | |
| # Now we Strip the driver to get valthrun-driver.sys via Strip-Driver.ps1 linking input to expected release build "../target/x86_64-pc-windows-msvc/release/valthrun-driver.dll". |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -108,6 +108,14 @@ pub fn initialize_nt_offsets() -> anyhow::Result<()> { | |
| 0x01, | ||
| 0x05, | ||
| ), | ||
|
|
||
| /* Win 11 25H2 26200.7462 */ | ||
| Signature::offset( | ||
| obfstr!("_EPROCESS.ThreadListHead (26200.7462)"), | ||
| obfstr!("4C 8D B1 ? ? ? ? 48 8B F2"), | ||
| 0x03, | ||
| ), | ||
|
Comment on lines
+113
to
+117
|
||
|
|
||
|
||
| /* Windows 10 19045.4046 */ | ||
| Signature::relative_address( | ||
| obfstr!("PsGetNextProcess (19045.4046)"), | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Trailing whitespace detected. Remove the trailing whitespace at the end of this line to maintain code consistency.