8cba70dc90
- Add 8 files present in docker/fifa17-python/tools but missing from the top-level tree: fut_accounts.py + 7 test_*.py contracts (all committed in the server's docker tree; byte-identical to the running image). - Preserve newer responder work already matching the running container: utas_server.py (offlineSeason), lsx_responder_v2.py (OPENFUT_BIND), blaze_responder_v3b.py, autopatch.py, pow_server.py, fut_store.py, test_fut_contract.py, fifa17-hook-m1.sh. - Add 30 newer ghidra_queries (draft purchase/state, SBC 9-26, runtime registries). Local tree is now a strict superset of B with all shared files byte-identical.
22 lines
695 B
Python
22 lines
695 B
Python
"""Find completion callbacks that test the same status field at response+0x1c."""
|
|
|
|
patterns = (
|
|
bytes.fromhex("83 7a 1c 00"), # cmp dword ptr [rdx+1c],0
|
|
bytes.fromhex("83 79 1c 00"), # cmp dword ptr [rcx+1c],0
|
|
bytes.fromhex("83 78 1c 00"), # cmp dword ptr [rax+1c],0
|
|
)
|
|
|
|
seen = set()
|
|
for pattern in patterns:
|
|
print("\npattern", pattern.hex())
|
|
for hit in find_all(pattern):
|
|
f = func(hit)
|
|
if f is None:
|
|
continue
|
|
entry = int(f.getEntryPoint().getOffset())
|
|
if entry in seen:
|
|
continue
|
|
seen.add(entry)
|
|
print("\n=== hit %#x function %#x %s ===" % (hit, entry, f.getName()))
|
|
print(dec(f, 180)[:5000])
|