#windows-post-exploitatoin

عشان تستخدمها لازم يكون معاك اكسيس علي التارجيت الاول

Definition

PowerSploit is a collection of PowerShell scripts designed for penetration testing and red teaming. It includes various modules for tasks such as post-exploitation, and reconnaissance.

image.png

how can use powersploit ??

  1. run in powrshell first
**powershell -ep bypass**

The command powershell -ep bypass is used to bypass the Execution Policy (EP) in PowerShell.

What is Execution Policy?

Execution Policy is a security feature in PowerShell that determines which scripts can be run on a system. It's a way to control the execution of scripts and prevent malicious scripts from running.

What does -ep bypass do?

When you run powershell -ep bypass, you're telling PowerShell to bypass the Execution Policy and run the script without checking the policy.

1. Download PowerSploit

You can download PowerSploit from its GitHub repository:

bashCopy
git clone <https://github.com/PowerShellMafia/PowerSploit.git>

After cloning, you'll have a local copy of the PowerSploit framework.