Question 323 of 1,639
Respond to security incidentshardMultiple ChoiceObjective-mapped

Quick Answer

The answer is that the playbook fails because the IP address is being extracted from an incorrect field in the alert, specifically the alertRuleId instead of the alert’s entity. In Microsoft Sentinel, playbooks use the trigger schema to parse alert data, and the IP address must be referenced from the Entities property—typically under the IP entity’s Address field—not from metadata like the rule ID. This tests your understanding of the Sentinel automation schema on the SC-200 exam, where a common trap is confusing alert properties with entity properties; the exam often presents a JSON snippet where the property path is wrong, and you must spot that the action is targeting a non-IP field. Remember the memory tip: “Entities hold the IP, not the rule ID”—always check the property path in the playbook’s trigger action.

SC-200 Respond to security incidents Practice Question

This SC-200 practice question tests your understanding of respond to security incidents. The scenario asks you to isolate a root cause — eliminate options that address a different problem before choosing. 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.
```json
{
  "properties": {
    "displayName": "Block Malicious IP",
    "trigger": {
      "type": "Microsoft.SecurityInsights/alertRule",
      "alertRuleId": "1234"
    },
    "actions": [
      {
        "type": "Microsoft.SecurityInsights/incidentAction",
        "actionType": "BlockIP",
        "properties": {
          "ipAddress": "@{triggerBody()?['properties']?['alertRuleId']}",
          "blockDuration": "P1D"
        }
      }
    ]
  }
}

An analyst creates a playbook in Microsoft Sentinel to automatically block an IP address when an alert fires. However, the playbook fails to block the IP. What is the most likely cause?

Clue words in this question

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

  • Clue: "most likely"

    Why it matters: Probability qualifier — the question wants the most probable cause or outcome, not a guaranteed one. Eliminate low-probability options.

Question 1hardmultiple choice
Read the full Ansible explanation →

Exhibit

Refer to the exhibit.
```json
{
  "properties": {
    "displayName": "Block Malicious IP",
    "trigger": {
      "type": "Microsoft.SecurityInsights/alertRule",
      "alertRuleId": "1234"
    },
    "actions": [
      {
        "type": "Microsoft.SecurityInsights/incidentAction",
        "actionType": "BlockIP",
        "properties": {
          "ipAddress": "@{triggerBody()?['properties']?['alertRuleId']}",
          "blockDuration": "P1D"
        }
      }
    ]
  }
}

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 IP address is being extracted from an incorrect field in the alert

The playbook references an incorrect field. The IP address should come from the alert's entity, not the alertRuleId. The trigger type is correct but the property path is wrong. Also, the action type should be Wait, the exhibit shows 'actionType': 'BlockIP' which is not a standard action type. The correct action type might be 'Run playbook' or a connector. However, the most obvious error is the property path: 'alertRuleId' is not an IP address. Also, 'BlockIP' action type does not exist; actual block action is performed via a connector like Azure Firewall or Defender. But given the options, the incorrect property path is the key issue.

Key principle: NAT direction and interface roles matter as much as the IP address mapping. Inside/outside designation controls which traffic is translated.

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 IP address is being extracted from an incorrect field in the alert

    Why this is correct

    The playbook uses 'alertRuleId' which is not an IP; should use entity IP field.

    Clue confirmation

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

    Related concept

    Static NAT maps one inside address to one outside address.

  • The block duration is set to one day, which is too short

    Why it's wrong here

    Duration does not cause failure; it just defines length.

  • The playbook actions array has only one action, which is insufficient

    Why it's wrong here

    One action is fine if configured correctly.

  • The playbook is using the wrong trigger type; it should be on incident creation

    Why it's wrong here

    The trigger type is correct for alert-based playbooks.

Common exam traps

Common exam trap: NAT rules depend on direction and matching traffic

NAT is not only about the public address. The inside/outside interface roles and the ACL or rule that matches traffic are just as important.

Detailed technical explanation

How to think about this question

NAT questions usually test address translation, overload/PAT behaviour, static mappings and whether the right traffic is being translated. Read the interface direction and address terms carefully.

KKey Concepts to Remember

  • Static NAT maps one inside address to one outside address.
  • PAT allows many inside hosts to share one public address using ports.
  • Inside local and inside global describe the private and translated addresses.
  • NAT ACLs identify traffic for translation, not always security filtering.

TExam Day Tips

  • Identify inside and outside interfaces first.
  • Check whether the scenario needs static NAT, dynamic NAT or PAT.
  • Do not confuse NAT matching ACLs with normal packet-filtering intent.

Key takeaway

NAT direction and interface roles matter as much as the IP address mapping. Inside/outside designation controls which traffic is translated.

Real-world example

How this comes up in practice

A healthcare organisation deploys an application with a public-facing web tier and a private database tier. The database subnet has no public IP and only accepts connections from the web tier's security group. Questions like this test whether you can design cloud network isolation using VNets/VPCs, subnets, and security group rules.

What to study next

Got this wrong? Here's your next step.

Review the four NAT address types (inside local, inside global, outside local, outside global), PAT port overload, and static vs dynamic NAT use cases. Then practise related SC-200 NAT questions on configuration and troubleshooting.

Related practice questions

Related SC-200 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 SC-200 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 SC-200 question test?

Respond to security incidents — This question tests Respond to security incidents — Static NAT maps one inside address to one outside address..

What is the correct answer to this question?

The correct answer is: The IP address is being extracted from an incorrect field in the alert — The playbook references an incorrect field. The IP address should come from the alert's entity, not the alertRuleId. The trigger type is correct but the property path is wrong. Also, the action type should be Wait, the exhibit shows 'actionType': 'BlockIP' which is not a standard action type. The correct action type might be 'Run playbook' or a connector. However, the most obvious error is the property path: 'alertRuleId' is not an IP address. Also, 'BlockIP' action type does not exist; actual block action is performed via a connector like Azure Firewall or Defender. But given the options, the incorrect property path is the key issue.

What should I do if I get this SC-200 question wrong?

Review the four NAT address types (inside local, inside global, outside local, outside global), PAT port overload, and static vs dynamic NAT use cases. Then practise related SC-200 NAT questions on configuration and troubleshooting.

Are there clue words in this question I should notice?

Yes — watch for: "most likely". Probability qualifier — the question wants the most probable cause or outcome, not a guaranteed one. Eliminate low-probability options.

What is the key concept behind this question?

Static NAT maps one inside address to one outside address.

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

Last reviewed: Jun 21, 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 SC-200 practice question is part of Courseiva's free Microsoft 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 SC-200 exam.