Enumerating Processes & Services
Windows
Info to look for
running processes & services
scheduled tasks
Commands
ps
pgrep explorer.exe
migrate <pid>
net start -> shell -> background services
wmic service list brief
tasklist /SVC
schtasks /query /fo LIST
schtasks /query /fo LIST /v
Linux
Info to look for
running services
cron jobs
Commands
ps
pgrep explorer.exe
crontab -l
top
ls -al /etc/cron*
cat /etc/cron*
Last updated