News

Learn PowerShell Scripting in a Month of Lunches, Second Edition takes you beyond command-line PowerShell and opens up the amazing world of scripting and automation. In just 27 bite-sized lessons, you ...
For example, you can use the Set-ExecutionPolicy cmdlet to set the execution policy for your scripts, the Sign-Script cmdlet to sign your scripts with a digital certificate, and the Invoke-Command ...
A collection of techniques, examples and a little bit of theory for manually obfuscating PowerShell scripts to achieve AV evasion, compiled for educational purposes.
Wouldn't it be cool if PowerShell could automatically write scripts so that you didn't have to? Believe it or not, it is possible. Of course the old saying that if something sounds too good to be ...
PowerShell scripts are useful for performing management tasks that are either complex or that need to be repeatable. For example, suppose that you routinely use PowerShell to create new user ...
PowerShell has made it dead simple to automate all kinds of things. However, its simplicity can be deceiving. PowerShell takes the complexity out of script writing but unless you're writing a ...
When obfuscating scripts, it should be a priority to replace variable/class/function names with random ones. That way, in combination with other techniques, you will be able to bypass detection easily ...
For example, if I wanted to compare two numbers — let’s say 5 and 10 — and have PowerShell display whether 10 was greater than 5, then we could write the following if/then construct: ...