root@thehacksparrow:~/writeups$ SYSTEM ONLINE
root@sparrow:~/writeups$ cat access.md
// writeups

Access

29 Sep 2018 · 8 min read · root access
Access - maquina de Hack The Box

Executive summary — Access is an Easy Windows box of pure file forensics: an anonymous FTP exposes a Microsoft Access database (.mdb) and a ZIP; the .mdb yields the ZIP password, and inside the ZIP is an Outlook mail file (.pst) with security's password. We log in via telnet, and escalation uses saved Administrator credentials (runas /savecred). A FTP → mdb/pst → telnet → runas → Admin path.

PlatformHack The Box
Operating systemWindows
DifficultyEasy
StatusRetired
Target IP10.129.23.42

Attack map

[80] HTTP — static site, no functionality (not the vector)
   │
[21] anonymous FTP → backup.mdb (Access DB) + «Access Control.zip»
   │  mdbtools → ZIP password (access4u@security)
   │  the ZIP contains a .pst (Outlook) → readpst → «security» password
   ▼
[23] telnet as security  (user.txt)
   │  cmdkey /list → SAVED Administrator credentials
   ▼
[ADMIN]  runas /savecred /user:Administrator

1. Reconnaissance

The target has an internal domain name (access.htb). Even though the bare IP already works, it's good practice to map it in /etc/hosts in case any service depends on the Host: header:

echo "10.129.23.42 access.htb" | sudo tee -a /etc/hosts

With the domain resolving, we run a port scan with service detection and default scripts:

nmap -sC -sT -sV access.htb

What we're looking for: which services are open, whether there are weak configurations (anonymous logins, outdated banners), and possible entry vectors.

PortServiceObservation
21FTPAnonymous login allowed
23TelnetRemote access — interesting, cleartext
80HTTPBasic web
🔒 Clearance required

This content is Root Access only. Everything else on the site — the free tier, the whole public library — stays open.

See Root Access plans

No account? Create one free then upgrade from your console.