You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
split URLs into 3-5 parts, encrypt each part using XOR and base64, provide encryption and decryption functions for runtime URL reconstruction, suitable for secure URL obfuscation.
The Link Obfuscator is a code snippet that can be used to encrypt and split URLs into 3-5 parts (ran), making it confused for reverse engineers while reversing. It uses XOR encryption combined with base64 encoding and generates random variable names for each encrypted part, enhancing obfuscation.
4
+
5
+
## Features
6
+
7
+
* The URL is split into 3-5 parts, with each part encrypted separately, requiring reverse engineers to identify and decrypt all segments correctly.
8
+
* Variable names are randomly generated with lowercase prefixes, making it hard to trace or predict the code structure.
9
+
* The XOR and base64 encoding combination obscures the data, and without the key, brute-forcing the decryption is computationally intensive.
10
+
* The random splitting and variable naming eliminate consistent patterns, forcing reverse engineers to analyze each output individually.
0 commit comments