Movatterモバイル変換


[0]ホーム

URL:


Skip to content
DEV Community
Log in Create account

DEV Community

Cover image for Bandit Level 2 Level 3
Christian Paez
Christian Paez

Posted on

     

Bandit Level 2 Level 3

Introduction

Bandit3 is the fourth level of the OverTheWire Bandit wargame. In this level, we will learn how to handle filenames with spaces in them and how to read the contents of a file with a space in its name. By completing this level, we will gain access to the password for the next level.

Steps

  1. Open your terminal application.
  2. Enter the following command to ssh into the remote server:
ssh bandit2@bandit.labs.overthewire.org -p 2220
Enter fullscreen modeExit fullscreen mode
  1. You will be prompted to enter a password. Enter the password from the previous level, "rRGizSaX8Mk1RTb1CNQoXTcYZWU6lgzi", and hit enter.
  2. You are now connected to the remote server and are able to execute commands.
  3. Enter the following command to search for files with spaces in their name:
find /home -name "spaces in this filename" 2>/dev/null
Enter fullscreen modeExit fullscreen mode
  1. The output should show the path to the file with spaces in its name. In this case, the path is /home/bandit2/spaces in this filename.
  2. Enter the following command to read the contents of the file:
cat "/home/bandit2/spaces in this filename"
Enter fullscreen modeExit fullscreen mode
  1. The output should show the password for the next level: aBZ0W5EmUfAf7kHTQeOwd8bauFJ2lAiG.

Congratulations! You have successfully completed Bandit3 and gained access to the password for the next level.

Conclusion

In this level, we learned how to handle filenames with spaces in them and how to read the contents of a file with a space in its name. These are important skills to have when working with files in Linux command line, and mastering them will be useful for solving future levels in the OverTheWire Bandit wargame.

Top comments(0)

Subscribe
pic
Create template

Templates let you quickly answer FAQs or store snippets for re-use.

Dismiss

Are you sure you want to hide this comment? It will become hidden in your post, but will still be visible via the comment'spermalink.

For further actions, you may consider blocking this person and/orreporting abuse

Software and Data Science
  • Joined

More fromChristian Paez

DEV Community

We're a place where coders share, stay up-to-date and grow their careers.

Log in Create account

[8]ページ先頭

©2009-2025 Movatter.jp