forked from fkie-cad/friTap
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1010 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 1010 Bytes
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
{
"name": "friTap",
"version": "1.5.0",
"description": "Frida agent for logging SSL traffic as plaintext and extracting SSL keys",
"private": true,
"main": "agent/fritap_agent.ts",
"scripts": {
"prepare": "npm run build",
"build": "frida-compile agent/fritap_agent.ts -o friTap/fritap_agent.js",
"watch": "frida-compile agent/fritap_agent.ts -o friTap/_fritap_agent.js -w"
},
"keywords": [
"frida",
"runtime",
"mobile",
"security",
"friTap"
],
"devDependencies": {
"@types/frida-gum": "^19.0.1",
"@types/node": "^18",
"@types/source-map-support": "^0.5.6",
"frida-compile": "^19.0.4",
"source-map": "^0.7.4",
"typescript": "^5.8.2"
},
"dependencies": {
"JSON": "^1.0.0",
"frida": "^17.2.0",
"frida-fs": "^5.2.1",
"frida-java-bridge": "^7.0.12",
"frida-objc-bridge": "^8.0.5",
"util": "^0.12.5"
}
}