-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathalerts.tf
65 lines (60 loc) · 1.74 KB
/
alerts.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
resource "sigsci_site_alert" "XSS" {
site_short_name = var.sigsci_site
tag_name = "XSS"
long_name = "XSS Threshold"
interval = 1
threshold = 10
enabled = true
action = "flagged"
skip_notifications = true
}
resource "sigsci_site_alert" "SQLI" {
site_short_name = var.sigsci_site
tag_name = "SQLI"
long_name = "SQLI Threshold"
interval = 1
threshold = 10
enabled = true
action = "flagged"
skip_notifications = true
}
resource "sigsci_site_alert" "CMDEXE" {
site_short_name = var.sigsci_site
tag_name = "CMDEXE"
long_name = "CMD Threshold"
interval = 1
threshold = 10
enabled = true
action = "flagged"
skip_notifications = true
}
resource "sigsci_site_alert" "TRAVERSAL" {
site_short_name = var.sigsci_site
tag_name = "TRAVERSAL"
long_name = "Traversal Threshold"
interval = 1
threshold = 10
enabled = true
action = "flagged"
skip_notifications = true
}
resource "sigsci_site_alert" "BACKDOOR" {
site_short_name = var.sigsci_site
tag_name = "BACKDOOR"
long_name = "Backdoor Threshold"
interval = 1
threshold = 10
enabled = true
action = "flagged"
skip_notifications = true
}
resource "sigsci_site_alert" "USERAGENT" {
site_short_name = var.sigsci_site
tag_name = "USERAGENT"
long_name = "Attack Tooling Threshold"
interval = 1
threshold = 10
enabled = true
action = "flagged"
skip_notifications = true
}