Level 17 → 18
Last updated
Last updated
There are 2 files in the homedirectory: passwords.old and passwords.new. The password for the next level is in passwords.new and is the only line that has been changed between passwords.old and passwords.new
NOTE: if you have solved this level and see ‘Byebye!’ when trying to log into bandit18, this is related to the next level, bandit19
List the content of the directory:
This showed two files: passwords.new and passwords.old
Use diff
to compare the two files:
This shows which line was changed between the two files.
The output showed the old and new passwords, with the new password being the one for the next level:
x2gLTTjFwMOhQ8oWNbMN362QKxfRqGlO
Use the new password to access the next level:
The diff
command is effective for identifying changes between Files
File comparison is more reliable than manual inspection for finding differences
-- Othmane