- はじめに
- エージェント
- インテグレーション
- Watchdog
- イベント
- ダッシュボード
- モバイルアプリケーション
- インフラストラクチャー
- サーバーレス
- メトリクス
- ノートブック
- アラート設定
- APM & Continuous Profiler
- CI Visibility
- RUM & セッションリプレイ
- データベース モニタリング
- ログ管理
- セキュリティプラットフォーム
- Synthetic モニタリング
- ネットワークモニタリング
- 開発者
- API
- アカウントの管理
- データセキュリティ
- ヘルプ
Classification:
compliance
Secure your AWS S3 bucket content as it is publicly accessible.
Granting READ
access to everyone allows unauthorized users to list objects within a bucket. Malicious users can use information exploited during this process to access compromised objects, which can lead to unfettered access to your data.
Follow the Blocking public access to your Amazon S3 storage docs to learn how to manage access control lists for existing S3 buckets.
Note: By default, new buckets, access points, and objects don’t allow public access.
Run put-bucket-acl
with your S3 bucket name and set the ACL of the bucket to private
.
put-bucket-acl.sh
aws s3api put-bucket-acl
--bucket webapp-data-repository
--acl private