agent: |
pU2PJxwpl4iOZMx5jGzRAudit of AWS S3 Buckets for Public Write Access
Audit of AWS S3 Buckets for Public Write Access
There was a problem that the LLM was not able to address. Please rephrase your prompt and try again.
The workflow involves identifying AWS S3 buckets that do not have public write access restrictions in place. This process includes listing each bucket along with its respective region. The goal is to ensure that all S3 buckets are secure and not vulnerable to unauthorized public write access. By auditing these settings, the workflow helps maintain data integrity and security within the AWS environment.
inputs
outputs
- 1p3Q6edgIo4On1I1XhSJyList the number of AWS S3 buckets which do not have public write access prohibited, including their region.
1
There was a problem that the LLM was not able to address. Please rephrase your prompt and try again.This script lists AWS S3 buckets with public write access, grouped by region.
inputsoutputsimport boto3 from botocore.exceptions import ClientError aws_access_key_id = getEnvVar('AWS_ACCESS_KEY_ID') aws_secret_access_key = getEnvVar('AWS_SECRET_ACCESS_KEY') # Initialize S3 client s3_client = boto3.client('s3', aws_access_key_id=aws_access_key_id, aws_secret_access_key=aws_secret_access_key) # Get the list of all buckets buckets = s3_client.list_buckets()['Buckets'] buckets_with_public_write_access = {} # Check each bucket's ACL for bucket in buckets: bucket_name = bucket['Name'] try: # Get bucket location location = s3_client.get_bucket_location(Bucket=bucket_name)['LocationConstraint'] if location is None: location = 'us-east-1' # Get bucket ACL acl = s3_client.get_bucket_acl(Bucket=bucket_name) for grant in acl['Grants']: grantee = grant['Grantee'] permission = grant['Permission'] if grantee.get('URI') == 'http://acs.amazonaws.com/groups/global/AllUsers' and permission == 'WRITE': if location not in buckets_with_public_write_access: buckets_with_public_write_access[location] = [] buckets_with_public_write_access[location].append(bucket_name) break except ClientError as e: print(f"Error checking bucket {bucket_name}: {e}") print("Buckets with public write access:") print(json.dumps(buckets_with_public_write_access, indent=4, default=str))copied1