Topic 1 Question 189
A company uses HTTP Live Streaming (HLS) to stream live video content to paying subscribers by using Amazon CloudFront. HLS splits the video content into chunks so that the user can request the right chunk based on different conditions. Because the video events last for several hours, the total video is made up of thousands of chunks.
The origin URL is not disclosed, and every user is forced to access the CloudFront URL. The company has a web application that authenticates the paying users against an internal repository and a CloudFront key pair that is already issued.
What is the simplest and MOST effective way to protect the content?
Develop the application to use the CloudFront key pair to create signed URLs that users will use to access the content.
Develop the application to use the CloudFront key pair to set the signed cookies that users will use to access the content.
Develop the application to issue a security token that Lambda@Edge will receive to authenticate and authorize access to the content.
Keep the CloudFront URL encrypted inside the application, and use AWS KMS to resolve the URL on-the-fly after the user is authenticated.
ユーザの投票
コメント(6)
- 正解だと思う選択肢: B
For HLS content, use signed cookies https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/private-content-choosing-signed-urls-cookies.html
👍 2sendjawemail2025/01/01 The answer is B. "signed cookies"
👍 1Bad_Mat2024/10/21- 正解だと思う選択肢: A
The simplest and most effective way to protect the content is:
A. Develop the application to use the CloudFront key pair to create signed URLs that users will use to access the content.
Using signed URLs ensures that only authenticated users can access the content by including additional information such as an expiration date and time in the URL. This method is straightforward to implement and provides robust security for your streaming content.
👍 1IPLogic2024/12/03
シャッフルモード