Login

  • ssh : ssh bandit17@bandit.labs.overthewire -p 2220
  • password : EReVavePLFHtFlFsjn3hyzMlvSuSAcRD

Task :

  • to get the next level password we have to find the updated line between the 2 provided files

Theory

  • the command diff is used to get any differences between 2 files

Solution

diff password.old password.new
  • this command will give us the difference it finds where it will display the different lines in the order of the given files.