forked from JumpsecLabs/Rook
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathvariables.tf
49 lines (37 loc) · 911 Bytes
/
variables.tf
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
variable "snapid" {
default = "snap-"
}
variable "nvidia" {
default = "http://us.download.nvidia.com/tesla/410.104/NVIDIA-Linux-x86_64-410.104.run"
}
variable "hashcat" {
default = "https://hashcat.net/files/hashcat-6.2.5.tar.gz"
}
variable "ami" {
default = "ami-0015a39e4b7c0966f"
}
variable "itype" {
default = "p3.2xlarge"
}
variable "identity" {
default = "user"
}
variable "whitelistip" {
default = "0.0.0.0/32"
}
variable "sshkeyfile" {
default = "/home/user/.ssh/user"
}
variable "spotprice" {
default = null
}
variable "cmdp1" {
default = "nohup sudo screen -dmS hashcat bash -c 'sudo /opt/hashcat-5.1.0/hashcat -a 0 -m"
}
variable "cmdp2" {
default = "/opt/hashes.txt /words/rockyou.txt /words/fav_wordlist.lst /words/crackstation.txt -r /words/OneRuleToRuleThemAll.rule -o 00cracked.txt; exec bash' &"
}
variable "hashmode" {
type = number
default = "1000"
}