expose-kit 0.1.6 → 0.2.0
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 +41 -5
- package/dist/package.json +56 -56
- package/package.json +56 -56
package/README.md
CHANGED
|
@@ -8,12 +8,48 @@
|
|
|
8
8
|
##### <center>❓ Question: Join our [Discord community](https://evex.land)</center>
|
|
9
9
|
---
|
|
10
10
|
|
|
11
|
-
##
|
|
12
|
-
|
|
11
|
+
## Concept
|
|
12
|
+
JavaScript deobfuscation tools are *everywhere*.
|
|
13
|
+
<img width="145.2" height="113.5" alt="image" src="https://github.com/relative/synchrony/blob/master/.github/hm.png?raw=true" />
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
But many of them are **too aggressive**, rewriting code until it breaks.
|
|
17
|
+
|
|
13
18
|
<img width="654" height="24" alt="image" src="https://github.com/user-attachments/assets/fd11d250-0163-4cd2-b36c-5514137fe087" />
|
|
14
19
|
|
|
15
|
-
|
|
16
|
-
|
|
20
|
+
Expose Kit takes *a different path*.
|
|
21
|
+
|
|
22
|
+
Instead of brute force, it works **step by step**.
|
|
23
|
+
|
|
24
|
+
The goal is simple: **safe and universal toolkit**.
|
|
25
|
+
|
|
26
|
+
Alongside deobfuscation, Expose Kit includes a collection of practical utilities.
|
|
27
|
+
|
|
28
|
+
Everything you need is documented right here in this [README](README.md).
|
|
29
|
+
|
|
30
|
+
---
|
|
31
|
+
|
|
32
|
+
##### If the feature you’re looking for doesn’t exist, please create an [issue](https://github.com/EdamAme-x/expose-kit/issues).
|
|
33
|
+
##### If you know what you want to do but aren’t sure which feature to use, join our [Discord community](https://evex.land) and ask for help.
|
|
34
|
+
---
|
|
35
|
+
|
|
36
|
+
## Installation
|
|
37
|
+
*Just one step*
|
|
38
|
+
<!-- For Highlight -->
|
|
39
|
+
```regex
|
|
40
|
+
npm i -g expose-kit
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
<!-- For Highlight -->
|
|
44
|
+
```regex
|
|
45
|
+
expose --help
|
|
46
|
+
```
|
|
47
|
+
|
|
48
|
+
## Docs
|
|
49
|
+
Coming soon...
|
|
17
50
|
|
|
18
|
-
|
|
51
|
+
## Authors
|
|
52
|
+
- [EdamAme-x](https://github.com/EdamAme-x)
|
|
19
53
|
|
|
54
|
+
Built for research, not abuse.
|
|
55
|
+
Want stronger obfuscation? Then make something this tool can’t undo.
|
package/dist/package.json
CHANGED
|
@@ -1,58 +1,58 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
2
|
+
"name": "expose-kit",
|
|
3
|
+
"version": "0.2.0",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"private": false,
|
|
6
|
+
"author": "EdamAmex <edame8080@gmail.com> (https://github.com/EdamAme-x)",
|
|
7
|
+
"license": "MIT",
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "git+https://github.com/EdamAme-x/expose-kit.git"
|
|
11
|
+
},
|
|
12
|
+
"publishConfig": {
|
|
13
|
+
"registry": "https://registry.npmjs.org",
|
|
14
|
+
"access": "public"
|
|
15
|
+
},
|
|
16
|
+
"homepage": "https://evex.land",
|
|
17
|
+
"scripts": {
|
|
18
|
+
"test": "bun test",
|
|
19
|
+
"format": "biome format .",
|
|
20
|
+
"format:fix": "biome format --write .",
|
|
21
|
+
"lint": "biome lint .",
|
|
22
|
+
"lint:fix": "biome lint --write .",
|
|
23
|
+
"copy": "bun run utils/common/cp.ts package.json dist/package.json",
|
|
24
|
+
"build": "tsup",
|
|
25
|
+
"postbuild": "publint",
|
|
26
|
+
"prepublishOnly": "bun copy",
|
|
27
|
+
"release": "np"
|
|
28
|
+
},
|
|
29
|
+
"devDependencies": {
|
|
30
|
+
"@biomejs/biome": "2.3.11",
|
|
31
|
+
"@types/bun": "latest",
|
|
32
|
+
"publint": "^0.3.16",
|
|
33
|
+
"tsup": "^8.5.1"
|
|
34
|
+
},
|
|
35
|
+
"peerDependencies": {
|
|
36
|
+
"typescript": "^5"
|
|
37
|
+
},
|
|
38
|
+
"dependencies": {
|
|
39
|
+
"@babel/generator": "^7.28.5",
|
|
40
|
+
"@babel/parser": "^7.28.5",
|
|
41
|
+
"@babel/traverse": "^7.28.5",
|
|
42
|
+
"@babel/types": "^7.28.5",
|
|
43
|
+
"@types/babel__generator": "^7.27.0",
|
|
44
|
+
"@types/babel__traverse": "^7.28.0",
|
|
45
|
+
"chalk": "^5.6.2",
|
|
46
|
+
"commander": "^14.0.2",
|
|
47
|
+
"loading-cli": "^1.1.2"
|
|
48
|
+
},
|
|
49
|
+
"bin": {
|
|
50
|
+
"expose": "dist/index.js",
|
|
51
|
+
"expose-kit": "dist/index.js",
|
|
52
|
+
"expose-js": "dist/index.js",
|
|
53
|
+
"exposejs": "dist/index.js"
|
|
54
|
+
},
|
|
55
|
+
"files": [
|
|
56
|
+
"dist"
|
|
57
|
+
]
|
|
58
58
|
}
|
package/package.json
CHANGED
|
@@ -1,58 +1,58 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
2
|
+
"name": "expose-kit",
|
|
3
|
+
"version": "0.2.0",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"private": false,
|
|
6
|
+
"author": "EdamAmex <edame8080@gmail.com> (https://github.com/EdamAme-x)",
|
|
7
|
+
"license": "MIT",
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "git+https://github.com/EdamAme-x/expose-kit.git"
|
|
11
|
+
},
|
|
12
|
+
"publishConfig": {
|
|
13
|
+
"registry": "https://registry.npmjs.org",
|
|
14
|
+
"access": "public"
|
|
15
|
+
},
|
|
16
|
+
"homepage": "https://evex.land",
|
|
17
|
+
"scripts": {
|
|
18
|
+
"test": "bun test",
|
|
19
|
+
"format": "biome format .",
|
|
20
|
+
"format:fix": "biome format --write .",
|
|
21
|
+
"lint": "biome lint .",
|
|
22
|
+
"lint:fix": "biome lint --write .",
|
|
23
|
+
"copy": "bun run utils/common/cp.ts package.json dist/package.json",
|
|
24
|
+
"build": "tsup",
|
|
25
|
+
"postbuild": "publint",
|
|
26
|
+
"prepublishOnly": "bun copy",
|
|
27
|
+
"release": "np"
|
|
28
|
+
},
|
|
29
|
+
"devDependencies": {
|
|
30
|
+
"@biomejs/biome": "2.3.11",
|
|
31
|
+
"@types/bun": "latest",
|
|
32
|
+
"publint": "^0.3.16",
|
|
33
|
+
"tsup": "^8.5.1"
|
|
34
|
+
},
|
|
35
|
+
"peerDependencies": {
|
|
36
|
+
"typescript": "^5"
|
|
37
|
+
},
|
|
38
|
+
"dependencies": {
|
|
39
|
+
"@babel/generator": "^7.28.5",
|
|
40
|
+
"@babel/parser": "^7.28.5",
|
|
41
|
+
"@babel/traverse": "^7.28.5",
|
|
42
|
+
"@babel/types": "^7.28.5",
|
|
43
|
+
"@types/babel__generator": "^7.27.0",
|
|
44
|
+
"@types/babel__traverse": "^7.28.0",
|
|
45
|
+
"chalk": "^5.6.2",
|
|
46
|
+
"commander": "^14.0.2",
|
|
47
|
+
"loading-cli": "^1.1.2"
|
|
48
|
+
},
|
|
49
|
+
"bin": {
|
|
50
|
+
"expose": "dist/index.js",
|
|
51
|
+
"expose-kit": "dist/index.js",
|
|
52
|
+
"expose-js": "dist/index.js",
|
|
53
|
+
"exposejs": "dist/index.js"
|
|
54
|
+
},
|
|
55
|
+
"files": [
|
|
56
|
+
"dist"
|
|
57
|
+
]
|
|
58
58
|
}
|