Azure Web Application Firewall monitoring and logging (2024)

  • Article
  • 4 minutes to read

Azure Front Door's Web Application Firewall (WAF) provides extensive logging and telemetry to help you to understand how your WAF is performing and the actions it takes.

Front Door's WAF log is integrated with Azure Monitor. Azure Monitor enables you to track diagnostic information including WAF alerts and logs. You can configure WAF monitoring within the Front Door resource in the portal under the Diagnostics tab, through infrastructure as code approaches, or by using the Azure Monitor service directly.

Metrics

Azure Front Door automatically records metrics to help you to understand the behavior of your WAF.

To access your WAF's metrics:

  1. Sign in to the Azure portal and navigate to your Azure Front Door profile.
  2. Select the Monitoring/Metrics tab on the left.
  3. Add the WebApplicationFirewallRequestCount to track number of requests that match WAF rules.

Custom filters can be created based on action types and rule names. Metrics include requests with all actions except Log.

Azure Web Application Firewall monitoring and logging (1)

Logs and diagnostics

Azure Front Door's WAF provides detailed reporting on each request, and each threat that it detects. Logging is integrated with Azure's diagnostics logs and alerts by using Azure Monitor logs.

Logs aren't enabled by default. You need to explicitly enable logs. You can configure logs in the Azure portal by using the Diagnostic settings tab.

Azure Web Application Firewall monitoring and logging (2)

If logging is enabled and a WAF rule is triggered, any matching patterns are logged in plain text to help you analyze and debug the WAF policy behavior. You can use exclusions to fine tune rules and exclude any data that you want to be excluded from the logs. For more information, see Web application firewall exclusion lists in Azure Front Door.

Front Door provides two types of logs: access logs and WAF logs.

Access logs

The FrontDoorAccessLog includes all requests that go through Front Door. For more information on the Front Door access log, including the log schema, see Monitor metrics and logs in Azure Front Door.

The FrontdoorAccessLog includes all requests that go through Front Door. For more information on the Front Door access log, including the log schema, see Monitoring metrics and logs in Azure Front Door (classic).

The following example query returns the access log entries:

AzureDiagnostics| where ResourceProvider == "MICROSOFT.CDN" and Category == "FrontDoorAccessLog"
AzureDiagnostics| where ResourceType == "FRONTDOORS" and Category == "FrontdoorAccessLog"

The following shows an example log entry:

{ "time": "2020-06-09T22:32:17.8383427Z", "category": "FrontDoorAccessLog", "operationName": "Microsoft.Cdn/Profiles/AccessLog/Write", "properties": { "trackingReference": "08Q3gXgAAAAAe0s71BET/QYwmqtpHO7uAU0pDRURHRTA1MDgANjMxNTAwZDAtOTRiNS00YzIwLTljY2YtNjFhNzMyOWQyYTgy", "httpMethod": "GET", "httpVersion": "2.0", "requestUri": "https://wafdemofrontdoorwebapp.azurefd.net:443/?q=%27%20or%201=1", "requestBytes": "715", "responseBytes": "380", "userAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4157.0 Safari/537.36 Edg/85.0.531.1", "clientIp": "xxx.xxx.xxx.xxx", "socketIp": "xxx.xxx.xxx.xxx", "clientPort": "52097", "timeTaken": "0.003", "securityProtocol": "TLS 1.2", "routingRuleName": "WAFdemoWebAppRouting", "rulesEngineMatchNames": [], "backendHostname": "wafdemowebappuscentral.azurewebsites.net:443", "sentToOriginShield": false, "httpStatusCode": "403", "httpStatusDetails": "403", "pop": "SJC", "cacheStatus": "CONFIG_NOCACHE" }}
{ "time": "2020-06-09T22:32:17.8383427Z", "category": "FrontdoorAccessLog", "operationName": "Microsoft.Network/FrontDoor/AccessLog/Write", "properties": { "trackingReference": "08Q3gXgAAAAAe0s71BET/QYwmqtpHO7uAU0pDRURHRTA1MDgANjMxNTAwZDAtOTRiNS00YzIwLTljY2YtNjFhNzMyOWQyYTgy", "httpMethod": "GET", "httpVersion": "2.0", "requestUri": "https://wafdemofrontdoorwebapp.azurefd.net:443/?q=%27%20or%201=1", "requestBytes": "715", "responseBytes": "380", "userAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4157.0 Safari/537.36 Edg/85.0.531.1", "clientIp": "xxx.xxx.xxx.xxx", "socketIp": "xxx.xxx.xxx.xxx", "clientPort": "52097", "timeTaken": "0.003", "securityProtocol": "TLS 1.2", "routingRuleName": "WAFdemoWebAppRouting", "rulesEngineMatchNames": [], "backendHostname": "wafdemowebappuscentral.azurewebsites.net:443", "sentToOriginShield": false, "httpStatusCode": "403", "httpStatusDetails": "403", "pop": "SJC", "cacheStatus": "CONFIG_NOCACHE" }}

WAF logs

The FrontDoorWebApplicationFirewallLog includes requests that match a WAF rule.

The FrontdoorWebApplicationFirewallLog includes any request that matches a WAF rule.

The following table shows the values logged for each request:

PropertyDescription
ActionAction taken on the request. Logs include requests with all actions. Actions are:
  • Allow and allow: The request was allowed to continue processing.
  • Block and block: The request matched a WAF rule configured to block the request. Alternatively, the anomaly scoring threshold was reached and the request was blocked.
  • Log and log: The request matched a WAF rule configured to use the Log action.
  • AnomalyScoring and logandscore: The request matched a WAF rule. The rule contributes to the anomaly score. The request might or might not be blocked depending on other rules that run on the same request.
ClientIPThe IP address of the client that made the request. If there was an X-Forwarded-For header in the request, the client IP address is taken from that header field instead.
ClientPortThe IP port of the client that made the request.
DetailsAdditional details on the request, including any threats that were detected.
matchVariableName: HTTP parameter name of the request matched, for example, header names (up to 100 characters maximum).
matchVariableValue: Values that triggered the match (up to 100 characters maximum).
HostThe Host header of the request.
PolicyThe name of the WAF policy that processed the request.
PolicyModeOperations mode of the WAF policy. Possible values are Prevention and Detection.
RequestUriFull URI of the request.
RuleNameThe name of the WAF rule that the request matched.
SocketIPThe source IP address seen by WAF. This IP address is based on the TCP session, and does not consider any request headers.
TrackingReferenceThe unique reference string that identifies a request served by Front Door. This value is sent to the client in the X-Azure-Ref response header. Use this field when searching for a specific request in the log.

The following example query shows the requests that were blocked by the Front Door WAF:

AzureDiagnostics | where ResourceProvider == "MICROSOFT.CDN" and Category == "FrontDoorWebApplicationFirewallLog" | where action_s == "Block" 
AzureDiagnostics| where ResourceType == "FRONTDOORS" and Category == "FrontdoorWebApplicationFirewallLog"| where action_s == "Block"

The following shows an example log entry, including the reason that the request was blocked:

{ "time": "2020-06-09T22:32:17.8376810Z", "category": "FrontdoorWebApplicationFirewallLog", "operationName": "Microsoft.Cdn/Profiles/Write", "properties": { "clientIP": "xxx.xxx.xxx.xxx", "clientPort": "52097", "socketIP": "xxx.xxx.xxx.xxx", "requestUri": "https://wafdemofrontdoorwebapp.azurefd.net:443/?q=%27%20or%201=1", "ruleName": "Microsoft_DefaultRuleSet-1.1-SQLI-942100", "policy": "WafDemoCustomPolicy", "action": "Block", "host": "wafdemofrontdoorwebapp.azurefd.net", "trackingReference": "08Q3gXgAAAAAe0s71BET/QYwmqtpHO7uAU0pDRURHRTA1MDgANjMxNTAwZDAtOTRiNS00YzIwLTljY2YtNjFhNzMyOWQyYTgy", "policyMode": "prevention", "details": { "matches": [ { "matchVariableName": "QueryParamValue:q", "matchVariableValue": "' or 1=1" } ] } }}
{ "time": "2020-06-09T22:32:17.8376810Z", "category": "FrontdoorWebApplicationFirewallLog", "operationName": "Microsoft.Network/FrontDoorWebApplicationFirewallLog/Write", "properties": { "clientIP": "xxx.xxx.xxx.xxx", "clientPort": "52097", "socketIP": "xxx.xxx.xxx.xxx", "requestUri": "https://wafdemofrontdoorwebapp.azurefd.net:443/?q=%27%20or%201=1", "ruleName": "Microsoft_DefaultRuleSet-1.1-SQLI-942100", "policy": "WafDemoCustomPolicy", "action": "Block", "host": "wafdemofrontdoorwebapp.azurefd.net", "trackingReference": "08Q3gXgAAAAAe0s71BET/QYwmqtpHO7uAU0pDRURHRTA1MDgANjMxNTAwZDAtOTRiNS00YzIwLTljY2YtNjFhNzMyOWQyYTgy", "policyMode": "prevention", "details": { "matches": [ { "matchVariableName": "QueryParamValue:q", "matchVariableValue": "' or 1=1" } ] } }}

Next steps

Azure Web Application Firewall monitoring and logging (2024)
Top Articles
Latest Posts
Article information

Author: Aracelis Kilback

Last Updated:

Views: 6375

Rating: 4.3 / 5 (44 voted)

Reviews: 91% of readers found this page helpful

Author information

Name: Aracelis Kilback

Birthday: 1994-11-22

Address: Apt. 895 30151 Green Plain, Lake Mariela, RI 98141

Phone: +5992291857476

Job: Legal Officer

Hobby: LARPing, role-playing games, Slacklining, Reading, Inline skating, Brazilian jiu-jitsu, Dance

Introduction: My name is Aracelis Kilback, I am a nice, gentle, agreeable, joyous, attractive, combative, gifted person who loves writing and wants to share my knowledge and understanding with you.