Skip to main content

AWS WAF log analysis report generator

Project description

Introduction

Accomapnist - It's an accompanist on AWS WAF log analysis.

You can analysis AWS WAF log and generate analysis report with only 2 CLI commands.

  • The feature & Report Item
    • Histgram of requests
    • Top 5 of below items
      • Blocked or counted rule group
      • URI path
      • IP address
      • Country code
    • The number of requests on specific URI
    • Comment (written by you if you have any comments))

Note

  • Target WAF

    • AWS WAFv2
      • Logging: CloudWatch Logs
      • Action: BLOCK or COUNT
    • Third Party WAF
      • Logging: CloudWatch Logs
      • Action: BLOCK or COUNT
  • Requirement of Client Environment

    • IAM Role/User: including permissions to execute as follows
      • (1) start_query of Logs Insights
      • (2) get_query_result of Logs Insights
      • The example role is noted the last

Install

pip install accompanist

Usage

  1. Create configuration file (JSON format) including 3 elements below

(e.g.) config.json

{
  "log_group": "aws-waf-logs-foo-bar",
  "target_uri": [
    "/foo",
    "/bar"
  ],
  "comment": [
    "- note 1",
    "- note 2",
    "-",
    "-",
    "-"
  ]
}
  1. Get query result

(e.g.) To get BLOCK log for 3 days

accompanist listen --action BLOCK --days 3
  1. Generate report (PDF format)
accompanist play

Uninstall

pip uninstall accompanist

Index

IAM Role with minimum permissions

{
    "Version": "2012-10-17",
    "Statement": [
        {
            "Sid": "CWLI",
            "Effect": "Allow",
            "Action": [
                "logs:StartQuery",
                "logs:GetQueryResults"
            ],
            "Resource": "*"
        }
    ]
}

In the "Resource", you should consider to squeeze only needed ARNs as well.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

accompanist-1.0.4-py3-none-any.whl (37.1 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page