Created
April 14, 2023 00:23
-
-
Save dcasati/4ae019e27932269dca95afd3da7db485 to your computer and use it in GitHub Desktop.
azure firewall query to show packets that were denied
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
AzureDiagnostics | |
| where ResourceType == "AZUREFIREWALLS" | |
| extend | |
proto = extract(@"^([A-Z]+) ",1,msg_s) | |
,src_host = extract(@"request from ([\d\.]*)",1,msg_s) | |
,src_port = extract(@"request from [\d\.]*:(\d+)",1,msg_s) | |
,dest_host = extract(@" to ([-\w\.]+)(:|\. |\.$)",1,msg_s) | |
,dest_port = extract(@" to [-\w\.]+:(\d+)",1,msg_s) | |
,action = iif( | |
msg_s has "was denied" | |
,"Deny" | |
,extract(@" Action: (\w+)",1,msg_s)) | |
,rule_coll = extract(@" Rule Collection: (\w+)",1,msg_s) | |
,rule = coalesce( | |
extract(@" Rule: (.*)",1,msg_s) | |
,extract("No rule matched",0,msg_s)) | |
,reason = extract(@" Reason: (.*)",1,msg_s) | |
| where action contains "Deny" | |
| project TimeGenerated,Category,proto,src_host,src_port,dest_host,dest_port,action,rule_coll,rule,reason,msg_s |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment