Skip to content

Instantly share code, notes, and snippets.

@maboloshi
Last active May 3, 2025 08:28
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

How to Crack Sublime Text Build 4121

Thanks to @leogx9r for providing cracking methods.

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

Note: ARM platform is not supported

Win64 ↓

Desciption Offset Original Patched
Initial License Check 0x000A691C 55 41 57 41 48 31 C0 C3
Persistent License Check 1 0x0000711A E8 55 1F 20 00 90 90 90 90 90
Persistent License Check 2 0x00007133 E8 3C 1F 20 00 90 90 90 90 90
Disable Server Validation Thread 0x000A84E3 55 56 57 48 83 EC 30 48 31 C0 48 FF C0 C3
Disable License Notify Thread 0x000A6517 55 C3
Disable Crash Reporter 0x00000400 41 C3

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

Bat Script
:: for Win64
cd /d "C:\Program Files\Sublime Text" || exit
printf '5446869D73EAEADEC1CACE4E5A6CF64D  sublime_text.exe' | md5sum -c - || exit
printf '\x48\x31\xC0\xC3'                 | dd.exe of=sublime_text.exe bs=1 seek=682268 conv=notrunc
printf '\x90\x90\x90\x90\x90'             | dd.exe of=sublime_text.exe bs=1 seek=28954  conv=notrunc
printf '\x90\x90\x90\x90\x90'             | dd.exe of=sublime_text.exe bs=1 seek=28979  conv=notrunc
printf '\x48\x31\xC0\x48\xFF\xC0\xC3'     | dd.exe of=sublime_text.exe bs=1 seek=689379 conv=notrunc
printf '\xC3'                             | dd.exe of=sublime_text.exe bs=1 seek=681239 conv=notrunc
printf '\xC3'                             | dd.exe of=sublime_text.exe bs=1 seek=1024   conv=notrunc

PS:Command Line Tools for Windows 64 extracted from PortableGit

The license can be any string.

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

Screenshot

Screenshot

Screenshot

Linux ↓

Desciption Offset Original Patched
Initial License Check 0x00375A48 55 41 57 41 48 31 C0 C3
Persistent License Check 1 0x0036BC85 E8 0C BC 11 00 90 90 90 90 90
Persistent License Check 2 0x0036BC9B E8 F6 BB 11 00 90 90 90 90 90
Disable Server Validation Thread 0x003774CB 55 41 56 53 41 89 F6 48 31 C0 48 FF C0 C3
Disable License Notify Thread 0x0037570C 41 C3
Disable Crash Reporter 0x0035F930 55 C3

for 4121: https://gist.github.com/maboloshi/feaa63c35f4c2baab24c9aaf9b3f4e47#gistcomment-3940961

Bash Script
# for Linux
cd /opt/sublime_text || exit
md5sum -c <<<"D3343AD6D13F816F1F9414223B8BE091  sublime_text" || exit
printf '\x48\x31\xC0\xC3'                 | dd of=sublime_text bs=1 seek=$((0x00375A48)) conv=notrunc
printf '\x90\x90\x90\x90\x90'             | dd of=sublime_text bs=1 seek=$((0x0036BC85)) conv=notrunc
printf '\x90\x90\x90\x90\x90'             | dd of=sublime_text bs=1 seek=$((0x0036BC9B)) conv=notrunc
printf '\x48\x31\xC0\x48\xFF\xC0\xC3'     | dd of=sublime_text bs=1 seek=$((0x003774CB)) conv=notrunc
printf '\xC3'                             | dd of=sublime_text bs=1 seek=$((0x0037570C)) conv=notrunc
printf '\xC3'                             | dd of=sublime_text bs=1 seek=$((0x0035F930)) conv=notrunc

macOS ↓

