> For the complete documentation index, see [llms.txt](https://intrusionz3r0.gitbook.io/intrusionz3r0/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://intrusionz3r0.gitbook.io/intrusionz3r0/linux-penetration-testing/tools.md).

# Tools

## Linpeas <a href="#tools" id="tools"></a>

{% embed url="<https://github.com/peass-ng/PEASS-ng/tree/master/linPEAS>" %}

```sh
wget "https://github.com/carlospolop/PEASS-ng/releases/latest/download/linpeas.sh" -O linpeas.sh
curl "https://github.com/carlospolop/PEASS-ng/releases/latest/download/linpeas.sh" -o linpeas.sh
./linpeas.sh -a #all checks - deeper system enumeration, but it takes longer to complete../linpeas.sh -s #superfast & stealth - This will bypass some time consuming checks. In stealth mode Nothing will be written to the disk../linpeas.sh -P #Password - Pass a password that will be used with sudo -l and bruteforcing other users
```

## Linux Smart Enumeration

{% embed url="<https://github.com/diego-treitos/linux-smart-enumeration>" %}

```haskell
wget "https://raw.githubusercontent.com/diego-treitos/linux-smart-enumeration/master/lse.sh" -O lse.shcurl "https://raw.githubusercontent.com/diego-treitos/linux-smart-enumeration/master/lse.sh" -o lse.sh./lse.sh -l1 # shows interesting information that should help you to privesc./lse.sh -l2 # dump all the information it gathers about the system
```

## LinEnum

{% embed url="<https://github.com/rebootuser/LinEnum>" %}

```
./LinEnum.sh -s -k keyword -r report -e /tmp/ -t
```

## Other linux enumeration tools

* [BeRoot - Privilege Escalation Project - Windows / Linux / Mac](https://github.com/AlessandroZ/BeRoot)
* [linuxprivchecker.py - a Linux Privilege Escalation Check Script](https://github.com/sleventyeleven/linuxprivchecker)
* [unix-privesc-check - Automatically exported from code.google.com/p/unix-privesc-check](https://github.com/pentestmonkey/unix-privesc-check)
* [Privilege Escalation through sudo - Linux](https://github.com/TH3xACE/SUDO_KILLER)

### &#x20;<a href="#checklists" id="checklists"></a>
