2.Linux-services-and-internals-enumeration

Network Information

ip a
cat /etc/hosts

User and Login Information

lastlog
w
history
find / -type f \( -name *_hist -o -name *_history \) -exec ls -l {} \; 2>/dev/null

Scheduled Tasks

ls -la /etc/cron.daily/
# Check other cron directories: /etc/cron.hourly, /etc/cron.weekly, /etc/cron.monthly, /etc/crontab, /var/spool/cron/crontabs

Process Information

find /proc -name cmdline -exec cat {} \; 2>/dev/null | tr " " "\n"
ps aux | grep root # Or other users

Installed Packages and Binaries

System Calls

Configuration Files and Scripts

Last updated