Level 6 - Level 7
Challenge Information Platform: OverTheWire (Bandit) Difficulty: Easy Category: Linux Overview The password for the next level is stored somewhere on the server and has all of the following properties: owned by user bandit7 owned by group bandit6 33 bytes in size Solution SSH into machine on port 2220 with password from previous level. ssh -p 2220 bandit6@bandit.labs.overthewire.org Use find command with -size flag to specify file size. Use -exec flag to execute ls -al {} \; that gives the permissions and grep lines with “bandit7 bandit6”. ...