Desciption Offset Original Patched
Initial License Check 0x0009257E 55 48 89 E5 48 31 C0 C3
Persistent License Check 1 0x000086F6 E8 1F 1D 12 00 90 90 90 90 90
Persistent License Check 2 0x00008715 E8 00 1D 12 00 90 90 90 90 90
Disable Server Validation Thread 0x000938CF 55 48 89 E5 41 57 41 48 31 C0 48 FF C0 C3
Disable License Notify Thread 0x0009219C 55 C3
Disable Crash Reporter 0x00002867 55 C3
Bash Script
# for MacOS
cd "/Applications/Sublime Text.app/Contents/MacOS/" || exit
[ $(md5 sublime_text) = 29D43CC159DA2FADFCD15D95536AA29A ] || exit
printf '\x48\x31\xC0\xC3'                 | dd of=sublime_text bs=1 seek=$((0x0009257E)) conv=notrunc
printf '\x90\x90\x90\x90\x90'             | dd of=sublime_text bs=1 seek=$((0x000086F6)) conv=notrunc
printf '\x90\x90\x90\x90\x90'             | dd of=sublime_text bs=1 seek=$((0x00008715)) conv=notrunc
printf '\x48\x31\xC0\x48\xFF\xC0\xC3'     | dd of=sublime_text bs=1 seek=$((0x000938CF)) conv=notrunc
printf '\xC3'                             | dd of=sublime_text bs=1 seek=$((0x0009219C)) conv=notrunc
printf '\xC3'                             | dd of=sublime_text bs=1 seek=$((0x00002867)) conv=notrunc
Re-Sign App
codesign --force --deep --sign - "/Applications/Sublime Text.app"

Requires Apple Command Line Tools to be installed

macOS (M1 ARM64) ↓

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

Desciption Offset Original Patched
Initial License Check 0x00FCA6F8 E6 03 1E AA 19 59 0E 94 E0 03 1F AA C0 03 5F D6
Persistent License Check 1 0x00F5C160 5F 95 03 94 1F 20 03 D5
Persistent License Check 2 0x00F5C174 5A 95 03 94 1F 20 03 D5
Disable Server Validation Thread 0x00FCB7D8 F6 57 BD A9 C0 03 5F D6
Disable License Notify Thread 0x00FCA388 FC 6F BD A9 C0 03 5F D6
Disable Crash Reporter 0x00F577E4 FC 6F BC A9 C0 03 5F D6
Bash Script
# for MacOS
cd "/Applications/Sublime Text.app/Contents/MacOS/" || exit
[ $(md5 sublime_text) = B78F54073437FDF71834D46DCEC72700 ] || exit
printf '\xE0\x03\x1F\xAA\xC0\x03\x5F\xD6' | dd of=sublime_text bs=1 seek=$((0x00FCA6F8)) conv=notrunc
printf '\x1F\x20\x03\xD5'                 | dd of=sublime_text bs=1 seek=$((0x00F5C160)) conv=notrunc
printf '\x1F\x20\x03\xD5'                 | dd of=sublime_text bs=1 seek=$((0x00F5C174)) conv=notrunc
printf '\xC0\x03\x5F\xD6'                 | dd of=sublime_text bs=1 seek=$((0x00FCB7D8)) conv=notrunc
printf '\xC0\x03\x5F\xD6'                 | dd of=sublime_text bs=1 seek=$((0x00FCA388)) conv=notrunc
printf '\xC0\x03\x5F\xD6'                 | dd of=sublime_text bs=1 seek=$((0x00F577E4)) conv=notrunc

How to Crack Sublime Merge Build 2063

Thanks to @leogx9r for providing cracking methods.

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

Note: ARM platform is not supported

Win64 ↓

Desciption Offset Original Patched
Initial License Check 0x00024570 55 41 57 41 56 41 55 41 48 C7 C0 19 01 00 00 C3
Persistent License Check 1 0x00027127 E8 9C FC 25 00 90 90 90 90 90
Persistent License Check 2 0x00027140 E8 83 FC 25 00 90 90 90 90 90
Disable Server Validation Thread 0x00025AD7 55 56 57 48 83 EC 30 48 31 C0 48 FF C0 C3
Disable License Notify Thread 0x000241C3 55 C3
Disable Crash Reporter 0x00021AF8 41 C3
Bat Script
:: for Win64
cd /d "C:\Program Files\Sublime Merge" || exit
printf 'A6D0ED92FDC38018D59A426EE3E16929  sublime_merge.exe' | md5sum -c - || exit
printf '\x48\xC7\xC0\x19\x01\x00\x00\xC3' | dd of=sublime_merge.exe bs=1 seek=148848 conv=notrunc
printf '\x90\x90\x90\x90\x90'             | dd of=sublime_merge.exe bs=1 seek=160039 conv=notrunc
printf '\x90\x90\x90\x90\x90'             | dd of=sublime_merge.exe bs=1 seek=160064 conv=notrunc
printf '\x48\x31\xC0\x48\xFF\xC0\xC3'     | dd of=sublime_merge.exe bs=1 seek=154327 conv=notrunc
printf '\xC3'                             | dd of=sublime_merge.exe bs=1 seek=147907 conv=notrunc
printf '\xC3'                             | dd of=sublime_merge.exe bs=1 seek=137976 conv=notrunc

