forked from mtagius/pwnagotchi-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.46 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
{
"name": "pwnagotchi-tools",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"cli": "node ./cli/cli.mjs",
"get": "node ./pwnagetty/pwnagetty-get-pcaps.js",
"vagrant-up": "cd ./windows/vagrant && vagrant up --provision",
"vagrant-destroy": "cd ./windows/vagrant && vagrant destroy -f",
"generate": "node ./pwnagetty/pwnagetty-generate.js",
"attacks": "node ./scripts/generate-attacks-list.js",
"scripts": "npm run attacks && node ./scripts/generate-hashcat-scripts.js && chmod +x ./hashcat/attack-scripts/*",
"results": "node ./scripts/cracked-networks-results.js",
"passwords": "node ./scripts/custom-wordlist-generator.js",
"combos": "node ./hashcat/generator/wordlist-combinations-generator.js",
"most": "npm run generate && npm run attacks && npm run scripts",
"all": "npm run get && npm run most"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ivy00johns/pwnagotchi-tools.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ivy00johns/pwnagotchi-tools/issues"
},
"homepage": "https://github.com/ivy00johns/pwnagotchi-tools#readme",
"dependencies": {
"chalk": "^5.3.0",
"clear": "^0.1.0",
"clipboardy": "^4.0.0",
"clui": "^0.3.6",
"commander": "^11.1.0",
"configstore": "^6.0.0",
"figlet": "^1.7.0",
"fs": "^0.0.1-security",
"inquirer": "^9.2.12",
"minimist": "^1.2.8",
"ssh2": "^1.14.0",
"ssh2-sftp-client": "^9.1.0",
"table": "^6.8.1"
}
}