Bandit Level 18 Level 19
Christian Paez

Christian Paez @christianpaez

About: Software and Data Science

Joined:
Aug 3, 2020

Bandit Level 18 Level 19

Publish Date: Dec 17 '23
0 0

Introduction

In this level, we'll learn about SSH connections, command execution, and file retrieval.

Before we dive into this level, let's review the flag we obtained in the previous challenge:

hga5tuuCLF6fFzUpnagiMN8ssu9LFrdg

Step 1: SSH into the Server

Our first step is to SSH into the server. We'll use the following command to do so:

ssh bandit18@bandit.labs.overthewire.org -p 2220 -t '/bin/sh'
Enter fullscreen mode Exit fullscreen mode

This command connects us to the server, and we execute a shell to interact with it.

Step 2: Retrieve the Readme File

Once we've accessed the server, we need to retrieve the "readme" file. You can do this by executing:

cat readme
Enter fullscreen mode Exit fullscreen mode

This command will display the content of the "readme" file and the flag for the next level.

Flag: awhqfNnAbc1naukrpqDYcF95h7HoMTrC

Comments 0 total

    Add comment