PS:Command Line Tools for Windows 64 extracted from PortableGit

Linux ↓

Desciption Offset Original Patched
Initial License Check 0x003B3B62 55 41 57 41 56 41 55 41 48 C7 C0 19 01 00 00 C3
Persistent License Check 1 0x003B66AD E8 A6 39 1D 00 90 90 90 90 90
Persistent License Check 2 0x003B66C8 E8 8B 39 1D 00 90 90 90 90 90
Disable Server Validation Thread 0x003B4F8D 55 41 56 53 41 89 F6 48 31 C0 48 FF C0 C3
Disable License Notify Thread 0x003B38AE 41 C3
Disable Crash Reporter 0x003B2832 55 C3
Bash Script
# for Linux
cd /opt/sublime_merge || exit
md5sum -c <<<"CB61D19785055FEABA792E7D908E2374  sublime_merge" || exit
printf '\x48\xC7\xC0\x19\x01\x00\x00\xC3' | dd of=sublime_merge bs=1 seek=$((0x003B3B62)) conv=notrunc
printf '\x90\x90\x90\x90\x90'             | dd of=sublime_merge bs=1 seek=$((0x003B66AD)) conv=notrunc
printf '\x90\x90\x90\x90\x90'             | dd of=sublime_merge bs=1 seek=$((0x003B66C8)) conv=notrunc
printf '\x48\x31\xC0\x48\xFF\xC0\xC3'     | dd of=sublime_merge bs=1 seek=$((0x003B4F8D)) conv=notrunc
printf '\xC3'                             | dd of=sublime_merge bs=1 seek=$((0x003B38AE)) conv=notrunc
printf '\xC3'                             | dd of=sublime_merge bs=1 seek=$((0x003B2832)) conv=notrunc

macOS ↓

Desciption Offset Original Patched
Initial License Check 0x00027747 55 48 89 E5 41 57 41 56 48 C7 C0 19 01 00 00 C3
Persistent License Check 1 0x000295E4 E8 CA B9 21 00 90 90 90 90 90
Persistent License Check 2 0x00029603 E8 AB B9 21 00 90 90 90 90 90
Disable Server Validation Thread 0x0002844F 55 48 89 E5 41 57 41 48 31 C0 48 FF C0 C3
Disable License Notify Thread 0x00027402 55 C3
Disable Crash Reporter 0x00025EA1 55 C3
Bash Script
# for MacOS
cd "/Applications/Sublime Merge.app/Contents/MacOS/" || exit
[ $(md5 sublime_merge) = D578F6D65F9470F84E1D6724277E6820 ] || exit
printf '\x48\xC7\xC0\x19\x01\x00\x00\xC3' | dd of=sublime_merge bs=1 seek=$((0x00027747)) conv=notrunc
printf '\x90\x90\x90\x90\x90'             | dd of=sublime_merge bs=1 seek=$((0x000295E4)) conv=notrunc
printf '\x90\x90\x90\x90\x90'             | dd of=sublime_merge bs=1 seek=$((0x00029603)) conv=notrunc
printf '\x48\x31\xC0\x48\xFF\xC0\xC3'     | dd of=sublime_merge bs=1 seek=$((0x0002844F)) conv=notrunc
printf '\xC3'                             | dd of=sublime_merge bs=1 seek=$((0x00027402)) conv=notrunc
printf '\xC3'                             | dd of=sublime_merge bs=1 seek=$((0x00025EA1)) conv=notrunc
Re-Sign App
codesign --force --deep --sign - "/Applications/Sublime Merge.app"

