PowerShell for Attackers
Offensive PowerShell.
Why PowerShell
PowerShell is built into Windows, deeply integrated with the OS and .NET, and trusted by administrators. That makes it a favorite living-off-the-land tool for attackers - no malware to drop.
This lesson covers offensive PowerShell concepts you must understand to attack and defend Windows.
Cmdlets and the Pipeline
PowerShell commands are cmdlets in Verb-Noun form. They pass rich objects (not just text) down the pipeline, making enumeration powerful.
Get-Process | Where-Object { $_.CPU -gt 10 } | Select-Object Name, IdAll lessons in this course
- Windows Architecture
- The Registry
- Windows Authentication
- PowerShell for Attackers