0Pricing
Ethical Hacking Academy · Lesson

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, Id

All lessons in this course

  1. Windows Architecture
  2. The Registry
  3. Windows Authentication
  4. PowerShell for Attackers
← Back to Ethical Hacking Academy