Skip to content

Instantly share code, notes, and snippets.

@brevityinmotion
Last active March 22, 2022 04:20
Show Gist options
  • Save brevityinmotion/8a3b09a449f86126fb400ed44509f274 to your computer and use it in GitHub Desktop.
Save brevityinmotion/8a3b09a449f86126fb400ed44509f274 to your computer and use it in GitHub Desktop.
Process, enrich, and store Route 53 DNS query logs, enrich with IPInfo, and store in DynamoDB table.
import json, boto3, os, re
import gzip
import base64
import ipinfo
from io import BytesIO
from botocore.exceptions import ClientError
def lambda_handler(event, context):
dynamodbclient = boto3.client('dynamodb')
cw_data = str(event['awslogs']['data'])
cw_logs = gzip.GzipFile(fileobj=BytesIO(base64.b64decode(cw_data, validate=True))).read()
log_events = json.loads(cw_logs)
# Retrieve an AWS Secrets Manager secret
def get_secret(secret_name, region_name):
# Create a Secrets Manager client
session = boto3.session.Session()
client = session.client(
service_name='secretsmanager',
region_name=region_name
)
# In this sample we only handle the specific exceptions for the 'GetSecretValue' API.
# See https://docs.aws.amazon.com/secretsmanager/latest/apireference/API_GetSecretValue.html
# We rethrow the exception by default.
try:
get_secret_value_response = client.get_secret_value(
SecretId=secret_name
)
except ClientError as e:
if e.response['Error']['Code'] == 'DecryptionFailureException':
# Secrets Manager can't decrypt the protected secret text using the provided KMS key.
# Deal with the exception here, and/or rethrow at your discretion.
raise e
elif e.response['Error']['Code'] == 'InternalServiceErrorException':
# An error occurred on the server side.
# Deal with the exception here, and/or rethrow at your discretion.
raise e
elif e.response['Error']['Code'] == 'InvalidParameterException':
# You provided an invalid value for a parameter.
# Deal with the exception here, and/or rethrow at your discretion.
raise e
elif e.response['Error']['Code'] == 'InvalidRequestException':
# You provided a parameter value that is not valid for the current state of the resource.
# Deal with the exception here, and/or rethrow at your discretion.
raise e
elif e.response['Error']['Code'] == 'ResourceNotFoundException':
# We can't find the resource that you asked for.
# Deal with the exception here, and/or rethrow at your discretion.
raise e
else:
# Decrypts secret using the associated KMS CMK.
# Depending on whether the secret is a string or binary, one of these fields will be populated.
if 'SecretString' in get_secret_value_response:
secret = get_secret_value_response['SecretString']
return secret
else:
decoded_binary_secret = base64.b64decode(get_secret_value_response['SecretBinary'])
return json.loads(secret)
def retrieveIPInfo(ip_address):
# Retrieve API key for IPInfo
secretName = "brevity-recon-apis"
regionName = "us-east-1"
secretRetrieved = get_secret(secretName,regionName)
secretjson = json.loads(secretRetrieved)
access_token = secretjson['ipinfo']
handler = ipinfo.getHandler(access_token)
details = handler.getDetails(ip_address)
return details
for log_event in log_events['logEvents']:
queryid = log_event['id']
log_event = log_event['extractedFields']
dns_timestamp = log_event['timestamp']
dns_zoneid = log_event['zoneid']
dns_queryname = log_event['queryname']
dns_querytype = log_event['querytype']
dns_responsecode = log_event['responsecode']
dns_protocol = log_event['protocol']
dns_edgelocation = log_event['edgelocation']
dns_resolverip = log_event['resolverip']
dns_clientsubnet = log_event['clientsubnet']
# Since the DNS query only provides a CIDR range, it converts it to the starting IP address of the range
dns_clientipaddress = dns_clientsubnet.split('/', 1)[0]
response = retrieveIPInfo(dns_clientipaddress)
ipinfo_ip = response.ip
ipinfo_city = response.city
ipinfo_region = response.region
ipinfo_country = response.country
ipinfo_loc = response.loc
ipinfo_org = response.org
ipinfo_postal = response.postal
ipinfo_timezone = response.timezone
ipinfo_country_name = response.country_name
ipinfo_latitude = response.latitude
ipinfo_longitude = response.longitude
dynamoItem = {'queryid':{'S':queryid},'timestamp':{'S':dns_timestamp},'dns_zoneid':{'S':dns_zoneid},'dns_queryname':{'S':dns_queryname},'dns_querytype':{'S':dns_querytype},'dns_responsecode':{'S':dns_responsecode},'dns_protocol':{'S':dns_protocol},'dns_edgelocation':{'S':dns_edgelocation},'dns_resolverip':{'S':dns_resolverip},'dns_clientsubnet':{'S':dns_clientsubnet},'dns_clientipaddress':{'S':dns_clientipaddress},'ipinfo_ip':{'S':ipinfo_ip},'ipinfo_city':{'S':ipinfo_city},'ipinfo_region':{'S':ipinfo_region},'ipinfo_country':{'S':ipinfo_country},'ipinfo_loc':{'S':ipinfo_loc},'ipinfo_org':{'S':ipinfo_org},'ipinfo_postal':{'S':ipinfo_postal},'ipinfo_timezone':{'S':ipinfo_timezone},'ipinfo_country_name':{'S':ipinfo_country_name},'ipinfo_latitude':{'S':ipinfo_latitude},'ipinfo_longitude':{'S':ipinfo_longitude}}
dynamoresponse = dynamodbclient.put_item(TableName='brevity_ipinfo',Item=dynamoItem)
return {
'statusCode': 200,
'body': json.dumps(log_event),
'dbstatus': dynamoresponse
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment