Bandit Level 15 Level 16

christianpaez

Christian Paez

Posted on November 30, 2023

Bandit Level 15 Level 16

Introduction

Welcome to another level of the OverTheWire Bandit challenges! In this level, we will continue our journey to enhance our Linux and ethical hacking skills.

Previous Flag

In the previous challenge, we successfully retrieved the flag:

Flag: jN2kgmIXJ6fShzhT2avhotn4Zcka6tnt

Scanning for Open Ports

We will use thenmap command to scan for open ports on the local machine.

nmap -p 30001 localhost
Enter fullscreen mode Exit fullscreen mode

The output should indicate that port 30001 is open and that there is an openSSL service running on it.

Establishing an SSL Connection

With port 30001 identified as an open port, let's establish an SSL connection using the openssl command:

openssl s_client localhost:30001
Enter fullscreen mode Exit fullscreen mode

This command initiates an SSL/TLS session and displays the flag for the next level.

Flag: JQttfApK4SeyHwDlI9SXGR50qclOAil1

💖 💪 🙅 🚩
christianpaez
Christian Paez

Posted on November 30, 2023

Join Our Newsletter. No Spam, Only the good stuff.

Sign up to receive the latest update from our blog.

Related

Bandit Level 21 Level 22
ctf Bandit Level 21 Level 22

January 2, 2024

Bandit Level 20 Level 21
ctf Bandit Level 20 Level 21

December 27, 2023

Bandit Level 19 Level 20
ctf Bandit Level 19 Level 20

December 17, 2023

Bandit Level 18 Level 19
ctf Bandit Level 18 Level 19

December 17, 2023

Bandit Level 17 Level 18
ctf Bandit Level 17 Level 18

December 13, 2023