添加了新版本HalpOriginalPerformanceCounter的检测逻辑 - #8
Open
SamsungSHC wants to merge 2 commits into
Open
Conversation
Added additional pattern search for HalpOriginalPerformanceCounter in Windows 11 build 29648.
SamsungSHC
commented
Aug 26, 2026
SamsungSHC
left a comment
Author
There was a problem hiding this comment.
不好意思,我对git不熟,我在vs改完直接扔过来了!
具体修改在现在的429~438行
if (!addressHalpOriginalPerformanceCounter)
{
//在Win11 29648 反汇编得到的特征码
addressHalpOriginalPerformanceCounter = KUtils::FindPatternImage(ntoskrnl,
"\x48\xF7\xE2\x4C\x03\xDA\x48\x8B\x05\x00\x00\x00\x00\x48\x3B\xF0",
"xxxxxxxxx????xxx");
if (addressHalpOriginalPerformanceCounter)
{
addressHalpOriginalPerformanceCounter += 6;
}
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
如题。在Windows 11 Build 29648 Insider(虚拟机)中此项目已不可用,我扫描了此版本ntoskrnl的特征码并添加逻辑,该分支已可以在29648正常挂钩