Skip to content

Commit 3fc6a0a

Browse files
authored
feature(rules/google): add rule Firewall Rule Deleted (#2183)
1 parent c160fc7 commit 3fc6a0a

1 file changed

Lines changed: 30 additions & 0 deletions

File tree

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# Rule version v1.0.0
2+
3+
dataTypes:
4+
- google
5+
name: GCP Firewall Rule Deleted
6+
impact:
7+
confidentiality: 2
8+
integrity: 2
9+
availability: 3
10+
category: Impact
11+
technique: "T1562 - Impair Defenses"
12+
adversary: origin
13+
references:
14+
- https://cloud.google.com/firewall/docs/rules/create-manage#deleting_a_firewall_rule
15+
- https://cloud.google.com/logging/docs/audit/cal-categories#compute_engine
16+
- https://attack.mitre.org/techniques/T1562/
17+
description: |
18+
Detects deletion of a GCP VPC firewall rule. Attackers may delete security rules (such as egress filters or blocking rules) to facilitate data exfiltration or lateral movement. Unexpected firewall deletions should be investigated promptly.
19+
20+
Next Steps:
21+
1. Verify if the deletion was part of an authorized change window
22+
2. Identify the deleted firewall rule's purpose (security blocking vs routine rule)
23+
3. Check if the user has a legitimate reason for the change
24+
4. Re-create the rule if it was a security control
25+
5. Review other compute firewall changes in the same time window
26+
6. Check if the user's account shows signs of compromise
27+
where: |
28+
equals("log.protoPayloadServiceName", "compute.googleapis.com") &&
29+
equals("log.protoPayloadMethodName", "v1.compute.firewalls.delete") &&
30+
exists("origin.user")

0 commit comments

Comments
 (0)