Post

Expressway HackTheBox

Expressway HackTheBox

Expressway

During an initial scan, only the SSH port appears to be open.

alt text

To enumerate further, run:

1
sudo nmap -p 1-1000 10.10.11.87 -sS -Pn -d3

This helps identify all closed and UDP ports.

We discover:

1
500/tcp  closed isakmp  reset ttl 63

This is interesting.

ISAKMP stands for Internet Security Association and Key Management Protocol. It is used to establish, negotiate, and manage security associations (SAs) for IPsec connections.


Exploiting ISAKMP

alt text

I used ike-scan to enumerate further.

We find a username and domain:
ike@expressway.htb
Add this to /etc/hosts for easier access.


Cracking Credentials

There are several methods to crack the credentials.

alt text alt text

You can use either approach to obtain the password.

alt text


SSH Access

Once you have the username and password, try accessing SSH.

alt text alt text


Privilege Escalation

I ran LinPEAS on the machine to identify vulnerabilities.

alt text

A vulnerability in sudo was discovered:

CVE‑2025‑32463
Reference: GitHub - CVE-2025-32463

alt text

Transfer the exploit payload to your attack box and proceed with privilege escalation.

This post is licensed under CC BY 4.0 by the author.

Trending Tags