2025年03月04日
overthewire
level 17
this level is simple, the task is to identify the difference between the two files.
hence, diff
is the solution.
diff passwords.old passwords.new passwords.old
< is used because i wanted to grab the password for the next level on the passwords.new
file.
ssh -t bandit17@bandit.labs.overthewire.org -p 2220 "diff passwords.new passwords.old | awk '\$1==\"<\" {print \$2}'"