-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathhelp.js
More file actions
27 lines (20 loc) · 1.17 KB
/
help.js
File metadata and controls
27 lines (20 loc) · 1.17 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
function show(){
console.log("\nHash matching:\n");
console.log("-t, --target The hash you are trying to find a match for.");
console.log("-h, --hash Type of hash e.g sha256, sha512 etc. (sha256 default)");
console.log("-s, --start The number you would like to start at (1 default)");
console.log("-d, --delay Delay in milliseconds between each hash (5 default)");
console.log("-l, --log Keep a log of all created hashes to file (Can slow hash generation when ON)");
console.log("-V, --Verbose Verbose output (shows hex & hash)");
console.log(" --ssh Enables SSH mode (No console output at all) - Highly recommended when running Hash-gen on a VPS");
console.log("\nHash creation:\n");
console.log("-c, --create Only used when creating a hash. The value you would like to hash (e.g. password)");
console.log("-h, --hash Type of hash e.g sha256, sha512 etc. (sha256 default)");
console.log(" --digest hex, base64, utf8, latin1 (hex default)");
console.log("\nGlobal:\n");
console.log(" --help Shows help for Hash-gen\n");
process.exit(-1);
}
module.exports = {
show: show
};