|
1 | 1 | # ByteLuaObfuscator |
2 | 2 | Simple Lua Bytecode-Method Obfuscator for Lua 5.1+ / RBXLua. <br> |
3 | | -Obfuscator for Lua 5.1+ (Supported RBXLua but no Luau syntax) in Lua. <br> |
| 3 | +Obfuscator for Lua 5.1 in Lua. <br> |
4 | 4 | Reboy is me. <br> |
5 | 5 | Sorry for dirty code but it's obfuscator. |
6 | 6 | ### Credits |
7 | 7 | - FiOne LBI (created by same author as Rerubi) - https://github.com/Rerumu/FiOne |
8 | | -- Yueliang 5 (Lua compiler in Lua) - http://yueliang.luaforge.net/ |
| 8 | +- ~~Yueliang 5 (Lua compiler in Lua) - http://yueliang.luaforge.net/~~ |
9 | 9 | - Moonshine (improved version of Yueliang) - https://github.com/gamesys/moonshine |
10 | 10 | - ARCFOUR implementation in pure Lua (RC4) - https://www.rjek.com/ |
11 | 11 | ## Features |
@@ -33,19 +33,19 @@ lua path/to/module.lua |
33 | 33 | Help: |
34 | 34 | ```sh |
35 | 35 | ByteLuaObfuscator |
36 | | -Copyright (c) 2022 Reboy / M0dder |
| 36 | +Copyright (c) 2023 Reboy / M0dder |
37 | 37 |
|
38 | 38 | Usage: |
39 | | -lua module.lua --source "<FILE_PATH>" --output "<FILE_PATH>" [..] |
| 39 | +lua module.lua -s "<FILE_PATH>" -o "<FILE_PATH>" [..] |
40 | 40 |
|
41 | 41 | Available Arguments: |
42 | 42 | --help -h Shows help. |
43 | | ---source "<FILE_PATH>" Path to Lua script to obfuscate. |
44 | | ---output "<FILE_PATH>" Path to Lua script to output (document will be created if there isn't). |
45 | | ---comment "<COMMENT>" Comment Option. |
46 | | ---varcomm "<COMMENT>" Comment Option for lua variable value. |
47 | | ---varname "<STRING>" Lua variable name (Special characters, spaces will be replaced with underline). |
48 | | ---cryptvarcomm Encode (Decodable) comment for vartiable value. |
| 43 | +-s --source "<FILE_PATH>" Path to Lua script to obfuscate. |
| 44 | +-o --output "<FILE_PATH>" Path to Lua script to output (document will be created if there isn't). |
| 45 | +-c --comment "<COMMENT>" Comment Option. |
| 46 | +-vc --varcomm "<COMMENT>" Comment Option for lua variable value. |
| 47 | +-vn --varname "<STRING>" Lua variable name (Special characters, spaces will be replaced with underline). |
| 48 | +-C --cryptvarcomm Encode (Decodable) comment for vartiable value. |
49 | 49 |
|
50 | 50 | ``` |
51 | 51 | ## Usage (Module ver) |
|
0 commit comments