-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 807 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 807 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
{
"name": "node-timing-attack",
"version": "1.0.0",
"description": "Demo of API key cracking using a timing attack",
"author": "Dmitry Shpika",
"license": "MIT",
"private": true,
"main": "server.js",
"repository": {
"type": "git",
"url": "https://github.com/scriptin/node-timing-attack"
},
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"keygen": "cat < /dev/urandom | head -c 32 | LC_CTYPE=C tr -cd '[:alnum:]' > key.txt",
"server:safe": "node server.js",
"server:unsafe": "node server.js unsafe",
"crack:length": "node crack-length.js",
"crack:key": "node crack-key.js",
"benchmark": "node benchmark.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"express": "^4.17.1",
"mathjs": "^10.0.0"
}
}