This repository has been archived by the owner on Jun 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 71
/
package.json
107 lines (107 loc) · 2.74 KB
/
package.json
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "bluebox-ng",
"version": "1.2.0",
"description": "Pentesting framework using Node.js powers. Specially focused in VoIP/UC.",
"author": {
"name": "Jesús Pérez <@jesusprubio>",
"email": "[email protected]",
"url": "http://jesusprubio.name"
},
"contributors": [
"https://github.com/jesusprubio/bluebox-ng/graphs/contributors"
],
"main": "index",
"bin": {
"bluebox-ng": "bin"
},
"repository": {
"type": "git",
"url": "https://github.com/jesusprubio/bluebox-ng/bluebox-ng.git"
},
"keywords": [
"security",
"tool",
"pentest",
"pentestint",
"exploit",
"exploiting",
"voip",
"sip",
"ami"
],
"homepage": "https://github.com/jesusprubio/bluebox-ng",
"bugs": {
"url": "https://github.com/jesusprubio/bluebox-ng/issues"
},
"license": "MIT",
"scripts": {
"start": "node bin",
"test": "tap test/cli",
"lint": "eslint .",
"dep-ok": "depcheck --ignores=release-it",
"dep-sec": "nsp check",
"dep-old": "ncu",
"posttest": "npm run lint && npm run dep-ok && npm run dep-sec",
"release": "npm run cont-int && release-it"
},
"dependencies": {
"address": "^1.0.2",
"cli-color": "^1.2.0",
"debug": "^2.2.0",
"dirbuster": "^0.4.0",
"dns-axfr": "^0.1.5",
"es6-promisify": "^5.0.0",
"exploitsearch": "^2.0.2",
"geoip-lite": "^1.1.9",
"handlebars": "^4.0.6",
"icanhazip": "^1.0.3",
"is-local-ip": "^1.0.1",
"jsftp": "github:jesusprubio/jsftp",
"keypress": "^0.2.1",
"ldapjs": "^1.0.1",
"lodash": "^4.14.1",
"moment": "^2.18.1",
"mongodb": "^2.2.22",
"mysql": "^2.13.0",
"n-readlines": "^0.2.7",
"nami": "jesusprubio/Nami",
"netmask": "^1.0.5",
"node-emoji": "^1.5.1",
"node-wifiscanner": "mauricesvay/node-wifiscanner",
"nodejs-traceroute": "^1.1.0",
"p-map": "^1.1.1",
"phantom": "^4.0.0",
"ping": "danielzzz/node-ping#master",
"prettyjson": "^1.1.0",
"request-promise": "^4.1.1",
"require-directory": "^2.1.0",
"shodan-client": "^3.0.2",
"sip-fake-stack": "jesusprubio/sip-fake-stack",
"snmp-native": "^1.1.0",
"ssh2": "^0.5.4",
"subquest": "^1.2.0",
"tftp-client": "^0.2.1",
"validator": "^6.2.1",
"vorpal": "^1.11.4",
"vorpal-grep": "^0.2.0",
"vorpal-hacker-news": "^1.0.6",
"vorpal-less": "0.0.13",
"whois": "^2.3.6",
"wifi-name": "^3.0.0"
},
"devDependencies": {
"depcheck": "^0.6.4",
"eslint": "^3.6.0",
"eslint-config-airbnb-base": "^8.0.0",
"eslint-plugin-import": "^1.16.0",
"eslint-plugin-json": "^1.2.0",
"npm-check-updates": "^2.8.0",
"nsp": "^2.1.0",
"release-it": "^2.5.3",
"tap": "^8.0.1"
},
"engines": {
"node": ">=6",
"npm": ">=3"
}
}