Ban a user after being blocked by WAF rule

0

Hi, Is there a way to add an IP to an ipset when this ip calls exceed the rate limit fixed by a WAF rule. I'm logging the WAF with CloudWatch, can i trigger an event in order to invoke a lambda updating my ipset ?

Is there a good practice doing that or equivalent ?

Thx

  • If there are any further questions feel free to ask. If this answer below is satisfactory to you please mark it as accepted. Thanks!

LeJ
已提问 9 个月前388 查看次数
3 回答
2

Slightly different use case but similar idea of using Lambda to automatically update AWS WAF IP sets with IP ranges. https://aws.amazon.com/blogs/security/automatically-update-aws-waf-ip-sets-with-aws-ip-ranges/

AWS
已回答 9 个月前
profile pictureAWS
专家
已审核 9 个月前
1
已接受的回答

Yes, you can add an IP to an IPSet when it exceeds the rate limit fixed by a WAF rule. You can do this by creating an Eventbridge event rule that triggers a Lambda function. The Lambda function can then add the IP address to the IPSet.

Create an Eventbridge event rule that is triggered by the WAF logs. The event rule should have the following conditions:

The source is the WAF log group. The event type is "AWS WAF Rule Matched". The rule name is the name of the WAF rule that you want to use to trigger the event.

Create a Lambda function that adds the IP address to the IPSet. The Lambda function should have the following permissions:

The ability to call the AWS WAF API. The ability to create and update IPSets. In the Lambda function, add the following code:

def handler(event, context):
    # Get the IP address from the event.
    ip_address = event["detail"]["request"]["clientIp"]

    # Add the IP address to the IPSet.
    client = boto3.client("waf-v2")
    client.update_ip_set(
        Name=IPSetName,
        Addresses=[ip_address],
    )

Once you have completed these steps, the Lambda function will be triggered whenever an IP address exceeds the rate limit fixed by the WAF rule. The Lambda function will then add the IP address to the IPSet.

profile pictureAWS
已回答 9 个月前
profile picture
专家
已审核 25 天前
  • Thx for your detailed answer !

1

Hello.
CloudWatch Logs subscription filters can be used to run Lambda when specific logs are output.
I believe this could be automated by using this feature to create a Lambda that registers with IP Sets when an IP block occurs in the WAF.
https://docs.aws.amazon.com/AmazonCloudWatch/latest/logs/SubscriptionFilters.html#LambdaFunctionExample

profile picture
专家
已回答 9 个月前

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则