You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"description": "Restrict quarantined users traffic to corporate policy remediation domains, so that quarantined users can obtain help and/or remediate their security posture",
90
+
"description": "Restrict access for users included in an identity provider (IdP) user group for risky users",
91
91
"precedence": 10,
92
92
"enabled": false,
93
93
"action": "block",
94
94
"filters": [
95
95
"dns"
96
96
],
97
97
"traffic": "not(any(dns.domains[*] in $<ALLOWED_REMEDIATION_DOMAINS_LIST_UUID>)) or not(any(dns.domains[*] in $<ALLOWED_REMEDIATION_DOMAINS_LIST_UUID>))",
98
-
"identity": "any(identity.groups.name[*] in {\"Quarantined Users\"})",
99
-
"rule_settings": {
100
-
"block_page_enabled": true,
101
-
"notification_settings": {
102
-
"enabled": true
103
-
}
104
-
}'
98
+
"identity": "any(identity.groups.name[*] in {\"Quarantined Users\"})"
description = "Restrict quarantined users traffic to corporate policy remediation domains, so that quarantined users can obtain help and/or remediate their security posture"
110
+
description = "Restrict access for users included in an identity provider (IdP) user group for risky users"
116
111
precedence = 10
117
112
enabled = false
118
113
action = "block"
119
114
filters = ["dns"]
120
115
traffic = "not(any(dns.domains[*] in ${"$"}${cloudflare_zero_trust_list.allowed_remediation_domains.id})) or not(any(dns.domains[*] in ${"$"}${cloudflare_zero_trust_list.allowed_remediation_domains.id}))"
121
116
identity = "any(identity.groups.name[*] in {\"Quarantined Users\"})"
122
-
rule_settings {
123
-
block_page_enabled = true
124
-
notification_settings {
125
-
enabled = true
126
-
}
127
-
}
128
117
}
129
118
```
130
119
@@ -179,9 +168,9 @@ Block websites hosted in countries categorized as high risk. The designation of
"traffic": "any(dns.domains[*] matches \".*okta.*|.*cloudflare.*|.*mfa.*|.sso.*\") and not(any(dns.domains[*] in $<Known Phishing Domains List UUID>))",
317
-
"rule_settings": {
318
-
"block_page_enabled": true,
319
-
"block_reason": "This domain was blocked due to being classified as a security risk to the organization"
320
-
}
321
-
322
-
}'
289
+
"traffic": "any(dns.domains[*] matches \".*okta.*|.*cloudflare.*|.*mfa.*|.sso.*\") and not(any(dns.domains[*] in $<KNOWN_DOMAINS_LIST_UUID>))"
traffic = "any(dns.domains[*] matches \".*okta.*|.*cloudflare.*|.*mfa.*|.sso.*\") and not(any(dns.domains[*] in ${"$"}${cloudflare_zero_trust_list.known_phishing_domains_list.id}))"
339
-
rule_settings {
340
-
block_page_enabled = true
341
-
block_page_reason = "This domain was blocked due to being classified as a security risk to the organization"
342
-
}
343
307
}
344
308
```
345
309
@@ -366,9 +330,9 @@ Block specific IP addresses that are malicious or pose a threat to your organiza
traffic = "any(dns.domains[*] in ${"$"}${cloudflare_zero_trust_list.domain_blocklist.id}) and dns.fqdn in ${"$"}${cloudflare_zero_trust_list.host_blocklist.id} and dns.fqdn matches \".*example\\.com\""
468
-
rule_settings = {
469
-
block_page_enabled = true
470
-
block_reason = "This domain was blocked due to being classified as a security risk to the organization"
0 commit comments