Avatar
Part time CTF Player learn every day!!
🌠 I Love Hoshimachi Suisei!! 🌠
🌠 I Love Hoshimachi Suisei!! 🌠

OverTheWire Utumno Level 0 tutorial!!

Login

  • This is the Utumno server login info (from the official page).
  • You get the host, port, username, and password.
ssh utumno0@utumno.labs.overthewire.org -p 2227
# password: utumno0

Task

Log into the Utumno game using SSH. Your goal for this first level is simply to connect successfully to the remote machine.

A little bit of Theory

  • SSH (Secure Shell Protocol) lets you connect securely to a remote Linux machine.

  • The syntax is:

    ssh <username>@<server> -p <port>
    

    Here:

    • utumno0 is the username.
    • utumno.labs.overthewire.org is the host.
    • -p 2227 specifies the custom port (default SSH is 22).
  • On Windows: use WSL, PowerShell, or PuTTY.

  • On Linux/macOS: just open the built-in Terminal.

  • Once connected, you’ll land in the user’s home directory.

Further reading:

Solution

  1. Open a terminal.

  2. Run the SSH command:

    ssh utumno0@utumno.labs.overthewire.org -p 2227
    

    Why? This starts a secure session as user utumno0 on port 2227.

  3. Accept the host key (first-time prompt):

    The authenticity of host ... can't be established.
    Are you sure you want to continue connecting (yes/no/[fingerprint])?
    

    Type yes. Why? SSH stores the server’s fingerprint in ~/.ssh/known_hosts for future verification.

  4. Enter the password (hidden input):

    utumno0
    

    Why? SSH doesn’t echo characters for security.

    Ssh

  5. Verify you’re logged in as utumno0 — the shell prompt should look like:

    utumno0@utumno:~$
    

    Optionally confirm:

    whoami   # should print: utumno0
    pwd      # should print: /home/utumno0 (or similar)
    
  6. Disconnect when done:

    exit
    

    Why? Cleanly closes the session.

Troubleshooting quick tips

  • ssh: connect to host ... port 2227: Connection timed out → Check your internet/firewall; don’t forget -p 2227.
  • Permission denied → Double-check username (utumno0) and password (utumno0).
  • Host key verification failed → Remove old entry in ~/.ssh/known_hosts then retry.

Congrats 🎉 You’re now logged in as utumno0 and ready for the next level.


Thanks for reading!

Until next time — Otsumachi!! 💖☄️✨

Cinema

all tags

GOT-overwrite aboutme aead ai alphanumeric-shellcode apt argc0 argon2 aslr assembly asymmetric atoi automation backbox bandit base64 bash beginner behemoth binary binary-exploitation binary-to-ascii blackarch blind blind-sqli blogging blue-team bruteforce buffer-overflow buffer-overwrite c caesar canary capabilities checksec command-injection commonmark cookie cron crypto cryptography ctf cutter cyberchef cybersecurity defenders detection dev directory-traversal dnf docs drifter ecc education elf env envp exploitation finale forensics format-string formulaone frequency frequency-analysis gcc gdb getchar gfm ghidra github-pages governance gpg guide hashing hkdf http jekyll jmpbuf kali kasiski kdf kernel keylength kramdown krypton lab ld_preload leviathan lfi lfsr linux linux-syscall llmops log-poisoning ltrace manpage markdown maze memcpy mitigations mitmproxy mlops narnia natas networking newline-injection nonce nop-sled nx object-injection obsidian openssl osint overflow overthewire package-manager pacman parrot path path-hijacking pathname php pie pkc pki pointer-trick pqc priv-esc privilege-escalation provable-security pwn pwntools pyshark python race-condition radare2 rag randomness recon red-team redirect relro requests ret2env ret2libc reverse-engineering reversing ricing roadmap rop rot13 rsa scapy security seed seo serialization session setjmp-longjmp setuid shell shellcode smoke soc sockets sprintf sql-injection srop stack-canary stack-overflow strace strcmp strcpy streamcipher strings strncpy strtoul substitution suid suisei symlink symmetric terminal test threat-intel time-based tls troubleshooting tshark type-juggling ubuntu udp utumno vigenere virtualbox virtualization vmware vortex walkthrough web windows wireshark writing wsl x86
dash theme for Jekyll by bitbrain made with