-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
32 lines (32 loc) · 796 Bytes
/
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
{
"name": "node-reverse-trojan",
"version": "1.0.0",
"description": "an example of a reverse RAT (remote administration tool / trojan horse) written in NodeJS",
"main": "server.js",
"dependencies": {
"body-parser": "^1.13.3",
"express": "^4.13.3",
"request": "^2.61.0",
"rethinkdb": "^2.1.0"
},
"devDependencies": {},
"scripts": {
"start": "node server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/joshterrill/node-reverse-trojan.git"
},
"keywords": [
"rat",
"trojan",
"trojan",
"horse"
],
"author": "Josh Terrill",
"license": "MIT",
"bugs": {
"url": "https://github.com/joshterrill/node-reverse-trojan/issues"
},
"homepage": "https://github.com/joshterrill/node-reverse-trojan#readme"
}