Question

Difficulty: MediumSecurity Monitoring, Logging, and Compliance Auditing

A company requires a real-time security monitoring and alerting solution to detect when any IAM user logs in to the AWS Management Console without using Multi-Factor Authentication (MFA). A SysOps Administrator must configure a solution that sends an email notification to the security team immediately upon detection.

Which two actions must the SysOps Administrator perform to meet these requirements?

  1. Create an Amazon EventBridge rule in the us-east-1 Region with an event pattern that matches the source aws.signin, the event name ConsoleLogin, and additionalEventData.MFAUsed set to No.Answer
  2. Configure the Amazon EventBridge rule to target an Amazon SNS topic that is subscribed to by the security team.Answer
  3. C
    Create the Amazon EventBridge rule in the company's primary operational Region to capture regional ConsoleLogin events.
  4. D
    Enable CloudWatch detailed monitoring for the IAM service to increase metric granularity and capture authentication events.
  5. E
    Configure an AWS Config custom rule to monitor ConsoleLogin API calls and set the rule's remediation action to publish directly to the SNS topic.

Answer

Creating an Amazon EventBridge rule in the us-east-1 Region that matches the ConsoleLogin event with MFAUsed set to No, and configuring the EventBridge rule to target an Amazon SNS topic subscribed to by the security team.
Console login is a global AWS service event, which is always routed to the default EventBridge event bus in the us-east-1 Region. To capture sign-in events without MFA, the EventBridge rule must be created in us-east-1 with a pattern matching ConsoleLogin where MFAUsed is set to No. The rule must target an Amazon SNS topic to immediately notify the security team.

Step-by-Step Solution

1
Identify the regional scope for AWS console sign-in events.
Console sign-in events are global and are processed in the us-east-1 Region.
Global service events logged by CloudTrail are sent to the default EventBridge event bus in us-east-1, meaning EventBridge rules for these events must reside there.
2
Create the EventBridge pattern to capture console logins without MFA.
Configure a rule matching the source 'aws.signin', event name 'ConsoleLogin', and 'additionalEventData.MFAUsed' set to 'No'.
This specific pattern filters the event stream to identify only insecure console logins.
3
Route the matching events to the security team.
Target the EventBridge rule to an Amazon SNS topic.
This allows immediate delivery of alerts to the email addresses subscribed to the SNS topic.

Key Concept

Monitoring global authentication events using Amazon EventBridge in the us-east-1 Region and routing them to Amazon SNS for real-time alerting.
Rate this question