← Volver al Inicio

Nivel 0

Introducción a SSH y conexiones básicas 🚀

Descripción del Reto 💻

En este nivel, aprenderás a conectarte a un servidor remoto usando SSH. El objetivo es familiarizarte con el comando básico de conexión y explorar el entorno.

Información de Login 🔑

Pasos para Resolver el Nivel 🛠️

  1. Conéctate al servidor usando SSH:

    bash

    
    $ ssh bandit0@bandit.labs.overthewire.org -p 2220
    This is a OverTheWire game server. More information on http://www.overthewire.org/wargamesbandit0@bandit.labs.overthewire.org's password:
    bandit0
                        
  2. Buscamos la contraseña para el siguiente nivel:

    bash

    
    bandit0@bandit:~$ ls
    readme
    bandit0@bandit:~$ cat readme 
    Congratulations on your first steps into the bandit game!!
    Please make sure you have read the rules at https://overthewire.org/rules/
    If you are following a course, workshop, walkthrough or other educational activity,
    please inform the instructor about the rules as well and encourage them to
    contribute to the OverTheWire community so we can keep these games free!
                            
    The password you are looking for is: ZjLjTmM6FvvyRnrb2rfNWOZOTa6ip5If
                            
    bandit0@bandit:~$ 
                        

Resultado Esperado 🎉

Después de completar los pasos, habrás accedido al servidor y explorado el entorno inicial. Este nivel es solo el comienzo de tu viaje en Bandit.