Subscriber Bit Patching signature update

Updated the signature to be compatible with older versions of clr.dll. Integrated into the BOF
This commit is contained in:
loland
2025-12-04 22:49:18 +08:00
parent 14740195e0
commit 1780e0ac41
4 changed files with 27 additions and 114 deletions
+1 -1
View File
@@ -70,7 +70,7 @@ int* findDotNETRuntimeEnableBits(HMODULE clrBase) {
for (int i = 0; i < clrSize; i++) {
unsigned char* addr = (unsigned char*)clrBase + i;
// matches "test cs:Microsoft_Windows_DotNETRuntimeEnableBits, 80000000h"
// matches "test cs:Microsoft_Windows_DotNETRuntimeEnableBits, 80000000h/40000000h"
if (addr[0] != 0xf7 || addr[1] != 0x5) {
continue;
}