Level 21 - Level 22
Challenge Information Platform: OverTheWire (Bandit) Difficulty: Easy Category: Linux Overview A program is running automatically at regular intervals from cron, the time-based job scheduler. Look in /etc/cron.d/ for the configuration and see what command is being executed. Solution SSH into machine on port 2220 with password from previous level. ssh -p 2220 bandit21@bandit.labs.overthewire.org Look for configuration in /etc/cron.d/ ls -la /etc/cron.d/ We see cronjob_bandit22 looks promising! Next we cat this config to see what command is being executed. ...