SC-200 • Practice Exam 56
Free SC-200 practice exam — 20 questions with explanations. Set 56. No signup required.
Refer to the exhibit. This JSON snippet is from an Azure Web Application Firewall (WAF) policy. What does this rule do?
Refer to the exhibit.
```json
{
"displayName": "Malicious IP Block Rule",
"properties": {
"rules": [
{
"name": "BlockMaliciousIP",
"matchConditions": [
{
"matchVariable": "RemoteAddr",
"operator": "IPMatch",
"matchValue": "10.0.0.1"
}
],
"action": {
"type": "Block"
}
}
]
}
}
```