Requires Apple Command Line Tools to be installed

macOS (M1 ARM64) ↓

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

Desciption Offset Original Patched
Initial License Check 0x013F14DC F8 5F BC A9 F6 57 01 A9 20 23 80 D2 C0 03 5F D6
Persistent License Check 1 0x013F2BDC 21 6D 06 94 1F 20 03 D5
Persistent License Check 2 0x013F2BF0 1C 6D 06 94 1F 20 03 D5
Disable Server Validation Thread 0x013F1FA4 F6 57 BD A9 C0 03 5F D6
Disable License Notify Thread 0x013F1230 FC 6F BD A9 C0 03 5F D6
Disable Crash Reporter 0x013EFFC8 FC 6F BC A9 C0 03 5F D6
Bash Script
# for MacOS
cd "/Applications/Sublime Merge.app/Contents/MacOS/" || exit
[ $(md5 sublime_merge) = D578F6D65F9470F84E1D6724277E6820 ] || exit
printf '\x20\x23\x80\xD2\xC0\x03\x5F\xD6' | dd of=sublime_merge bs=1 seek=$((0x013F14DC)) conv=notrunc
printf '\x1F\x20\x03\xD5'                 | dd of=sublime_merge bs=1 seek=$((0x013F2BDC)) conv=notrunc
printf '\x1F\x20\x03\xD5'                 | dd of=sublime_merge bs=1 seek=$((0x013F2BF0)) conv=notrunc
printf '\xC0\x03\x5F\xD6'                 | dd of=sublime_merge bs=1 seek=$((0x013F1FA4)) conv=notrunc
printf '\xC0\x03\x5F\xD6'                 | dd of=sublime_merge bs=1 seek=$((0x013F1230)) conv=notrunc
printf '\xC0\x03\x5F\xD6'                 | dd of=sublime_merge bs=1 seek=$((0x013EFFC8)) conv=notrunc

Sublime Text & Sublime Merge cracked by TNT ( macOS | Without License) ↓

You can check and download the latest version from here (please note that not all versions are corresponding to the cracked version)

DISABLE SYSTEM INTERGRITY PROTECTION (SIP)

sudo spctl --master-disable

DISABLE GATEKEEPER

Enable Allow apps downloaded from “Anywhere” in Security & Privacy

disable-gatekeeper

@GitHub-2021-07-12
Copy link

Then it is better to build everything in one line if the 'cleanliness' is in this XD

@Destitute-Streetdwelling-Guttersnipe
Copy link

@JoshuaGiftson03
Copy link

