Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save chenkovsky/b7d6eee67b8cd358f105d2201d20c6db to your computer and use it in GitHub Desktop.
Save chenkovsky/b7d6eee67b8cd358f105d2201d20c6db to your computer and use it in GitHub Desktop.
Sublime Text 3 patching

Ref: https://gist.github.com/vertexclique/9839383

For 3083 build

Mac OS X

OFFSET ORIGINAL CRACKED
0x69cf 85 39
printf '\x39' | dd seek=$((0x69cf)) conv=notrunc bs=1 of=/path/to/sublime_text

Linux x86_64

OFFSET ORIGINAL CRACKED
0xcbe3 85 39
printf '\x39' | dd seek=$((0xcbe3)) conv=notrunc bs=1 of=/path/to/sublime_text

Window x86_64

OFFSET ORIGINAL CRACKED
0xe21b3 85 3B

All download

Download

For 3080 build

http://pan.baidu.com/s/1hqH2Pko#path=%252F

http://goo.gl/tU516d

Patch via command:

Mac OS X command:

Using sed
brew install gnu-sed
gsed -i 's/\xb5\xa3\x06\x00\x85\xc0/\xb5\xa3\x06\x00\x39\xc0/' /path/to/sublime_text
Using vim editor
:%!xxd
:%s/84 a706 0085/84 a706 0039/
:%!xxd -r
:wq

Linux command to patch:

sudo sed -i 's/\xf3\x01\x00\x85\xc0\x0f/\xf3\x01\x00\x39\xc0\x0f/' /opt/sublime_text/sublime_text

Windows 64

Sublime Text 3, build 3080 (dev) for Windows x64

OFFSET ORIGINAL CRACKED
0xe2de3 85 3B
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment