Skip to content

Instantly share code, notes, and snippets.

@maboloshi
Last active May 30, 2025 14:46
Show Gist options
  • Save maboloshi/feaa63c35f4c2baab24c9aaf9b3f4e47 to your computer and use it in GitHub Desktop.
Save maboloshi/feaa63c35f4c2baab24c9aaf9b3f4e47 to your computer and use it in GitHub Desktop.
Crack Sublime Text and Sublime Merge

Note

  1. If you can, please purchase the genuine license through the official channel and support the software developer.
  2. All crack methods here are implemented by @leogx9r.
  3. All data is not guaranteed to be authoritative or correct, nor has it been tested across the platform, nor is it responsible for any errors, lost data, etc. in practice! Please assess yourself!!!
  4. I am only within the ability to update the information based on the existing crack methods until the existing rules fail.

Sublime Patcher Script for personal use

The code implementation is very poor.
https://gist.github.com/maboloshi/5baecbddacf43855f13240b63be5673d

ToC

Sublime Text Sublime Merge
Stable channel win / linux / mac / mac-arm64 win / linux / mac / mac-arm64
Dev channel win / linux / mac / mac-arm64 win / linux / mac / mac-arm64

How to Crack Sublime Text, Stable Channel, Build 4152

Thanks to @leogx9r for providing cracking methods.

https://gist.github.com/JerryLokjianming/71dac05f27f8c96ad1c8941b88030451?permalink_comment_id=3762200#gistcomment-3762200 https://gist.github.com/maboloshi/feaa63c35f4c2baab24c9aaf9b3f4e47?permalink_comment_id=3802197#gistcomment-3802197 https://gist.github.com/maboloshi/feaa63c35f4c2baab24c9aaf9b3f4e47?permalink_comment_id=3803204#gistcomment-3803204

Win64

Desciption Offset Original Patched
Initial License Check 0x000A8D78 55 41 57 41 48 31 C0 C3
Persistent License Check 1 0x000071D0 E8 17 FE 20 00 90 90 90 90 90
Persistent License Check 2 0x000071E9 E8 FE FD 20 00 90 90 90 90 90
Disable Server Validation Thread 0x000AAB3E 55 56 57 48 83 EC 30 48 31 C0 48 FF C0 C3
Disable License Notify Thread 0x000A8945 55 C3
Disable Crash Reporter 0x00000400 41 C3

for 4117, 4118: https://gist.github.com/maboloshi/feaa63c35f4c2baab24c9aaf9b3f4e47?permalink_comment_id=3927712#gistcomment-3927712

Bat Script
:: for Win64
cd /d "C:\Program Files\Sublime Text" || exit
certutil -hashfile sublime_text.exe md5 | find /i "15BB398D5663B89A44372EF15F70A46F" || exit
echo 000A8D78: 48 31 C0 C3          | xxd -r - sublime_text.exe
echo 000071D0: 90 90 90 90 90       | xxd -r - sublime_text.exe
echo 000071E9: 90 90 90 90 90       | xxd -r - sublime_text.exe
echo 000AAB3E: 48 31 C0 48 FF C0 C3 | xxd -r - sublime_text.exe
echo 000A8945: C3                   | xxd -r - sublime_text.exe
echo 00000400: C3                   | xxd -r - sublime_text.exe

PS:xxd.exe extracted from git for windows

The license can be any string.

Blocked by Microsoft Defender SmartScreen -> More Info -> Run Anyway

Screenshot
![Screenshot](https://i.imgur.com/t4QlRZ6.png)

![Screenshot](https://i.imgur.com/18372Rh.png)

Linux

Desciption Offset Original Patched
Initial License Check 0x00415013 55 41 57 41 48 31 C0 C3
Persistent License Check 1 0x00409037 E8 C0 CC 12 00 90 90 90 90 90
Persistent License Check 2 0x0040904F E8 A8 CC 12 00 90 90 90 90 90
Disable Server Validation Thread 0x00416CA4 55 41 56 53 41 89 F6 48 31 C0 48 FF C0 C3
Disable License Notify Thread 0x00414C82 41 C3
Disable Crash Reporter 0x003FA310 55 C3
Bash Script
# for Linux
cd /opt/sublime_text || exit
md5sum -c <<<"7038C3B1CC79504602DA70599D4CCCE9  sublime_text" || exit
echo 00415013: 48 31 C0 C3          | xxd -r - sublime_text
echo 00409037: 90 90 90 90 90       | xxd -r - sublime_text
echo 0040904F: 90 90 90 90 90       | xxd -r - sublime_text
echo 00416CA4: 48 31 C0 48 FF C0 C3 | xxd -r - sublime_text
echo 00414C82: C3                   | xxd -r - sublime_text
echo 003FA310: C3                   | xxd -r - sublime_text

macOS

Desciption Offset Original Patched
Initial License Check 0x0009F313 55 48 89 E5 48 31 C0 C3
Persistent License Check 1 0x00009CEF E8 3C 2D 13 00 90 90 90 90 90
Persistent License Check 2 0x00009D07 E8 24 2D 13 00 90 90 90 90 90
Disable Server Validation Thread 0x000A085D 55 48 89 E5 41 57 41 48 31 C0 48 FF C0 C3
Disable License Notify Thread 0x0009EF0E 55 C3
Disable Crash Reporter 0x00002A87 55 C3
Bash Script
# for MacOS
cd "/Applications/Sublime Text.app/Contents/MacOS/" || exit
md5 -q sublime_text | grep -i "B07FDB3A228A46DF1CC178FE60B64D3B" || exit
echo 0009F313: 48 31 C0 C3          | xxd -r - sublime_text
echo 00009CEF: 90 90 90 90 90       | xxd -r - sublime_text
echo 00009D07: 90 90 90 90 90       | xxd -r - sublime_text
echo 000A085D: 48 31 C0 48 FF C0 C3 | xxd -r - sublime_text
echo 0009EF0E: C3                   | xxd -r - sublime_text
echo 00002A87: C3                   | xxd -r - sublime_text
Re-Sign App
codesign --force --deep --sign - "/Applications/Sublime Text.app"

Requires Apple Command Line Tools to be installed

macOS (ARM64)

Based on: https://gist.github.com/maboloshi/feaa63c35f4c2baab24c9aaf9b3f4e47?permalink_comment_id=3929427#gistcomment-3929427

Desciption Offset Original Patched
Initial License Check 0x01060C90 FC 6F BA A9 E6 03 1E AA E0 03 1F AA C0 03 5F D6
Persistent License Check 1 0x00FEAD18 40 BB 03 94 1F 20 03 D5
Persistent License Check 2 0x00FEAD2C 3B BB 03 94 1F 20 03 D5
Disable Server Validation Thread 0x01061F28 F6 57 BD A9 C0 03 5F D6
Disable License Notify Thread 0x01060908 FC 6F BD A9 C0 03 5F D6
Disable Crash Reporter 0x00FE5780 FC 6F BC A9 C0 03 5F D6
Bash Script
# for macOS (ARM64)
cd "/Applications/Sublime Text.app/Contents/MacOS/" || exit
md5 -q sublime_text | grep -i "B07FDB3A228A46DF1CC178FE60B64D3B" || exit
echo 01060C90: E0 03 1F AA C0 03 5F D6 | xxd -r - sublime_text
echo 00FEAD18: 1F 20 03 D5             | xxd -r - sublime_text
echo 00FEAD2C: 1F 20 03 D5             | xxd -r - sublime_text
echo 01061F28: C0 03 5F D6             | xxd -r - sublime_text
echo 01060908: C0 03 5F D6             | xxd -r - sublime_text
echo 00FE5780: C0 03 5F D6             | xxd -r - sublime_text
Re-Sign App
codesign --force --deep --sign - "/Applications/Sublime Text.app"

Requires Apple Command Line Tools to be installed


How to Crack Sublime Text, Dev Channel, Build 4154

Thanks to @leogx9r for providing cracking methods.

https://gist.github.com/JerryLokjianming/71dac05f27f8c96ad1c8941b88030451?permalink_comment_id=3762200#gistcomment-3762200 https://gist.github.com/maboloshi/feaa63c35f4c2baab24c9aaf9b3f4e47?permalink_comment_id=3802197#gistcomment-3802197 https://gist.github.com/maboloshi/feaa63c35f4c2baab24c9aaf9b3f4e47?permalink_comment_id=3803204#gistcomment-3803204

Win64

Desciption Offset Original Patched
Initial License Check 0x0009E47C 55 41 57 41 48 31 C0 C3
Persistent License Check 1 0x0000647C E8 23 7C 20 00 90 90 90 90 90
Persistent License Check 2 0x00006495 E8 0A 7C 20 00 90 90 90 90 90
Disable Server Validation Thread 0x000A0222 55 56 57 48 83 EC 30 48 31 C0 48 FF C0 C3
Disable License Notify Thread 0x0009E043 55 C3

for 4117, 4118: https://gist.github.com/maboloshi/feaa63c35f4c2baab24c9aaf9b3f4e47?permalink_comment_id=3927712#gistcomment-3927712

Bat Script
:: for Win64
cd /d "C:\Program Files\Sublime Text" || exit
certutil -hashfile sublime_text.exe md5 | find /i "ADF277D39672D83637AB708FC45413C8" || exit
echo 0009E47C: 48 31 C0 C3          | xxd -r - sublime_text.exe
echo 0000647C: 90 90 90 90 90       | xxd -r - sublime_text.exe
echo 00006495: 90 90 90 90 90       | xxd -r - sublime_text.exe
echo 000A0222: 48 31 C0 48 FF C0 C3 | xxd -r - sublime_text.exe
echo 0009E043: C3                   | xxd -r - sublime_text.exe

PS:xxd.exe extracted from git for windows

The license can be any string.

Blocked by Microsoft Defender SmartScreen -> More Info -> Run Anyway

Screenshot
![Screenshot](https://i.imgur.com/t4QlRZ6.png)

![Screenshot](https://i.imgur.com/18372Rh.png)

Linux

Desciption Offset Original Patched
Initial License Check 0x00443F94 55 41 57 41 48 31 C0 C3
Persistent License Check 1 0x0042B210 E8 37 44 14 00 90 90 90 90 90
Persistent License Check 2 0x0042B228 E8 1F 44 14 00 90 90 90 90 90
Disable Server Validation Thread 0x00445EB6 55 41 56 53 41 89 F6 48 31 C0 48 FF C0 C3
Disable License Notify Thread 0x00443BF8 41 C3
Bash Script
# for Linux
cd /opt/sublime_text || exit
md5sum -c <<<"8836FE092DBB7BC8D3D2375D34510CA9  sublime_text" || exit
echo 00443F94: 48 31 C0 C3          | xxd -r - sublime_text
echo 0042B210: 90 90 90 90 90       | xxd -r - sublime_text
echo 0042B228: 90 90 90 90 90       | xxd -r - sublime_text
echo 00445EB6: 48 31 C0 48 FF C0 C3 | xxd -r - sublime_text
echo 00443BF8: C3                   | xxd -r - sublime_text

macOS

Desciption Offset Original Patched
Initial License Check 0x0009D527 55 48 89 E5 48 31 C0 C3
Persistent License Check 1 0x000097F5 E8 AE 12 13 00 90 90 90 90 90
Persistent License Check 2 0x0000980D E8 96 12 13 00 90 90 90 90 90
Disable Server Validation Thread 0x0009EA9D 55 48 89 E5 41 57 41 48 31 C0 48 FF C0 C3
Disable License Notify Thread 0x0009D122 55 C3
Bash Script
# for MacOS
cd "/Applications/Sublime Text.app/Contents/MacOS/" || exit
md5 -q sublime_text | grep -i "E1A3347BECDA7CC1EF583ECACECACBDC" || exit
echo 0009D527: 48 31 C0 C3          | xxd -r - sublime_text
echo 000097F5: 90 90 90 90 90       | xxd -r - sublime_text
echo 0000980D: 90 90 90 90 90       | xxd -r - sublime_text
echo 0009EA9D: 48 31 C0 48 FF C0 C3 | xxd -r - sublime_text
echo 0009D122: C3                   | xxd -r - sublime_text
Re-Sign App
codesign --force --deep --sign - "/Applications/Sublime Text.app"

Requires Apple Command Line Tools to be installed

macOS (ARM64)

Based on: https://gist.github.com/maboloshi/feaa63c35f4c2baab24c9aaf9b3f4e47?permalink_comment_id=3929427#gistcomment-3929427

Desciption Offset Original Patched
Initial License Check 0x010758B8 FC 6F BA A9 E6 03 1E AA E0 03 1F AA C0 03 5F D6
Persistent License Check 1 0x01000360 33 A4 03 94 1F 20 03 D5
Persistent License Check 2 0x01000374 2E A4 03 94 1F 20 03 D5
Disable Server Validation Thread 0x01076B54 F6 57 BD A9 C0 03 5F D6
Disable License Notify Thread 0x01075534 FC 6F BD A9 C0 03 5F D6
Bash Script
# for macOS (ARM64)
cd "/Applications/Sublime Text.app/Contents/MacOS/" || exit
md5 -q sublime_text | grep -i "E1A3347BECDA7CC1EF583ECACECACBDC" || exit
echo 010758B8: E0 03 1F AA C0 03 5F D6 | xxd -r - sublime_text
echo 01000360: 1F 20 03 D5             | xxd -r - sublime_text
echo 01000374: 1F 20 03 D5             | xxd -r - sublime_text
echo 01076B54: C0 03 5F D6             | xxd -r - sublime_text
echo 01075534: C0 03 5F D6             | xxd -r - sublime_text
Re-Sign App
codesign --force --deep --sign - "/Applications/Sublime Text.app"

Requires Apple Command Line Tools to be installed


How to Crack Sublime Merge, Stable Channel, Build 2083

Thanks to @leogx9r for providing cracking methods.

https://gist.github.com/maboloshi/feaa63c35f4c2baab24c9aaf9b3f4e47?permalink_comment_id=3823090#gistcomment-3823090 https://gist.github.com/JerryLokjianming/71dac05f27f8c96ad1c8941b88030451?permalink_comment_id=3762883#gistcomment-3762883 https://gist.github.com/maboloshi/feaa63c35f4c2baab24c9aaf9b3f4e47?permalink_comment_id=3802197#gistcomment-3802197

Win64

Desciption Offset Original Patched
Initial License Check 0x000251A8 55 41 57 41 56 41 55 41 48 C7 C0 19 01 00 00 C3
Persistent License Check 1 0x000286A3 E8 70 AA 26 00 90 90 90 90 90
Persistent License Check 2 0x000286BC E8 57 AA 26 00 90 90 90 90 90
Disable Server Validation Thread 0x000269B8 55 56 57 48 83 EC 30 48 31 C0 48 FF C0 C3
Disable License Notify Thread 0x00024DCD 55 C3
Disable Crash Reporter 0x00023F18 41 C3
Bat Script
:: for Win64
cd /d "C:\Program Files\Sublime Merge" || exit
certutil -hashfile sublime_merge.exe md5 | find /i "E33B76ADA6E7E7577CD4E81A7A4580C7" || exit
echo 000251A8: 48 C7 C0 19 01 00 00 C3 | xxd -r - sublime_merge.exe
echo 000286A3: 90 90 90 90 90          | xxd -r - sublime_merge.exe
echo 000286BC: 90 90 90 90 90          | xxd -r - sublime_merge.exe
echo 000269B8: 48 31 C0 48 FF C0 C3    | xxd -r - sublime_merge.exe
echo 00024DCD: C3                      | xxd -r - sublime_merge.exe
echo 00023F18: C3                      | xxd -r - sublime_merge.exe

PS:xxd.exe extracted from git for windows

Linux

thinks @urxi here

Bash Script
# for Linux
cd /opt/sublime_merge || exit
md5sum -c <<<"86F61A82E7EE8DD9BDC4CF16A7C8E825  sublime_merge" || exit
echo 0045A360: 48 C7 C0 19 01 00 00 C3 | xxd -r - sublime_merge
echo 0045D21D: 90 90 90 90 90          | xxd -r - sublime_merge
echo 0045D23A: 90 90 90 90 90          | xxd -r - sublime_merge
echo 0045B990: C3                      | xxd -r - sublime_merge
echo 0045A05A: C3                      | xxd -r - sublime_merge
echo 00459ABA: C3                      | xxd -r - sublime_merge

macOS

Desciption Offset Original Patched
Initial License Check 0x0002C2DF 55 48 89 E5 41 57 41 56 48 C7 C0 19 01 00 00 C3
Persistent License Check 1 0x0002E96C E8 1F B9 18 00 90 90 90 90 90
Persistent License Check 2 0x0002E98B E8 00 B9 18 00 90 90 90 90 90
Disable Server Validation Thread 0x0002D295 55 48 89 E5 41 57 41 48 31 C0 48 FF C0 C3
Disable License Notify Thread 0x0002BF6A 55 C3
Disable Crash Reporter 0x0002B7AB 55 C3
Bash Script
# for MacOS
cd "/Applications/Sublime Merge.app/Contents/MacOS/" || exit
md5 -q sublime_merge | grep -i "B1AADED4F196EEEEBF8D5A6F98B11288" || exit
echo 0002C2DF: 48 C7 C0 19 01 00 00 C3 | xxd -r - sublime_merge
echo 0002E96C: 90 90 90 90 90          | xxd -r - sublime_merge
echo 0002E98B: 90 90 90 90 90          | xxd -r - sublime_merge
echo 0002D295: 48 31 C0 48 FF C0 C3    | xxd -r - sublime_merge
echo 0002BF6A: C3                      | xxd -r - sublime_merge
echo 0002B7AB: C3                      | xxd -r - sublime_merge
Re-Sign App
codesign --force --deep --sign - "/Applications/Sublime Merge.app"

Requires Apple Command Line Tools to be installed

macOS (ARM64)

!!!! May have expired !!!!

Based on:

Desciption Offset Original Patched
Initial License Check 0x014D9060 FC 6F BA A9 E6 03 1E AA E0 03 1F AA C0 03 5F D6
Persistent License Check 1 0x014DAF68 AB B6 04 94 1F 20 03 D5
Persistent License Check 2 0x014DAF7C A6 B6 04 94 1F 20 03 D5
Disable Server Validation Thread 0x014D9DBC F6 57 BD A9 C0 03 5F D6
Disable License Notify Thread 0x014D8D9C FC 6F BD A9 C0 03 5F D6
Disable Crash Reporter 0x014D86E4 FC 6F BC A9 C0 03 5F D6
Bash Script
# for macOS (ARM64)
cd "/Applications/Sublime Merge.app/Contents/MacOS/" || exit
md5 -q sublime_merge | grep -i "B1AADED4F196EEEEBF8D5A6F98B11288" || exit
echo 014D9060: E0 03 1F AA C0 03 5F D6 | xxd -r - sublime_merge
echo 014DAF68: 1F 20 03 D5             | xxd -r - sublime_merge
echo 014DAF7C: 1F 20 03 D5             | xxd -r - sublime_merge
echo 014D9DBC: C0 03 5F D6             | xxd -r - sublime_merge
echo 014D8D9C: C0 03 5F D6             | xxd -r - sublime_merge
echo 014D86E4: C0 03 5F D6             | xxd -r - sublime_merge
Re-Sign App
codesign --force --deep --sign - "/Applications/Sublime Merge.app"

Requires Apple Command Line Tools to be installed


How to Crack Sublime Merge, Dev Channel, Build 2085

Thanks to @leogx9r for providing cracking methods.

https://gist.github.com/maboloshi/feaa63c35f4c2baab24c9aaf9b3f4e47?permalink_comment_id=3823090#gistcomment-3823090 https://gist.github.com/JerryLokjianming/71dac05f27f8c96ad1c8941b88030451?permalink_comment_id=3762883#gistcomment-3762883 https://gist.github.com/maboloshi/feaa63c35f4c2baab24c9aaf9b3f4e47?permalink_comment_id=3802197#gistcomment-3802197

Win64

Desciption Offset Original Patched
Initial License Check 0x00025300 55 41 57 41 56 41 55 41 48 C7 C0 19 01 00 00 C3
Persistent License Check 1 0x00028813 E8 B8 7F 27 00 90 90 90 90 90
Persistent License Check 2 0x0002882C E8 9F 7F 27 00 90 90 90 90 90
Disable Server Validation Thread 0x00026B20 55 56 57 48 83 EC 30 48 31 C0 48 FF C0 C3
Disable License Notify Thread 0x00024F25 55 C3
Disable Crash Reporter 0x00024070 41 C3
Bat Script
:: for Win64
cd /d "C:\Program Files\Sublime Merge" || exit
certutil -hashfile sublime_merge.exe md5 | find /i "8B6590708E6AAE98AC3AE29135DB084F" || exit
echo 00025300: 48 C7 C0 19 01 00 00 C3 | xxd -r - sublime_merge.exe
echo 00028813: 90 90 90 90 90          | xxd -r - sublime_merge.exe
echo 0002882C: 90 90 90 90 90          | xxd -r - sublime_merge.exe
echo 00026B20: 48 31 C0 48 FF C0 C3    | xxd -r - sublime_merge.exe
echo 00024F25: C3                      | xxd -r - sublime_merge.exe
echo 00024070: C3                      | xxd -r - sublime_merge.exe

PS:xxd.exe extracted from git for windows

Linux

thinks @urxi here

Bash Script
# for Linux
cd /opt/sublime_merge || exit
md5sum -c <<<"958DA6B7EC687B25F55A16FF6A3D9BD0  sublime_merge" || exit
echo 0045F22C: 48 C7 C0 19 01 00 00 C3 | xxd -r - sublime_merge
echo 004620F9: 90 90 90 90 90          | xxd -r - sublime_merge
echo 00462116: 90 90 90 90 90          | xxd -r - sublime_merge
echo 0046086C: C3                      | xxd -r - sublime_merge
echo 0045EF26: C3                      | xxd -r - sublime_merge
echo 0045E986: C3                      | xxd -r - sublime_merge

macOS

Desciption Offset Original Patched
Initial License Check 0x0002C4CB 55 48 89 E5 41 57 41 56 48 C7 C0 19 01 00 00 C3
Persistent License Check 1 0x0002EB48 E8 15 23 19 00 90 90 90 90 90
Persistent License Check 2 0x0002EB67 E8 F6 22 19 00 90 90 90 90 90
Disable Server Validation Thread 0x0002D471 55 48 89 E5 41 57 41 48 31 C0 48 FF C0 C3
Disable License Notify Thread 0x0002C156 55 C3
Disable Crash Reporter 0x0002B997 55 C3
Bash Script
# for MacOS
cd "/Applications/Sublime Merge.app/Contents/MacOS/" || exit
md5 -q sublime_merge | grep -i "D67510219FB14938A47BE39260C87215" || exit
echo 0002C4CB: 48 C7 C0 19 01 00 00 C3 | xxd -r - sublime_merge
echo 0002EB48: 90 90 90 90 90          | xxd -r - sublime_merge
echo 0002EB67: 90 90 90 90 90          | xxd -r - sublime_merge
echo 0002D471: 48 31 C0 48 FF C0 C3    | xxd -r - sublime_merge
echo 0002C156: C3                      | xxd -r - sublime_merge
echo 0002B997: C3                      | xxd -r - sublime_merge
Re-Sign App
codesign --force --deep --sign - "/Applications/Sublime Merge.app"

Requires Apple Command Line Tools to be installed

macOS (ARM64)

!!!! May have expired !!!!

Based on:

Desciption Offset Original Patched
Initial License Check 0x015027EC FC 6F BA A9 E6 03 1E AA E0 03 1F AA C0 03 5F D6
Persistent License Check 1 0x015046D4 78 C9 04 94 1F 20 03 D5
Persistent License Check 2 0x015046E8 73 C9 04 94 1F 20 03 D5
Disable Server Validation Thread 0x0150352C F6 57 BD A9 C0 03 5F D6
Disable License Notify Thread 0x01502528 FC 6F BD A9 C0 03 5F D6
Disable Crash Reporter 0x01501E70 FC 6F BC A9 C0 03 5F D6
Bash Script
# for macOS (ARM64)
cd "/Applications/Sublime Merge.app/Contents/MacOS/" || exit
md5 -q sublime_merge | grep -i "D67510219FB14938A47BE39260C87215" || exit
echo 015027EC: E0 03 1F AA C0 03 5F D6 | xxd -r - sublime_merge
echo 015046D4: 1F 20 03 D5             | xxd -r - sublime_merge
echo 015046E8: 1F 20 03 D5             | xxd -r - sublime_merge
echo 0150352C: C0 03 5F D6             | xxd -r - sublime_merge
echo 01502528: C0 03 5F D6             | xxd -r - sublime_merge
echo 01501E70: C0 03 5F D6             | xxd -r - sublime_merge
Re-Sign App
codesign --force --deep --sign - "/Applications/Sublime Merge.app"

Requires Apple Command Line Tools to be installed

ST's new version of hexadecimal editing method

From: https://gist.github.com/opastorello/4d494d627ec9012367028c89cb7a1945

Search : 80 78 05 00 0f 94 c1 first result , replace: c6 40 05 01 48 85 c9

This patch is applicable to all x86-64 CPU platforms of ST.

ST's old version hexadecimal editing method

From: https://gist.github.com/opastorello/4d494d627ec9012367028c89cb7a1945?permalink_comment_id=4495369#gistcomment-4495369

97 94 0D --> 00 00 00

License Key:

----- BEGIN LICENSE -----
TwitterInc
200 User License
EA7E-890007
1D77F72E 390CDD93 4DCBA022 FAF60790
61AA12C0 A37081C5 D0316412 4584D136
94D7F7D4 95BC8C1C 527DA828 560BB037
D1EDDD8C AE7B379F 50C9D69D B35179EF
2FE898C4 8E4277A8 555CE714 E1FB0E43
D5D52613 C3D12E98 BC49967F 7652EED2
9D2D2E61 67610860 6D338B72 5CF95C69
E36B85CC 84991F19 7575D828 470A92AB
------ END LICENSE ------
@alexkoj
Copy link

alexkoj commented May 21, 2025

Win64 4200

[=] Offset 0x318aa : invalidate1
         - \xe8\xb9\x84\x18\x00
         + \x90\x90\x90\x90\x90

[=] Offset 0x318c3 : invalidate2
         - \xe8\xa0\x84\x18\x00
         + \x90\x90\x90\x90\x90

[=] Offset 0xa85e5 : license_notification
         - \x41\x57\x41\x56
         + \x48\x31\xc0\xc3

[=] Offset 0xa891c : license_check.2
         - \x41\x57\x41\x56
         + \x48\x31\xc0\xc3

[=] Offset 0xaa0dc : server_validate_4199_4200
         - \x56\x57\x53\x48\x83\xec\x20
         + \x48\x31\xc0\x48\xff\xc0\xc3

@Fidenciano
Copy link

Please 4200 for linux!

@GekySan
Copy link

GekySan commented May 21, 2025

Hi, here is a simpler solution (I did it quickly) for the version released today (4200) :

Origine Nouveaux
0F B6 51 05 movzx edx, byte [rcx+0x5] C6 41 05 01 mov byte [rcx+5], 1
83 F2 01 xor edx, 0x1 B2 00 90 mov dl, 0 ; nop

Microsoft Windows (Run as admin) :

py -c "open('C:\\Program Files\\Sublime Text\\sublime_text.exe', 'rb+').write(open('C:\\Program Files\\Sublime Text\\sublime_text.exe', 'rb').read().replace(b'\x0F\xB6\x51\x05\x83\xF2\x01', b'\xC6\x41\x05\x01\xB2\x00\x90'))"

Windows

GNU/Linux (Same for MacOS ?) :

sudo python3 -c "open('/opt/sublime_text/sublime_text', 'rb+').write(open('/opt/sublime_text/sublime_text', 'rb').read().replace(b'\x0F\xB6\x51\x05\x83\xF2\x01', b'\xC6\x41\x05\x01\xB2\x00\x90'))"

WSL2

I'll share it here next time if there's an update...

@noviceconf
Copy link

@GekySan thanks!

@Fidenciano
Copy link

@GekySan thanks!!!!

@fredgolightly
Copy link

For those who don't have Python installed and just need the hex changes can someone post them please?

@iamAgbaCoder
Copy link

Hi, here is a simpler solution (I did it quickly) for the version released today (4200) :

Origine Nouveaux
0F B6 51 05 movzx edx, byte [rcx+0x5] C6 41 05 01 mov byte [rcx+5], 1
83 F2 01 xor edx, 0x1 B2 00 90 mov dl, 0 ; nop
Microsoft Windows (Run as admin) :

py -c "open('C:\\Program Files\\Sublime Text\\sublime_text.exe', 'rb+').write(open('C:\\Program Files\\Sublime Text\\sublime_text.exe', 'rb').read().replace(b'\x0F\xB6\x51\x05\x83\xF2\x01', b'\xC6\x41\x05\x01\xB2\x00\x90'))"

Windows

GNU/Linux (Same for MacOS ?) :

sudo python3 -c "open('/opt/sublime_text/sublime_text', 'rb+').write(open('/opt/sublime_text/sublime_text', 'rb').read().replace(b'\x0F\xB6\x51\x05\x83\xF2\x01', b'\xC6\x41\x05\x01\xB2\x00\x90'))"

WSL2

I'll share it here next time if there's an update...

This worked for version 4200
just run this in CMD(Admin)

py -c "open('C:\Program Files\Sublime Text\sublime_text.exe', 'rb+').write(open('C:\Program Files\Sublime Text\sublime_text.exe', 'rb').read().replace(b'\x0F\xB6\x51\x05\x83\xF2\x01', b'\xC6\x41\x05\x01\xB2\x00\x90'))"

@GekySan
Copy link

GekySan commented May 21, 2025

For those who don't have Python installed and just need the hex changes can someone post them please?

Hi, just use HexEd.it, replace 0F B6 51 05 83 F2 01 -> C6 41 05 01 B2 00 90.

@fredgolightly
Copy link

@GekySan Thanks so much!

@goneincode
Copy link

@GekySan +1 Thank you o7

@rhcp011235
Copy link

macOS

Sublime Text (Stable Channel, Build 4200)

cd "/Applications/Sublime Text.app/Contents/MacOS/" || exit
md5 -q sublime_text | grep -i "4AA67B38CCFCC37A2E7AF0239750F889" || exit

echo 00239DCF: 48 C7 C0 00 00 00 00 C3 | xxd -r - sublime_text
echo 00230C35: 90 90 90 90 90          | xxd -r - sublime_text
echo 00230C4D: 90 90 90 90 90          | xxd -r - sublime_text
echo 00239A96: C3                      | xxd -r - sublime_text
echo 0023B035: C3                      | xxd -r - sublime_text

echo 00EF9E24: 00 00 80 D2 C0 03 5F D6 | xxd -r - sublime_text
echo 00EF3570: 1F 20 03 D5             | xxd -r - sublime_text
echo 00EF3584: 1F 20 03 D5             | xxd -r - sublime_text
echo 00EF9B4C: C0 03 5F D6             | xxd -r - sublime_text
echo 00EFADA4: C0 03 5F D6             | xxd -r - sublime_text

codesign --force --deep --sign - "/Applications/Sublime Text.app"

Sublime Text (Dev Channel, Build 4199)

Worked like a charm on my M4 :) Thanks

@pwozniak89
Copy link

sudo python3 -c "open('/opt/sublime_text/sublime_text', 'rb+').write(open('/opt/sublime_text/sublime_text', 'rb').read().replace(b'\x0F\xB6\x51\x05\x83\xF2\x01', b'\xC6\x41\x05\x01\xB2\x00\x90'))"

Works great for linux

@S8D
Copy link

S8D commented May 24, 2025

Bash scripts to patch 4200 for Linux, thanks @GekySan

#!/bin/bash
# ST4 Stable Channel, Build 4200, Linux64
Version="Sublime Text Build 4200"
Patched="a815e6ef307c98840990dcc9a14838af"
ST="/opt/sublime_text/sublime_text"
cd /opt/sublime_text || exit
[ "$($ST --version)" = "$Version" ] && [ "$(md5sum $ST | cut -d' ' -f1)" != "$Patched" ] && { sudo sed -i 's/\x0F\xB6\x51\x05\x83\xF2\x01/\xC6\x41\x05\x01\xB2\x00\x90/' $ST; echo "Patch done!"; }

@Destitute-Streetdwelling-Guttersnipe
Copy link

@jasnzhuang
Copy link

macOS

Sublime Text (Stable Channel, Build 4200)

cd "/Applications/Sublime Text.app/Contents/MacOS/" || exit
md5 -q sublime_text | grep -i "4AA67B38CCFCC37A2E7AF0239750F889" || exit

echo 00239DCF: 48 C7 C0 00 00 00 00 C3 | xxd -r - sublime_text
echo 00230C35: 90 90 90 90 90          | xxd -r - sublime_text
echo 00230C4D: 90 90 90 90 90          | xxd -r - sublime_text
echo 00239A96: C3                      | xxd -r - sublime_text
echo 0023B035: C3                      | xxd -r - sublime_text

echo 00EF9E24: 00 00 80 D2 C0 03 5F D6 | xxd -r - sublime_text
echo 00EF3570: 1F 20 03 D5             | xxd -r - sublime_text
echo 00EF3584: 1F 20 03 D5             | xxd -r - sublime_text
echo 00EF9B4C: C0 03 5F D6             | xxd -r - sublime_text
echo 00EFADA4: C0 03 5F D6             | xxd -r - sublime_text

codesign --force --deep --sign - "/Applications/Sublime Text.app"

Sublime Text (Dev Channel, Build 4199)

cd "/Applications/Sublime Text.app/Contents/MacOS/" || exit
md5 -q sublime_text | grep -i "2B4AEE0B591CC874B8C88FBA79D14B75" || exit

echo 0021CAFB: 48 C7 C0 00 00 00 00 C3 | xxd -r - sublime_text
echo 002138D5: 90 90 90 90 90          | xxd -r - sublime_text
echo 002138ED: 90 90 90 90 90          | xxd -r - sublime_text
echo 0021C7C2: C3                      | xxd -r - sublime_text
echo 0021DD39: C3                      | xxd -r - sublime_text

echo 00EE29A8: 00 00 80 D2 C0 03 5F D6 | xxd -r - sublime_text
echo 00EDC018: 1F 20 03 D5             | xxd -r - sublime_text
echo 00EDC02C: 1F 20 03 D5             | xxd -r - sublime_text
echo 00EE26D0: C0 03 5F D6             | xxd -r - sublime_text
echo 00EE3924: C0 03 5F D6             | xxd -r - sublime_text

codesign --force --deep --sign - "/Applications/Sublime Text.app"

it works for my M4

@DrunkenAlcoholic
Copy link

#!/bin/bash # ST4 Stable Channel, Build 4200, Linux64 Version="Sublime Text Build 4200" Patched="a815e6ef307c98840990dcc9a14838af" ST="/opt/sublime_text/sublime_text" cd /opt/sublime_text || exit [ "$($ST --version)" = "$Version" ] && [ "$(md5sum $ST | cut -d' ' -f1)" != "$Patched" ] && { sudo sed -i 's/\x0F\xB6\x51\x05\x83\xF2\x01/\xC6\x41\x05\x01\xB2\x00\x90/' $ST; echo "Patch done!"; }
@S8D it's an interesting idea to ask ST for its version. However it's rather unnecessary since md5 is a stricter check. And I think using "|| exit" is cleaner than using "&&" in a very long line.

For hard patches requiring specific addresses, checksums are essential. But for Search & Replace with wildcards, checking the embedded version is useful - the search pattern changed around v4196, so I use different SnR patterns based on version. While I still patch multiple locations with the older method, version checking helps me apply the right pattern for each build that changes.

@mdtite
Copy link

mdtite commented May 28, 2025

macOS

Sublime Text (Stable Channel, Build 4200)

cd "/Applications/Sublime Text.app/Contents/MacOS/" || exit
md5 -q sublime_text | grep -i "4AA67B38CCFCC37A2E7AF0239750F889" || exit

echo 00239DCF: 48 C7 C0 00 00 00 00 C3 | xxd -r - sublime_text
echo 00230C35: 90 90 90 90 90          | xxd -r - sublime_text
echo 00230C4D: 90 90 90 90 90          | xxd -r - sublime_text
echo 00239A96: C3                      | xxd -r - sublime_text
echo 0023B035: C3                      | xxd -r - sublime_text

echo 00EF9E24: 00 00 80 D2 C0 03 5F D6 | xxd -r - sublime_text
echo 00EF3570: 1F 20 03 D5             | xxd -r - sublime_text
echo 00EF3584: 1F 20 03 D5             | xxd -r - sublime_text
echo 00EF9B4C: C0 03 5F D6             | xxd -r - sublime_text
echo 00EFADA4: C0 03 5F D6             | xxd -r - sublime_text

codesign --force --deep --sign - "/Applications/Sublime Text.app"

Sublime Text (Dev Channel, Build 4199)

Legend! Thank you! works on M2 macbook pro!

@DrunkenAlcoholic
Copy link

Sublime Text 4 Build 4200

MD5 Before: cf2ba60236f6284da1581e29c3df35e7
MD5 After: fafcd973c631fcea17d77b04bbbb9652

Screenshot:
image

Bash Script:

#!/bin/bash
# ST build 4200, Linux64
cd /opt/sublime_text || exit
md5sum -c <<< "cf2ba60236f6284da1581e29c3df35e7  sublime_text" || exit

echo 00571483: 90 90 90 90 90          | xxd -r - sublime_text
echo 0057149C: 90 90 90 90 90          | xxd -r - sublime_text
echo 00584378: C3                      | xxd -r - sublime_text
echo 00584658: 48 C7 C0 00 00 00 00 C3 | xxd -r - sublime_text
echo 00586008: C3                      | xxd -r - sublime_text

@FryingPanBrock
Copy link

@DrunkenAlcoholic Thank you so much. I was hoping someone else would do the proper patch for Linux like in the OP. It looks like you don't patch the initial licence check. Is that redundant in 4200?

@DrunkenAlcoholic
Copy link

DrunkenAlcoholic commented May 30, 2025

@DrunkenAlcoholic Thank you so much. I was hoping someone else would do the proper patch for Linux like in the OP. It looks like you don't patch the initial licence check. Is that redundant in 4200?

The "initial licence check" that was used in the original post and description hasn't been needed for a few years now I believe, at least I haven't looked into it, but looking at the original post it does xor's rax with rax register which will result in 0 and then a "ret". so I would imagine this was used in the beginning of a check function that set the rax register to 0 or 1(zero in the patch "rax xor rax, ret"), and setting this rax register was probably needed for a valid check, Like I said I have only been using the other 5 patches which nop's some calls functions and moves 0 into the rax register before ret, which could have been done using xor as the "initial check" patch originally did. But to answer your question, at this point in time, no the original "initial check" patch is not needed as its covered with the other 5 patches.

basically all these patches do is either NOP the calls to functions (9090909090) or return back to caller(C3) or sets rax to 0 and the return back to caller(48C7C000000000C3), extremely basic patching

@Destitute-Streetdwelling-Guttersnipe
Copy link

@Destitute-Streetdwelling-Guttersnipe
Copy link

@Destitute-Streetdwelling-Guttersnipe
Copy link

@DrunkenAlcoholic
Copy link

DrunkenAlcoholic commented May 30, 2025

@DrunkenAlcoholic @FryingPanBrock the "Initial License Check" is still necessary. it's the 8-byte patch "48 C7 C0 ..." (However, I prefer a shorter patch like "31 C0 C3"). The removed patch is "Disable Crash Reporter" which is invalid recently.

Ahh yes now looking at the offset address's in the original patches it does seem "Disable Crash Reporter" is no longer used, anyway the other 5 patches are probably not the most elegant, but they work, and there really is many ways you could patch these functions

31 C0 C3 in assembly is xor eax, eax(32bit) and then ret, and does the exact same thing as 48 31 C0 C3 xor rax, rax and then ret, so all we are doing with setting eax and is automatically placing a zero in the upper part of the rax register, thus the exact same thing, patching is 1 byte shorter in this situation, but really for the sake of a single byte it better to keep with 64bit registers operands e.g rax in my opinion, and yes its a shorter than 48 C7 C0 00 00 00 00 C3 mov rax, 0 then ret, but either or doesn't really matter in the scheme of things

Yes I have updated BytePatcher with a different SnR pattern(need to upload to github), but the screenshot was from "compare-bytes" another small program I made to compare 2 binary files and find the difference, in this case it was after I patched it sublime text with BytePatcher.

Screenshot BytePatcher:
image

@urxi
Copy link

urxi commented May 30, 2025

I think I'm the one who first started using the 8-byte patch for ST. It was to keep the patches as similar as possible to the SM dev builds, that sometimes need a different return value.

@DoveBoy
Copy link

DoveBoy commented May 30, 2025

:: ST4 Stable Channel Build 4200, Win64

:: cd /d ".\Sublime Text 4" || exit
certutil -hashfile sublime_text.exe md5 | find /i "671b865fbde25cdcbd0144d3e7baea31" || exit

echo 000318aa: 90 90 90 90 90       | xxd -r - sublime_text.exe
echo 000318c3: 90 90 90 90 90       | xxd -r - sublime_text.exe
echo 000a85e5: 48 31 c0 c3          | xxd -r - sublime_text.exe
echo 000a891c: 48 31 c0 c3          | xxd -r - sublime_text.exe
echo 000aa0dc: 48 31 c0 48 ff c0 c3 | xxd -r - sublime_text.exe

@DrunkenAlcoholic
Copy link

I think I'm the one who first started using the 8-byte patch for ST. It was to keep the patches as similar as possible to the SM dev builds, that sometimes need a different return value.

@urxi you have done an excellent job on the patching, I am only following on what yourself and others have contributed in this gist, without people like yourself sharing the knowledge we wouldn't have updates for these patches.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment