-
Notifications
You must be signed in to change notification settings - Fork 139
Event Viewer
This document is dedicated to offering various ways to use Event logs to achieve different purposes.
I've mostly considered this for the Country IP Blocking category, but you can use it for any purpose.
Before doing this, you need to activate one of the system Audits.
I suggest doing it using GUI because it will have a permanent effect:
Or you can activate that Audit using this command, but it will only temporarily activate it and it'll be disabled again after you restart Windows.
Auditpol /set /category:"System" /SubCategory:"Filtering Platform Packet Drop" /success:enable /failure:enable
Auditpol /set /category:"{69979848-797A-11D9-BED3-505054503030}" /SubCategory:"{0CCE9225-69AE-11D9-BED3-505054503030}" /success:enable /failure:enable
After the Audit is activated, running this PowerShell code will generate an output showing you blocked packets (if any).
For example, if you visit a website or access a server that is hosted in one of the countries you blocked, or a connection was made from one of those countries to your device, it will generate an event log that will be visible to you once you run this code.
#Requires -RunAsAdministrator
#Requires -Version 7.4
Function Get-BlockedPackets {
Begin {
[System.Diagnostics.Eventing.Reader.EventLogRecord[]]$Events = Get-WinEvent -FilterHashtable @{LogName = 'Security'; ID = 5152 }
[System.Object[]]$Outputs = @()
# Create an empty hashtable to store the firewall rule names and display names
[System.Collections.Hashtable]$FirewallGroupPolicy = @{}
# Loop through each firewall rule from the local policy store (for Firewall rules that are stored in Group Policy)
foreach ($Rule in Get-NetFirewallRule -PolicyStore localhost) {
# Add a new entry to the hashtable with the rule name as the key and the display name as the value
$FirewallGroupPolicy[$Rule.name] = $Rule.DisplayName
}
# Loop through each local firewall rule (for Firewall rules that are defined locally in Windows Defender Firewall with Advanced Security)
foreach ($Rule in Get-NetFirewallRule) {
# Add a new entry to the hashtable with the rule name as the key and the display name as the value
$FirewallGroupPolicy[$Rule.name] = $Rule.DisplayName
}
# Create a hashtable of partition numbers and their associated drive letters
[System.Collections.Generic.Dictionary[string, string]]$DriveLetterMappings = @{}
# Get all partitions and filter out the ones that don't have a drive letter and then add them to the hashtable with the partition number as the key and the drive letter as the value
foreach ($Drive in (Get-Partition | Where-Object -FilterScript { $_.DriveLetter })) {
$DriveLetterMappings[$Drive.PartitionNumber] = $Drive.DriveLetter
}
# Define the regex pattern for the device path
[string]$Pattern = '\\Device\\HarddiskVolume(\d+)\\(.*)$'
}
Process {
# Loop through each event in the $Events array
foreach ($Event in $Events) {
# Convert the event to an XML document
$Xml = [System.Xml.XmlDocument]$Event.ToXml()
# Pipe the data elements of the event to the next command
$Xml.event.eventdata.data |
# For each data element, do the following
ForEach-Object -Begin {
[System.Collections.Hashtable]$Hash = @{ TimeCreated = [System.DateTime]$Xml.Event.System.TimeCreated.SystemTime }
} -Process {
# Add the name and text of the data element as another key-value pair to the hashtable
$Hash[$_.name] = $_.'#text'
} -End {
# Convert the hashtable to a custom object and pipe it to the next command
[pscustomobject]$Hash
} |
# Filter out the objects that have a filter origin property matching any of the specified strings
Where-Object -Property FilterOrigin -NotMatch 'Stealth|Unknown|Query User Default|WSH Default' | ForEach-Object -Process {
# If the filter origin is in the hashtable keys
if ($_.FilterOrigin -in $FirewallGroupPolicy.Keys) {
# Replace the filter origin with the display name of the firewall rule from the hashtable
$_.FilterOrigin = $FirewallGroupPolicy[$_.FilterOrigin]
}
# Create a hashtable with the protocol numbers and names
[System.String]$ProtocolName = @{ 6 = 'TCP'; 17 = 'UDP' }[[System.Int32]$_.Protocol]
# If the protocol number is not in the hashtable, keep it as it is, otherwise replace it with the protocol name
$_.Protocol = if (-not $ProtocolName) { $_.Protocol } else { $ProtocolName }
# If the direction is equal to '%%14592', set it to 'Outbound', otherwise set it to 'Inbound'
$_.Direction = $_.Direction -eq '%%14592' ? 'Outbound' : 'Inbound'
# If the application matches the pattern, replace the device path with the drive letter
if ($_.Application -match $Pattern) {
[System.Int64]$HardDiskVolumeNumber = $Matches[1]
[System.String]$RemainingPath = $Matches[2]
[PSCustomObject]$GetLetter = $DriveLetterMappings[$HardDiskVolumeNumber]
[System.IO.FileInfo]$UsablePath = [System.IO.Path]::Combine("$GetLetter`:", $RemainingPath)
$_.Application = $_.Application -replace $Pattern, $UsablePath
}
# Add the modified object to the $Outputs array
$Outputs += $_ | Select-Object -Property Application, SourcePort, Protocol, SourceAddress, DestPort, TimeCreated, Direction, DestAddress, ProcessId , FilterOrigin
}
}
}
End {
Return $Outputs
}
}
Get-BlockedPackets
This code assumes you've already used the Harden Windows Security Module and the event logs custom views exist on your machine.
# Load the XML content from a file or a string
$xml = [xml](Get-Content -Path 'C:\ProgramData\Microsoft\Event Viewer\Views\Hardening Script\Exploit Protection Events.xml')
# Get the QueryList element using XPath
$queryList = $xml.SelectSingleNode("//QueryList")
# Convert the QueryList element to a string
$queryListString = $queryList.OuterXml
$Events = Get-WinEvent -FilterXml $queryListString -Oldest
$Events | Format-Table -AutoSize
- New-WDACConfig
- New-SupplementalWDACConfig
- Remove-WDACConfig
- Edit-WDACConfig
- Edit-SignedWDACConfig
- Deploy-SignedWDACConfig
- Confirm-WDACConfig
- New-DenyWDACConfig
- Set-CommonWDACConfig
- New-KernelModeWDACConfig
- Get-CommonWDACConfig
- Invoke-WDACSimulation
- Remove-CommonWDACConfig
- Assert-WDACConfigIntegrity
- Build-WDACCertificate
- Test-CiPolicy
- Get-CiFileHashes
- ConvertTo-WDACPolicy
- Get-CIPolicySetting
- Introduction
- App Control for Lightly Managed Devices
- App Control for Fully managed device - Variant 1
- App Control for Fully managed device - Variant 2
- App Control for Fully managed device - Variant 3
- App Control for Fully managed device - Variant 4
- App Control Notes
- How to Create and Deploy a Signed App Control Policy
- Fast and Automatic Microsoft Recommended Driver Block Rules updates
- App Control policy for BYOVD Kernel mode only protection
- EKUs in App Control for Business Policies
- App Control Rule Levels Comparison and Guide
- Script Enforcement and PowerShell Constrained Language Mode in App Control Policies
- How to Use Microsoft Defender for Endpoint Advanced Hunting With App Control
- App Control Frequently Asked Questions (FAQs)
- Create Bootable USB flash drive with no 3rd party tools
- Event Viewer
- Group Policy
- How to compact your OS and free up extra space
- Hyper V
- Overrides for Microsoft Security Baseline
- Git GitHub Desktop and Mandatory ASLR
- Signed and Verified commits with GitHub desktop
- About TLS, DNS, Encryption and OPSEC concepts
- Things to do when clean installing Windows
- Comparison of security benchmarks
- BitLocker, TPM and Pluton | What Are They and How Do They Work
- How to Detect Changes in User and Local Machine Certificate Stores in Real Time Using PowerShell
- Cloning Personal and Enterprise Repositories Using GitHub Desktop
- Only a Small Portion of The Windows OS Security Apparatus
- Clean Source principle, Azure and Privileged Access Workstations
- How to Securely Connect to Azure VMs and Use RDP
- Basic PowerShell tricks and notes
- Basic PowerShell tricks and notes Part 2
- Basic PowerShell tricks and notes Part 3
- Basic PowerShell tricks and notes Part 4
- Basic PowerShell tricks and notes Part 5
- How To Access All Stream Outputs From Thread Jobs In PowerShell In Real Time
- PowerShell Best Practices To Follow When Coding
- How To Asynchronously Access All Stream Outputs From Background Jobs In PowerShell
- Powershell Dynamic Parameters and How to Add Them to the Get‐Help Syntax
- RunSpaces In PowerShell
- How To Use Reflection And Prevent Using Internal & Private C# Methods in PowerShell