Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Save intermediate OCSF files to an S3 bucket #218

Merged
merged 1 commit into from
Apr 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions integrations/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,6 @@ After 5 minutes, the first batch of data will show up in http://localhost:9444/u
You'll need to invoke the Lambda function manually, selecting the log file to process.

```bash
export AUX_BUCKET=wazuh-indexer-aux-bucket

bash amazon-security-lake/src/invoke-lambda.sh <file>
```

Expand Down
2 changes: 1 addition & 1 deletion integrations/amazon-security-lake/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ ENV LOGSTASH_KEYSTORE_PASS="SecretPassword"
# Add the application source code.
COPY --chown=logstash:logstash ./src /home/app
# Add execution persmissions.
RUN chmod a+x /home/app/run.py
RUN chmod a+x /home/app/lambda_function.py
# Copy the application's dependencies.
COPY --from=builder /env /env

Expand Down
6 changes: 3 additions & 3 deletions integrations/amazon-security-lake/invoke-lambda.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

export AUX_BUCKET=wazuh-indexer-aux-bucket
export S3_BUCKET_RAW=wazuh-aws-security-lake-raw

curl -X POST "http://localhost:9000/2015-03-31/functions/function/invocations" -d '{
"Records": [
Expand All @@ -24,11 +24,11 @@ curl -X POST "http://localhost:9000/2015-03-31/functions/function/invocations" -
"s3SchemaVersion": "1.0",
"configurationId": "testConfigRule",
"bucket": {
"name": "'"${AUX_BUCKET}"'",
"name": "'"${S3_BUCKET_RAW}"'",
"ownerIdentity": {
"principalId":"A3NL1KOZZKExample"
},
"arn": "'"arn:aws:s3:::${AUX_BUCKET}"'"
"arn": "'"arn:aws:s3:::${S3_BUCKET_RAW}"'"
},
"object": {
"key": "'"${1}"'",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ output {
secret_access_key => "${AWS_SECRET_ACCESS_KEY}"
region => "${AWS_REGION}"
endpoint => "${AWS_ENDPOINT}"
bucket => "${AUX_BUCKET}"
bucket => "${S3_BUCKET_RAW}"
codec => "json_lines"
retry_count => 0
validate_credentials_on_root_bucket => false
Expand Down
26 changes: 19 additions & 7 deletions integrations/amazon-security-lake/src/lambda_function.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ def check_environment_variables(variables):
return True


def get_full_key(src_location: str, account_id: str, region: str, key: str) -> str:
def get_full_key(src_location: str, account_id: str, region: str, key: str, format: str) -> str:
"""
Constructs a full S3 key path for storing a Parquet file based on event metadata.
Expand All @@ -94,6 +94,7 @@ def get_full_key(src_location: str, account_id: str, region: str, key: str) -> s
account_id (str): AWS account ID associated with the event.
region (str): AWS region where the event occurred.
key (str): Event key containing metadata information.
format (str): File extension.
Returns:
str: Full S3 key path for storing the Parquet file.
Expand All @@ -110,12 +111,12 @@ def get_full_key(src_location: str, account_id: str, region: str, key: str) -> s
filename_parts = key.split('.')
filename = ''.join(filename_parts[2].split('-'))

# Construct the full S3 key path for storing the Parquet file
parquet_key = (
f'ext/{src_location}/region={region}/accountId={account_id}/eventDay={event_day}/{filename}.parquet'
# Construct the full S3 key path for storing the file
key = (
f'ext/{src_location}/region={region}/accountId={account_id}/eventDay={event_day}/{filename}.{format}'
)

return parquet_key
return key


def lambda_handler(event, context):
Expand All @@ -135,6 +136,7 @@ def lambda_handler(event, context):
src_location = os.environ['SOURCE_LOCATION']
account_id = os.environ['ACCOUNT_ID']
region = os.environ['AWS_REGION']
ocsf_bucket = os.environ.get('S3_BUCKET_OCSF')

# Extract bucket and key from S3 event
src_bucket = event['Records'][0]['s3']['bucket']['name']
Expand All @@ -150,12 +152,21 @@ def lambda_handler(event, context):
# Transform events to OCSF format
ocsf_events = wazuh_ocsf_converter.transform_events(raw_events)

# Upload event in OCSF format
ocsf_upload_success = False
if ocsf_bucket is not None:
tmp_filename = '/tmp/tmp.json'
with open(tmp_filename, "w") as fd:
fd.write(json.dumps(ocsf_events))
ocsf_key = get_full_key(src_location, account_id, region, key, 'json')
ocsf_upload_success = upload_to_s3(ocsf_bucket, ocsf_key, tmp_filename)

# Write OCSF events to Parquet file
tmp_filename = '/tmp/tmp.parquet'
write_parquet_file(ocsf_events, tmp_filename)

# Upload Parquet file to destination S3 bucket
parquet_key = get_full_key(src_location, account_id, region, key)
parquet_key = get_full_key(src_location, account_id, region, key, 'parquet')
upload_success = upload_to_s3(dst_bucket, parquet_key, tmp_filename)

# Clean up temporary file
Expand All @@ -164,6 +175,7 @@ def lambda_handler(event, context):
# Prepare response
response = {
'size': len(raw_events),
'upload_success': upload_success
'upload_success': upload_success,
'ocsf_upload_success': ocsf_upload_success
}
return json.dumps(response)
5 changes: 3 additions & 2 deletions integrations/docker/amazon-security-lake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ services:
AWS_ACCESS_KEY_ID: "AKIAIOSFODNN7EXAMPLE"
AWS_SECRET_ACCESS_KEY: "wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY"
AWS_REGION: "us-east-1"
AUX_BUCKET: "indexer-amazon-security-lake-bucket"
S3_BUCKET_RAW: "wazuh-aws-security-lake-raw"
AWS_ENDPOINT: "http://s3.ninja:9000"
ports:
- "5000:5000/tcp"
Expand Down Expand Up @@ -117,7 +117,8 @@ services:
AWS_ACCESS_KEY_ID: "AKIAIOSFODNN7EXAMPLE"
AWS_SECRET_ACCESS_KEY: "wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY"
AWS_REGION: "us-east-1"
AWS_BUCKET: "wazuh-indexer-amazon-security-lake-bucket"
AWS_BUCKET: "wazuh-aws-security-lake-parquet"
S3_BUCKET_OCSF: "wazuh-aws-security-lake-ocsf"
AWS_ENDPOINT: "http://s3.ninja:9000"
SOURCE_LOCATION: "wazuh"
ACCOUNT_ID: "111111111111"
Expand Down