Detection: Access Context Manager Access Level Deleted
Overview
Detect when an Access Context Manager level was deleted. Access levels define criteria for allowing access to resources, such as device trust or user location. Monitoring these deletions helps maintain strict security controls and prevents unauthorized access.
References:
Usage
Run the detection in your terminal:
powerpipe detection run gcp_audit_log_detections.detection.access_context_manager_access_level_deleted
Snapshot and share results via Turbot Pipes:
powerpipe loginpowerpipe detection run gcp_audit_log_detections.detection.access_context_manager_access_level_deleted --share
SQL
This detection uses a named query:
select tp_timestamp as timestamp,method_name as operation,resource_name as resource,authentication_info.principal_email as actor,tp_source_ip as source_ip,tp_index as project,tp_id as source_id,-- Create new aliases to preserve original row data*
from gcp_audit_logwhere method_name ilike 'accesscontextmanager.accesspolicies.accesslevels.delete' and severity != 'Error'-- TODO: Do we need to check operation?-- and (operation_src is null or operation_src.last = true)
order by timestamp desc;