-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.88 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.88 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "camjacking",
"version": "0.0.3",
"description": "CamJacking is an open-source ethical hacking and social engineering simulation tool for security awareness and penetration testing. It helps organizations test human negligence, webcam permission abuse, and security posture in real-world scenarios.",
"homepage": "https://github.com/Cappricio-Securities/camjacking",
"main": "camjacking.js",
"bin": {
"camjacking": "./camjacking.js",
"CamJacking": "./camjacking.js",
"cam-jacking": "./camjacking.js"
},
"scripts": {
"start": "node camjacking.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Cappricio-Securities/camjacking.git"
},
"bugs": {
"url": "https://github.com/Cappricio-Securities/camjacking/issues"
},
"author": {
"name": "Karthikeyan V (karthithehacker)",
"email": "contact@karthithehacker.com",
"url": "https://karthithehacker.com"
},
"license": "MIT",
"keywords": [
"camjacking",
"webcam hacking",
"webcam security",
"social engineering",
"ethical hacking",
"penetration testing",
"red team",
"blue team",
"cybersecurity",
"security awareness",
"security audit",
"cli tool",
"hacking tools",
"infosec",
"bug bounty",
"osint",
"kali linux tools",
"pentest toolkit",
"security testing",
"cappricio securities",
"karthithehacker"
],
"files": [
"camjacking.js",
"includes",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=18"
},
"preferGlobal": true,
"dependencies": {
"axios": "^1.13.5",
"bcrypt": "^6.0.0",
"body-parser": "^2.2.2",
"cors": "^2.8.6",
"crypto": "^1.0.1",
"dotenv": "^17.3.1",
"express": "^5.2.1",
"form-data": "^4.0.5",
"jsonwebtoken": "^9.0.3",
"lowdb": "^1.0.0",
"md5": "^2.3.0",
"multer": "^2.0.2",
"uuid": "^13.0.0"
}
}