i am new user so i just installed xxd.exe and moved it to the sublime.exe directory and ran the below hex codes one by one got some response from it but the application is still unregistered ; (
echo 00080355: 48 C7 C0 00 00 00 00 C3
echo 00004DFA: 90 90 90 90 90
echo 00004E13: 90 90 90 90 90
echo 00080023: C3
echo 00081B12: C3

@Destitute-Streetdwelling-Guttersnipe
Copy link

@JoshuaGiftson03
Copy link

@JoshuaGiftson03 Did you forget the command "xxd -r - sublimetext" ?

I have attached a screenshot how i opened xxd directly after placing it in the sublime text directory and pasting those commands one by one seems my approach may be wrong ?
Screenshot 2025-02-25 193554

@Destitute-Streetdwelling-Guttersnipe
Copy link

@JoshuaGiftson03
Copy link

Screenshot 2025-02-28 185815

@JoshuaGiftson03 it's wrong to open xxd and then paste those commands. You should open a command prompt (by running cmd.exe) and change the current directory to the place where you put sublime text. Then paste those commands to the command prompt.

I tried using git bash and ran the hex codes but still not working .... Am I doing anything wrong again this time ?; \

@Destitute-Streetdwelling-Guttersnipe
Copy link

@JoshuaGiftson03
Copy link

Screenshot 2025-02-28 234022
for using cmd.exe actually I downloaded the xxd.exe directly from the above thread and add it's folder path in environment variables but still it does not recognize xxd even after restarting the system or cmd or shell .

gitbash worked and was able to verify with the hx editor that the values are changes in the respective position but still when I open the application it still shows unregistered . Am I missing any steps ?[actually I tried hx editor first for editing and exporting the edited application but still it didn't work ... ]

@Destitute-Streetdwelling-Guttersnipe
Copy link

@Destitute-Streetdwelling-Guttersnipe
Copy link

@JoshuaGiftson03
Copy link

JoshuaGiftson03 commented Mar 1, 2025

@JoshuaGiftson03 if you're not comfortable with the command line, you can use hexed.it or HxD or Neo ...

now it worked ,thankyou so much just didn't do the last step entering the fake license number .... also thankyou for replying to my every queries ; )

@Destitute-Streetdwelling-Guttersnipe

have some fun

image

@defencedog
Copy link

Sublime Text 4192

Linux x64

echo 003FDD46: 48 C7 C0 00 00 00 00 C3 | xxd -r - sublime_text
echo 003E7602: 90 90 90 90 90          | xxd -r - sublime_text
echo 003E761A: 90 90 90 90 90          | xxd -r - sublime_text
echo 003FDA62: C3                      | xxd -r - sublime_text
echo 003FFA04: C3                      | xxd -r - sublime_text

For 4192 under Armbian Noble aarch64 is not working

@Ferohers
Copy link

Ferohers commented Mar 4, 2025

macOS builds

Sublime Text (Stable Channel, Build 4180)
Sublime Text (Dev Channel, Build 4183)
Sublime Merge (Stable Channel, Build 2102)

cd "/Applications/Sublime Merge.app/Contents/MacOS/" || exit
md5 -q sublime_merge | grep -i "980AE5632EA58F7E4ECD55B7CE16D6BB" || exit

echo 000AFFCA: 48 C7 C0 00 00 00 00 C3 | xxd -r - sublime_merge
echo 000B24C6: 90 90 90 90 90          | xxd -r - sublime_merge
echo 000B24E5: 90 90 90 90 90          | xxd -r - sublime_merge
echo 000B0D8B: C3                      | xxd -r - sublime_merge
echo 000AFCE6: C3                      | xxd -r - sublime_merge

echo 013D30C4: 00 00 80 D2 C0 03 5F D6 | xxd -r - sublime_merge
echo 013D4DB4: 1F 20 03 D5             | xxd -r - sublime_merge
echo 013D4DC8: 1F 20 03 D5             | xxd -r - sublime_merge
echo 013D3C60: C0 03 5F D6             | xxd -r - sublime_merge
echo 013D2E4C: C0 03 5F D6             | xxd -r - sublime_merge

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

Sublime Merge (Dev Channel, Build 2101)

thanks man.

@ehsan18t
Copy link

ehsan18t commented Mar 5, 2025

can anyone give the offsets for Sublime Merge 2102 windows?

@Destitute-Streetdwelling-Guttersnipe
Copy link

@ShineUnM
Copy link

ShineUnM commented Mar 7, 2025

any patch for ST 4195?

@alexkoj
Copy link

alexkoj commented Mar 7, 2025

Patch for Windows v4195

[=] Offset 0x319b0 : invalidate1
- e8 cb c0 18 00
+ 90 90 90 90 90
[=] Offset 0x319c9 : invalidate2
- e8 b2 c0 18 00
+ 90 90 90 90 90
[=] Offset 0xaabed : license_notification
- 41 57 41 56
+ 48 31 c0 c3
[=] Offset 0xaaf24 : license_check.2
- 41 57 41 56
+ 48 31 c0 c3
[=] Offset 0xac70e : server_validate
- 56 57 53 48 83 ec 20
+ 48 31 c0 48 ff c0 c3

@ShineUnM
Copy link

ShineUnM commented Mar 7, 2025

Great job, It works for ST 4195@Win64.

@Viterzgir
Copy link

Viterzgir commented Mar 13, 2025

Hello. Did you have patch for Linux x 64 v 4195?

@alexkoj
Copy link

alexkoj commented Mar 16, 2025

ST 4196 Win64

[=] Offset 0x319b0 : invalidate1
         -  e8 9b c0 18 00
         +  90 90 90 90 90

[=] Offset 0x319c9 : invalidate2
         -  e8 82 c0 18 00
         +  90 90 90 90 90

[=] Offset 0xaabed : license_notification
         -  41 57 41 56
         +  48 31 c0 c3

[=] Offset 0xaaf24 : license_check.2
         -  41 57 41 56
         +  48 31 c0 c3

[=] Offset 0xac70c : server_validate
         -  56 57 53 48 83 ec 20
         +  48 31 c0 48 ff c0 c3

@HassanMirza01
Copy link

nothing for Sublime text 4196 and Sublime merge 2105 on Linux?

@MxJ24
Copy link

MxJ24 commented Mar 26, 2025

macOS builds

Sublime Text (Stable Channel, Build 4189)

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

echo 0009F72C: 48 C7 C0 00 00 00 00 C3 | xxd -r - sublime_text
echo 00092A99: 90 90 90 90 90          | xxd -r - sublime_text
echo 00092AB1: 90 90 90 90 90          | xxd -r - sublime_text
echo 000A0CFF: C3                      | xxd -r - sublime_text
echo 0009F3E2: C3                      | xxd -r - sublime_text

echo 00FC64F4: 00 00 80 D2 C0 03 5F D6 | xxd -r - sublime_text
echo 00FBC8C4: 1F 20 03 D5             | xxd -r - sublime_text
echo 00FBC8D8: 1F 20 03 D5             | xxd -r - sublime_text
echo 00FC7858: C0 03 5F D6             | xxd -r - sublime_text
echo 00FC61F4: C0 03 5F D6             | xxd -r - sublime_text

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

Sublime Text (Dev Channel, Build 4190)

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

echo 0009F824: 48 C7 C0 00 00 00 00 C3 | xxd -r - sublime_text
echo 00092A9C: 90 90 90 90 90          | xxd -r - sublime_text
echo 00092AB4: 90 90 90 90 90          | xxd -r - sublime_text
echo 000A0DF7: C3                      | xxd -r - sublime_text
echo 0009F4DA: C3                      | xxd -r - sublime_text

echo 00FCA61C: 00 00 80 D2 C0 03 5F D6 | xxd -r - sublime_text
echo 00FC08BC: 1F 20 03 D5             | xxd -r - sublime_text
echo 00FC08D0: 1F 20 03 D5             | xxd -r - sublime_text
echo 00FCB974: C0 03 5F D6             | xxd -r - sublime_text
echo 00FCA31C: C0 03 5F D6             | xxd -r - sublime_text

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

@urxi
can proxyman (a proxy tool like charles) (https://proxyman.com/) be cracked like this?

there are one possible solution:
if you install it from setapp, there are 7 days trial with full functions, maybe we can crack this point.
as I known this is a repo crack this point, but it's not open source: https://github.com/QiuChenly/InjectLib

another solution is use dylib
this is the repo: https://github.com/marlkiller/dylib_dobby_hook
this crack it not good enough, because after crack it , we can't install the proxy helper tool for it.

@ehsan18t
Copy link

can anyone give the offsets for Sublime Merge 2102 windows?

@zam89
Copy link

zam89 commented Apr 22, 2025

any offsets for Sublime Text 4192 for Mac OS (ARM64)?

@HassanMirza01
Copy link

any offsets for Sublime Text 4192 for Mac OS (ARM64)?

this project or help stuff seems dead ;)

@Destitute-Streetdwelling-Guttersnipe
Copy link

@XOKP
Copy link

XOKP commented Apr 30, 2025

any offsets for Sublime Text 4192 for Mac OS (ARM64)?
Look at old comments by urxi. They got the patch for that a few months ago.

I think that was for Intel Macs.

@puzzle9
Copy link

puzzle9 commented May 1, 2025

can anyone give the offsets for Sublime Merge 2102 windows?

https://gist.github.com/maboloshi/feaa63c35f4c2baab24c9aaf9b3f4e47?permalink_comment_id=5272278#gistcomment-5272278

old to long tong

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