Impair Defenses: Disable or Modify Cloud Firewall

Adversaries may disable or modify a firewall within a cloud environment to bypass controls that limit access to cloud resources. Cloud firewalls are separate from system firewalls that are described in Disable or Modify System Firewall.

Cloud environments typically utilize restrictive security groups and firewall rules that only allow network activity from trusted IP addresses via expected ports and protocols. An adversary with appropriate permissions may introduce new firewall rules or policies to allow access into a victim cloud environment and/or move laterally from the cloud control plane to the data plane. For example, an adversary may use a script or utility that creates new ingress rules in existing security groups (or creates new security groups entirely) to allow any TCP/IP connectivity to a cloud-hosted instance.[1] They may also remove networking limitations to support traffic associated with malicious activity (such as cryptomining).[2][1]

Modifying or disabling a cloud firewall may enable adversary C2 communications, lateral movement, and/or data exfiltration that would otherwise not be allowed. It may also be used to open up resources for Brute Force or Endpoint Denial of Service.

ID: T1562.007
Sub-technique of:  T1562
Tactic: Defense Evasion
Platforms: IaaS
Contributors: Arun Seelagan, CISA; Expel
Version: 1.3
Created: 24 June 2020
Last Modified: 16 October 2024

Procedure Examples

ID Name Description
S1091 Pacu

Pacu can allowlist IP addresses in AWS GuardDuty.[3]

Mitigations

ID Mitigation Description
M1047 Audit

Routinely check account role permissions to ensure only expected users and roles have permission to modify cloud firewalls.

M1018 User Account Management

Ensure least privilege principles are applied to Identity and Access Management (IAM) security policies.[2]

Detection

ID Data Source Data Component Detects
DS0018 Firewall Firewall Disable

Monitor for changes in the status of the cloud firewall.

Firewall Rule Modification

Monitor cloud logs for modification or creation of new security groups or firewall rules. For example, in AWS environments, monitor for the AuthorizeSecurityGroupsIngress API call in CloudTrail and use AWS Config to monitor changes the configuration of a Virtual Private Cloud (VPC) Security Group.[4]

Analytic 1 - Operations performed by unexpected initiators, unusual rule names, frequent modifications

index="azure_activity_logs" OperationName="Create or Update Security Rule"| stats count by InitiatorName, Resource| where Resource LIKE "Microsoft.Network/networkSecurityGroups/securityRules" AND (Status!="Succeeded" OR InitiatorName!="expected_initiator")| sort by Time

References