Skip to content

Feed Guard Duty with MVISION Insights curated Threat Intelligence Feed

License

Notifications You must be signed in to change notification settings

arniecommits/Insights-AWS-GD

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

MVISION Insights & AWS GuardDuty Integrations

License

Threat Intelligence is a critical component for improving fidelity of alerts and improving the overall mean time to respond. AWS guard duty provides extensive managed threat hunting capabilities for their cloud customers. Guard Duty comes with built-in threat detection playbooks and telemetry correlation. Guard Duty can detect network , IAM and workload behaviour anomalies. Threat intelligence plays a vital role in the preparation phase of a Cloud incident. Threat intel helps Guarduty to automatically raise the severity of the findings when there is threat intel hit and also bring additional context. The goal of the solution was to use MVISION Insights campaign data to enrich the Guard Duty findings.

Integration Architecture

image

Install Pre-Reqs:

To use the provided Lambda script, you need to build the Lambda python layer with the dependencies provided in the requirements.txt file.

Minimum Permissions the Lambda Execution Role attached to the Lambda Funtion must have at a minimum the following policy bellow

{
    "Version": "2012-10-17",
    "Statement": [
        {
            "Sid": "VisualEditor0",
            "Effect": "Allow",
            "Action": [
                "s3:PutObject",
                "s3:GetObject",
                "s3:ListBucket",
                "s3:GetObjectVersion"
            ],
            "Resource": [
                "arn:aws:s3:::*/*",
                "arn:aws:s3:::<replace with your S3 Bucket>"
            ]
        },
        {
            "Sid": "VisualEditor1",
            "Effect": "Allow",
            "Action": [
                "guardduty:GetFindings",
                "guardduty:ListThreatIntelSets",
                "secretsmanager:DescribeSecret",
                "guardduty:GetThreatIntelSet",
                "guardduty:DeleteIPSet",
                "guardduty:CreateDetector",
                "iam:PutRolePolicy",
                "guardduty:UpdateMemberDetectors",
                "guardduty:GetDetector",
                "secretsmanager:ListSecretVersionIds",
                "secretsmanager:GetRandomPassword",
                "logs:CreateLogStream",
                "secretsmanager:GetSecretValue",
                "ec2:DescribeNetworkInterfaces",
                "guardduty:DeleteDetector",
                "guardduty:CreatePublishingDestination",
                "guardduty:GetFilter",
                "guardduty:ListIPSets",
                "guardduty:ListDetectors",
                "ec2:DeleteNetworkInterface",
                "guardduty:UpdateThreatIntelSet",
                "guardduty:CreateIPSet",
                "guardduty:UpdateDetector",
                "guardduty:GetIPSet",
                "guardduty:CreateThreatIntelSet",
                "guardduty:UpdateFilter",
                "logs:CreateLogGroup",
                "logs:PutLogEvents",
                "ec2:CreateNetworkInterface",
                "guardduty:CreateFilter",
                "guardduty:UpdateIPSet",
                "guardduty:CreateMembers",
                "guardduty:UpdatePublishingDestination",
                "guardduty:DeleteThreatIntelSet",
                "guardduty:ListFilters"
            ],
            "Resource": "*"
        }
    ]
}

Other Component Configuration:

AWS Secret Manager : Use to store the MVISION API Credentials securely.

{
  "mv_api_key": "<your api key>",
  "mv_client_id": "<client id>",
  "mv_secret": "<secret>"
}

Configure Lambda Environment Variables as follows :

image

Configure event bridge scheduled event as a trigger for Lambda:

image

Note: The event schedule rate should match the value for ins_dur environment variable in the lambda function

Testing

You can generate test events in guardDuty by taking a sample IP/ Domain from the Insights feed and run a query to that malicious IP from an EC2 Instance and it should generate some findings in the GuardDuty

About

Feed Guard Duty with MVISION Insights curated Threat Intelligence Feed

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages