2.Linux-services-and-internals-enumeration
Network Information
ip a
cat /etc/hostsUser and Login Information
lastlog
w
history
find / -type f \( -name *_hist -o -name *_history \) -exec ls -l {} \; 2>/dev/nullScheduled Tasks
ls -la /etc/cron.daily/
# Check other cron directories: /etc/cron.hourly, /etc/cron.weekly, /etc/cron.monthly, /etc/crontab, /var/spool/cron/crontabsProcess Information
find /proc -name cmdline -exec cat {} \; 2>/dev/null | tr " " "\n"
ps aux | grep root # Or other usersInstalled Packages and Binaries
System Calls
Configuration Files and Scripts
Last updated