Linux-Enum: Linux Auto-Enumerator
Introduction Linux-Enum is an automated enumeration tool I built to speed up the initial reconnaissance phase when targeting Linux machines. It detects open services and runs the appropriate enumeration tools, organizing all output for easy review. Language: Python 3 Target: Linux systems Purpose: OSCP preparation, penetration testing GitHub: github.com/jashidsany/linux-enum Why I Built This During OSCP preparation, I found myself running the same enumeration sequence on every Linux box: Nmap scan Gobuster if web is open enum4linux if SMB is open showmount if NFS is open snmpwalk if SNMP is open This tool automates all of that and intelligently runs tools based on what ports are open. ...