Question 467 of 504
Cloud Application SecuritymediumMultiple ChoiceObjective-mapped

Quick Answer

The answer is that the primary security concern is the policy allowing delete access from a trusted IP range without requiring MFA. This is a critical flaw because while IP-based restrictions can limit the source of requests, they do not authenticate the user; an attacker who compromises a machine within that trusted range can permanently delete objects without any secondary authentication, bypassing the principle of least privilege. On the Certified Cloud Security Professional CCSP exam, this scenario tests your understanding of defense in depth, specifically how a single-factor control like an IP whitelist is insufficient for destructive actions like s3:DeleteObject. A common trap is assuming a trusted IP range alone provides adequate security, but the exam emphasizes that sensitive operations must be gated by additional controls such as MFA or versioning. Memory tip: think of the mnemonic “IP is not ID” — an IP address identifies a network location, not a person, so always pair delete permissions with a secondary authentication factor.

CCSP Cloud Application Security Practice Question

This CCSP practice question tests your understanding of cloud application security. Match the stated requirement to the specific cloud service, access model, or configuration option — many options are valid in isolation but not for this scenario. After answering, compare your reasoning against the explanation and wrong-answer breakdown below. Once you have made your selection, read the full explanation to reinforce the concept and understand why each distractor is designed to mislead on exam day.

Exhibit

Refer to the exhibit.

```
{
  "Version": "2012-10-17",
  "Statement": [
    {
      "Effect": "Allow",
      "Action": [
        "s3:GetObject",
        "s3:PutObject",
        "s3:DeleteObject"
      ],
      "Resource": "arn:aws:s3:::example-bucket/*",
      "Condition": {
        "IpAddress": {
          "aws:SourceIp": "203.0.113.0/24"
        }
      }
    }
  ]
}
```

Refer to the exhibit. A security administrator is reviewing an S3 bucket policy. What is the primary security concern with this policy?

Clue words in this question

Noticing these words before you look at the options changes how you read each choice.

  • Clue: "primary"

    Why it matters: Asks for the main purpose or function, not a secondary benefit. Eliminate answers that describe side-effects or partial functions.

Question 1mediummultiple choice
Full question →

Exhibit

Refer to the exhibit.

```
{
  "Version": "2012-10-17",
  "Statement": [
    {
      "Effect": "Allow",
      "Action": [
        "s3:GetObject",
        "s3:PutObject",
        "s3:DeleteObject"
      ],
      "Resource": "arn:aws:s3:::example-bucket/*",
      "Condition": {
        "IpAddress": {
          "aws:SourceIp": "203.0.113.0/24"
        }
      }
    }
  ]
}
```

Answer choices

Why each option matters

Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.

Correct answer & explanation

The policy allows delete access from a trusted IP range without additional controls

Option A is correct because the policy grants s3:DeleteObject permission to a trusted IP range without requiring additional controls like MFA or versioning safeguards. This means an attacker who compromises a machine within that IP range can permanently delete objects without any secondary authentication, leading to potential data loss. The lack of a condition such as 'aws:MultiFactorAuthPresent': true or a Deny for delete operations without MFA is the primary security concern.

Key principle: Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.

Answer analysis

Option-by-option breakdown

For each option: why learners choose it and why it is or isn't the right answer here.

  • The policy allows delete access from a trusted IP range without additional controls

    Why this is correct

    Delete access should be restricted further or require MFA.

    Clue confirmation

    The clue word "primary" in the question point toward this answer.

    Related concept

    Read the scenario before looking for a memorised answer.

  • The policy does not enforce server-side encryption

    Why it's wrong here

    Encryption is not specified in this policy.

  • The bucket is publicly accessible from any IP

    Why it's wrong here

    Access is restricted to a specific IP range.

  • The policy does not require MFA for delete operations

    Why it's wrong here

    MFA delete is a separate bucket setting, not part of this policy.

Common exam traps

Common exam trap: answer the scenario, not the keyword

ISC2 often tests the distinction between 'publicly accessible' and 'accessible from a trusted IP range'—candidates may mistakenly think any IP-based restriction is sufficient, overlooking that delete operations without MFA or versioning are still a critical risk.

