An Azure service that provides global content delivery and acceleration.
Hi @ Sanket Pokale •,
Welcome to Microsoft Q&A Platform.
You can check whether the WAF rule is being triggered by querying the AzureDiagnostics logs:
AzureDiagnostics
| where ruleName_s == "BlockSuspiciousURLs"
If no records are returned, it indicates that the rule was never matched.
If Diagnostic settings are not enabled, you can enable them by navigating to: Front Door → Diagnostic settings → Enable (WAF logs).
Alternatively, you can try the configuration below, as suggested Match based on request URI
"operator": "Contains",
"matchValue": [
"snapchat"
]
The Contains operator directly matches substrings in the request URI and is the recommended approach for simple keyword-based URL filtering.
Kindly let us know if the above helps or you need further assistance on this issue.
Please
and “up-vote” wherever the information provided helps you, this can be beneficial to other community members.