situational-awareweness
Windows Network Information
# IP configuration
ipconfig /all
# ARP table
arp -a
# Routing table
route printWindows Protections Enumeration
# Windows Defender status
Get-MpComputerStatus
# AppLocker policy (effective)
Get-AppLockerPolicy -Effective | select -ExpandProperty RuleCollections
# AppLocker policy (local)
Get-AppLockerPolicy -Local | select -ExpandProperty RuleCollections
# Test AppLocker policy
Get-AppLockerPolicy -Local | Test-AppLockerPolicy -path C:\Windows\System32\cmd.exe -User EveryoneGeneral Enumeration
Key Concepts:
Last updated