# PE Scripts

## Linux

{% tabs %}
{% tab title="LinPEASS" %}
[Privilege Escalation Awesome Scripts Suite](https://github.com/peass-ng/PEASS-ng) (PEASS) scripts are a collection of automated tools used to enumerate potential privilege escalation vectors by quickly identify misconfigurations or vulnerabilities. The `-a` (all checks except regex) option performs process checks for 1 minute, searches for more file hashes, and brute-forces each user via `su` using the top 2000 passwords. The `-r` (regex checks) option will search for hundreds of API keys of different platforms in the Filesystem.

```bash
./linpeas.sh -a -r
```

{% endtab %}

{% tab title="LES" %}
The [Linux Exploit Suggester](https://github.com/The-Z-Labs/linux-exploit-suggester) tool is designed to assist in detecting security deficiencies for a given Linux kernel/Linux-based machine:

```bash
./linux-exploit-suggester.sh
```

{% endtab %}

{% tab title="LSE" %}
The [Linux Smart Enumeration](https://github.com/diego-treitos/linux-smart-enumeration?tab=readme-ov-file) script shows relevant information about potential privilege escalation vectors.

```bash
./lse.sh [options]
```

{% endtab %}
{% endtabs %}

## Windows

{% tabs %}
{% tab title="winPEASS" %}
[Privilege Escalation Awesome Scripts Suite](https://github.com/peass-ng/PEASS-ng) (PEASS) scripts are a collection of automated tools used to enumerate potential privilege escalation vectors by quickly identify misconfigurations or vulnerabilities. The `-a` (all checks except regex) option performs process checks for 1 minute, searches for more file hashes, and brute-forces each user via `su` using the top 2000 passwords. The `-r` (regex checks) option will search for hundreds of API keys of different platforms in the Filesystem.

```powershell
.\winPEASx64.exe -a -r
```

{% endtab %}

{% tab title="seatbelt" %}
[Seatbelt](https://github.com/GhostPack/Seatbelt) - WIP.
{% endtab %}
{% endtabs %}
