Techniques
Sample rules
AWS Bedrock Agent or Action Group Manipulation
- source: elastic
- technicques:
- T1505
Description
Detects modification of deployed Amazon Bedrock agents and their action groups, collaborators, or aliases via the Bedrock Agent control plane. Adversaries with access to an AWS account can tamper with an existing, trusted agent by altering its instructions (UpdateAgent), adding or changing action groups that wire the agent to Lambda functions or APIs (CreateAgentActionGroup, UpdateAgentActionGroup), attaching or modifying collaborators (AssociateAgentCollaborator, UpdateAgentCollaborator), or repointing an alias to a tampered version (CreateAgentAlias, UpdateAgentAlias). A PrepareAgent call is required to make a tampered configuration live. By implanting malicious behavior into an agent that legitimate users continue to invoke, an attacker can maintain durable access through a trusted component. Creation of brand-new agents (CreateAgent) is intentionally excluded as lower-signal activity.
Detection logic
data_stream.dataset: "aws.cloudtrail" and
event.provider: "bedrock.amazonaws.com" and
event.action: (
"UpdateAgent" or
"CreateAgentActionGroup" or
"UpdateAgentActionGroup" or
"AssociateAgentCollaborator" or
"UpdateAgentCollaborator" or
"CreateAgentAlias" or
"UpdateAgentAlias" or
"PrepareAgent"
) and
event.outcome: "success"