Bandit Level 8 → Level 9
Hello everyone! In this post I'll present my solution to the Bandit Level 8. Soon I'll be publishing the solution for Bandit Level 9. If you want to try it yourself before seeing the solution, here you have the URL: https://overthewire.org/wargames/bandit/ When we start we are presented with the following statement: The password for the next level is stored in the file data.txt and is the only line of text that occurs only once *My solution* To enter the level, one must do the command: $ ssh -p 2220 -l bandit8 bandit.labs.overthewire.org With the password, which is the flag from the previous level. And we are in! Once inside lets see the home (~) folder's content with the command: ~$ ls And the file data.txt appeared. In order to see the file's content we could do the cat command: ...