Linux:
#!/usr/bin/env python3
import sys
def patch_binary(filepath):
with open(filepath, 'r+b') as f:
data = bytearray(f.read())
patches = [
# Patch 1: 0x585cc0 -> MOV byte ptr [RDI + 0x5], 1
(0x585cc0, bytes.fromhex('C6 47 05 01')),
# Patch 2: 0x1484ee -> JMP +0x3e
(0x1484ee, bytes ...
Search found 1 match
- Tue Mar 03, 2026 3:45 pm
- Forum: User Releases
- Topic: Sublime 4200 patcher (Max/Linux)
- Replies: 0
- Views: 62