← Script House 5-Minute Drill

File Finding Drill

5:00
1
Task 1 of 5
Loading...

FILE FINDING DRILL

Scenario
A rogue process scattered suspicious files across the server. Use find, locate, which, and whereis to hunt them down before the attacker covers their tracks.
0 completed 0%
Solution Cheat Sheet
Task 1 — Find .conf files
find /etc -name "*.conf"
Task 2 — Find passwd file
find / -name "passwd"
Task 3 — Locate bash
which bash
Task 4 — Find large files
find /home -size +10k
Task 5 — Find directories by name
find / -type d -name "scripts"