exam questions

Exam AWS Certified Security - Specialty All Questions

View all questions & answers for the AWS Certified Security - Specialty exam

Exam AWS Certified Security - Specialty topic 1 question 430 discussion

Exam question from Amazon's AWS Certified Security - Specialty
Question #: 430
Topic #: 1
[All AWS Certified Security - Specialty Questions]

A company that builds document management systems recently performed a security review of its application on AWS. The review showed that uploads of documents through signed URLs into Amazon S3 could occur in the application without encryption in transit. A security engineer must implement a solution that prevents uploads that are not encrypted in transit.

Which solution will meet this requirement?

  • A. Ensure that all client implementations are using HTTPS to upload documents into the application.
  • B. Configure the s3-bucket-ssl-requests-only managed rule in AWS Config.
  • C. Add an S3 bucket policy that denies all S3 actions for condition “aws:secureTransport”: “false”.
  • D. Add an S3 bucket ACL with a grantee of AllUsers, a permission of WRITE, and a condition of secureTransport.
Show Suggested Answer Hide Answer
Suggested Answer: C 🗳️

Comments

Chosen Answer:
This is a voting comment (?). It is better to Upvote an existing comment if you don't have anything to add.
Switch to a voting comment New
AdamWest
Highly Voted 2 years, 6 months ago
Selected Answer: C
C - the following bucket policy complies with the rule. The policy explicitly denies all actions on the bucket and objects when the request meets the condition "aws:SecureTransport": "false": "Effect": "Deny", "Resource": [ "arn:aws:s3:::DOC-EXAMPLE-BUCKET", "arn:aws:s3:::DOC-EXAMPLE-BUCKET/*" ], "Condition": { "Bool": { "aws:SecureTransport": "false" You might want to pick B but do not - B will check for compliancy only not enforcement. C is enforcement.
upvoted 5 times
secdaddy
2 years, 5 months ago
source : https://repost.aws/knowledge-center/s3-bucket-policy-for-config-rule
upvoted 3 times
...
...
tainh
Most Recent 2 years, 6 months ago
Selected Answer: C
C is correct https://aws.amazon.com/blogs/security/how-to-use-bucket-policies-and-apply-defense-in-depth-to-help-secure-your-amazon-s3-data/
upvoted 4 times
...
Isaias
2 years, 6 months ago
Selected Answer: C
C for sure
upvoted 2 times
...
luisfsm_111
2 years, 6 months ago
Selected Answer: C
Agree with C
upvoted 1 times
...
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.

SaveCancel
Loading ...