-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.27 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.27 KB
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
{
"name": "webcrypto-interceptor",
"version": "0.3.0",
"description": "Stealth CDP-based reverse-engineering toolkit: capture crypto.subtle calls, network traffic, workers, WASM and embedded secrets from any website.",
"license": "MIT",
"author": "Amit Haina",
"repository": {
"type": "git",
"url": "git+https://github.com/AmitHaina/webcrypto-interceptor.git"
},
"bugs": {
"url": "https://github.com/AmitHaina/webcrypto-interceptor/issues"
},
"homepage": "https://github.com/AmitHaina/webcrypto-interceptor#readme",
"keywords": [
"cdp",
"chrome-devtools-protocol",
"webcrypto",
"crypto",
"reverse-engineering",
"traffic-capture",
"puppeteer",
"tls",
"hls",
"drm",
"anti-debug"
],
"main": "capture_server.js",
"bin": {
"webcrypto-interceptor": "capture_server.js"
},
"files": [
"capture_server.js",
"src/",
"scripts/extract-keys.js",
"scripts/verify-reimpl.js",
"README.md",
"LICENSE"
],
"scripts": {
"start": "node capture_server.js",
"test": "node tests/run.js",
"lint": "eslint ."
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"js-beautify": "^2.0.3",
"puppeteer": "^24.43.1"
},
"devDependencies": {
"eslint": "^9.0.0"
}
}