CLEO Help crypt script

CLEO related

davidel

Well-known member
Joined
Jan 17, 2020
Messages
207
Reaction score
7
Location
Germania
does it still exists a way to crypt your cleo that nobody can decrypt it?
 

Parazitas

God
Staff member
Joined
Jan 2, 2017
Messages
3,315
Solutions
7
Reaction score
937
Location
Lithuania
By using method :
PHP:
0AB1: @label 0
You can make code not editable.
If someone gonna try change something crash will come when they try use it after editing.
Of course if you know how to use this method properly.

Bye.
 

ajom

Well-known member
Joined
Apr 14, 2020
Messages
389
Solutions
2
Reaction score
270
Location
Pluto
Try reading a way to apply encryption to any cleo yourself and then make your own Encryption Application, combine multiple encryption methods in a unique/shuffled way so that the algorithm will be hard to reverse. Some encryption methods you can use:
  1. XOR Crypt
    • Perform XOR on every byte of the cleo script using a certain value(which will serve as the key).
  2. Bit Rotation Crypt
    • Rotates bits leftwards/rightwards of every byte of the cleo script
  3. Bit Swap Crypt
    • Define multiple bit to swap on to each other, that will be applied to every byte of the cleo script.
  4. Byte Inflate/Deflate Crypt
    • Increase/Decrease a certain value to every byte of the script.
  5. Custom Crypt Methods

Note: Any kind of encryption(no matter how robust it is) is useless against SCM/memory dumping.
 
Top