Detailed technical explanation

How to think about this question

Under the hood, S3 bucket policies are evaluated using AWS IAM policy language, where explicit Deny overrides Allow. Without a Deny for delete operations lacking MFA, an Allow statement for a trusted IP range effectively grants full delete capability to any authenticated principal within that range. In a real-world scenario, if an attacker gains access to a corporate laptop on the trusted network, they can issue a DELETE request via the AWS CLI or SDK, bypassing any MFA requirement that might be enforced at the user level but not at the policy level.

KKey Concepts to Remember

  • Read the scenario before looking for a memorised answer.
  • Find the constraint that changes the correct option.
  • Eliminate answers that are true in general but not in this case.

TExam Day Tips

  • Watch for words such as best, first, most likely and least administrative effort.
  • Review why wrong options are wrong, not only why the correct option is correct.

Key takeaway

Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.

Real-world example

How this comes up in practice

A developer is choosing between AES-256 (symmetric) and RSA-2048 (asymmetric) for encrypting a large file that will be sent to a partner. Symmetric encryption is fast but requires key exchange; asymmetric is slower but solves the key distribution problem. A hybrid approach — encrypt the file with AES, encrypt the AES key with RSA — is standard. Questions like this test whether you understand when each approach applies.

What to study next

Got this wrong? Here's your next step.

Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.

Related practice questions

Related CCSP practice-question pages

Use these pages to review the topic behind this question. This is how one missed question becomes focused revision.

Practice this exam

Start a free CCSP practice session

Short sessions build daily habit. Longer sessions build exam-day stamina. Try a timed session to simulate real conditions.

FAQ

Questions learners often ask

What does this CCSP question test?

Cloud Application Security — This question tests Cloud Application Security — Read the scenario before looking for a memorised answer..

What is the correct answer to this question?

The correct answer is: The policy allows delete access from a trusted IP range without additional controls — Option A is correct because the policy grants s3:DeleteObject permission to a trusted IP range without requiring additional controls like MFA or versioning safeguards. This means an attacker who compromises a machine within that IP range can permanently delete objects without any secondary authentication, leading to potential data loss. The lack of a condition such as 'aws:MultiFactorAuthPresent': true or a Deny for delete operations without MFA is the primary security concern.

What should I do if I get this CCSP question wrong?

Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.

Are there clue words in this question I should notice?

Yes — watch for: "primary". Asks for the main purpose or function, not a secondary benefit. Eliminate answers that describe side-effects or partial functions.

What is the key concept behind this question?

Read the scenario before looking for a memorised answer.

About these practice questions

Courseiva creates original exam-style practice questions with explanations and wrong-answer analysis. It does not publish real exam questions, exam dumps, or protected exam content. Learn why practice questions differ from exam dumps →

How Courseiva writes practice questions · Editorial policy

Same concept, more angles

1 more ways this is tested on CCSP

These questions test the same concept from different angles. Work through them to make sure you can recognise it however the exam phrases it.

Variation 1. Refer to the exhibit. A security analyst reviews the S3 bucket policy shown. Which security issue should be flagged?

hard
  • A.The policy restricts read access to a specific role, which is too permissive
  • B.The policy does not enable server-side encryption
  • C.The policy allows unauthenticated write access to the bucket
  • D.The policy contains a syntax error in the JSON

Why C: Option C is correct because the S3 bucket policy contains a Principal element set to "*" with an Effect of "Allow" on the s3:PutObject action, which grants unauthenticated write access to the bucket. This means anyone on the internet can upload objects without any authentication, leading to potential data corruption, storage cost abuse, or malware hosting. The policy does not include any condition (e.g., aws:SourceIp or aws:SecureTransport) to restrict the write operation, making it a critical security misconfiguration.

Keep practising

More CCSP practice questions

Last reviewed: Jun 30, 2026

Question Discussion

Share a tip, memory trick, or ask about the reasoning behind this question. Do not post real exam questions, leaked content, braindumps, or copyrighted exam material. Comments are moderated and may be removed without notice.

Loading comments…

Sign in to join the discussion.

This CCSP practice question is part of Courseiva's free ISC2 certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the CCSP exam.