Learn to enumerate and analyze running processes on Linux and Windows systems — a critical skill for incident response.
Display a snapshot of all running processes with detailed info.
ps aux
View processes sorted by resource usage (CPU/Memory). Press 'q' to exit.
top
See parent-child relationships between processes.
pstree
Search for a process by name (e.g., ssh, apache, nginx).
ps aux | grep ssh
Show processes with network connections — useful for finding backdoors.
netstat -tulnp
List files opened by a specific process (requires PID).
lsof -p 1
Complete all challenges to finish the lab.
You've mastered the basics of process enumeration. These skills are essential for hunting threats and responding to incidents.