- Download & Install Sublime Text 3.2.2 Build 3211
- Visit https://hexed.it/
- Open file select sublime_text.exe
- Offset
0x8545: Original84->85 - Offset
0x08FF19: Original75->EB - Offset
0x1932C7: Original75->74(remove UNREGISTERED in title bar, so no need to use a license) - Export File and save it to location you want
- Backup
sublime_text.exefile (just rename) - Copy
sublime_text.exemodified to directory Sublime Text 3 - Happy Coding :)
- Download & Install Sublime Text 4 Alpha 4094
- Visit https://hexed.it/
- Open file select sublime_text.exe
- Go to Address:
0000A700change80 38 00toFE 00 90 - Export File and save it to location you want
- Backup
sublime_text.exefile (just rename) - Copy
sublime_text.exemodified to directory Sublime Text 4 (i.e C:\Program Files\Sublime Text) - Use this License
----- 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 ------
- Happy Coding :)
Blocked by Microsoft Defender SmartScreen -> More Info -> Run Anyway
- Download & Install Sublime Text 3 or 4
- Visit https://hexed.it/
- Open file select sublime_text
- Linux Location: /opt/sublime_text/sublime_text
- MacOS Location: /Application/Sublime Text [version].app (Correct Me If I'm Wrong)
- Search
97 94 0DandChangeto00 00 00 - Export File and save it to location you want
- Backup
sublime_textfile (just rename) - Copy
sublime_textmodified to default directory Sublime Text - Use this License
----- 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 ------
- Happy Coding :)





Quick Guide: Perl In-Place Binary Patching
This document explains the command line technique that uses Perl to search for and replace sequences of bytes directly within a binary file, such as the Sublime Text executable.
1. The Modification Command (Patch)
The following command is used to apply a modification (patch) to the main Sublime Text 4 binary on Arch Linux.
/opt/sublime_text/sublime_text.2. Anatomy of the Perl Command
The power of this one-line command lies in Perl's flags and its ability to handle regular expressions in a binary context.
Command Part | Descriptionsudo | Root Permission: Required to have write permission to the installation directory (/opt/sublime_text/).
perl | Interpreter: Invokes the Perl language, which is ideal for text and binary processing.
-pi | In-Place: Where the magic happens. The -i edits the file directly (in-place), and -p creates an implicit loop over the file's content.
-e | Execute: Tells Perl to execute the code that follows.
s/.../.../ | Substitution: The substitution operator (s/SEARCH/REPLACE/).
\x... | Hexadecimal Bytes: The \x prefix allows searching and replacing bytes using their pure hexadecimal values, essential for binaries.
/opt/sublime_text/sublime_text | Target: The full path to the binary file that will be modified.