lua-obfuscator 3.0.1 → 3.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +12 -10
- package/package.json +7 -4
package/README.md
CHANGED
|
@@ -47,13 +47,15 @@ console.log(obfuscated);
|
|
|
47
47
|
```
|
|
48
48
|
|
|
49
49
|
## Features
|
|
50
|
-
|
|
51
|
-
|
|
|
52
|
-
|
|
53
|
-
|
|
|
54
|
-
|
|
|
55
|
-
|
|
|
56
|
-
|
|
|
57
|
-
|
|
|
58
|
-
|
|
|
59
|
-
|
|
|
50
|
+
|
|
51
|
+
| Feature | Description |
|
|
52
|
+
|--------------------------|-------------|
|
|
53
|
+
| InsertJunk | Inserts meaningless junk statements |
|
|
54
|
+
| RenameVariables | Renames variables to random strings |
|
|
55
|
+
| Vmify | Advanced custom VM (bytecode + interpreter) — core strength |
|
|
56
|
+
| ConstantArray | Wraps constants into a randomized array |
|
|
57
|
+
| GlobalMapping | Maps globals (`print`, `_G`, etc.) to a randomized table |
|
|
58
|
+
| StringsToExpressions | Converts strings like `"abc"` into concatenated expressions |
|
|
59
|
+
| NumbersToExpressions | Converts numbers into complex arithmetic expressions |
|
|
60
|
+
| EncryptStrings | Encrypts strings using XOR |
|
|
61
|
+
| WrapInFunction | Wraps the entire script in an IIFE |
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "lua-obfuscator",
|
|
3
3
|
"author": "Uav1010",
|
|
4
|
-
"version": "3.0.
|
|
4
|
+
"version": "3.0.3",
|
|
5
5
|
"description": "obfuscator for lua and luau",
|
|
6
6
|
"main": "./dist/index.js",
|
|
7
7
|
"module": "./dist/index.mjs",
|
|
@@ -9,9 +9,12 @@
|
|
|
9
9
|
"type": "module",
|
|
10
10
|
"exports": {
|
|
11
11
|
".": {
|
|
12
|
-
"types":
|
|
13
|
-
|
|
14
|
-
|
|
12
|
+
"types": {
|
|
13
|
+
"require": "./dist/index.d.cts",
|
|
14
|
+
"import": "./dist/index.d.ts"
|
|
15
|
+
},
|
|
16
|
+
"import": "./dist/index.js",
|
|
17
|
+
"require": "./dist/index.cjs"
|
|
15
18
|
}
|
|
16
19
|
},
|
|
17
20
|
"repository": {
|