아마존 AWS S3 서비스 보안이 이리 허술할 수가 있는지

35.***.145.205

Boto3 documentation 에서 identity access management잘 읽어 보세요.

님의 AWS계정에 권한이 있기 때문에 s3에 access가 가능한것입니다.

아래로 확인해 보세요 님의 권한을..

# Create an S3 client
s3 = boto3.client(‘s3′)

# Call to S3 to retrieve the policy for the given bucket
result = s3.get_bucket_acl(Bucket=’my-bucket’)
print(result)