fix: force success path after online verify regardless of result

- Patch at 0xF90FC: replace 'test al,al; jnz' with 'mov al,1; jmp'
- Forces success path (write registry) even when server rejects
- 8 patches total: 1x return 1 + 5x NOP + 1x jz->jmp + 1x force success
This commit is contained in:
2026-07-31 07:45:46 +08:00
parent 45d16cfcde
commit aacec14d3e
+2
View File
@@ -81,6 +81,8 @@ PATCHES = [
'jz -> jmp (skip lm.dll key validation)'),
(0x0F911A, b'\x0F\x84\x9A\x02\x00\x00', b'\x90\x90\x90\x90\x90\x90',
'NOP: BADF3300 error exit (continue offline path)'),
(0x0F90FC, b'\x84\xC0\x0F\x85\x17\x01\x00\x00', b'\xB0\x01\xE9\x18\x01\x00\x00\x90',
'Force success after online verify (mov al,1; jmp)'),
]