Machine Information
Attribute | Details |
|---|---|
Machine Name | Imagery |
IP Address | 10.10.11.88 |
Difficulty | Medium |
Operating System | Linux (Ubuntu) |
Key Techniques | XSS, Cookie Stealing, LFI, RCE, AES Cracking, Privilege Escalation |
Table of Contents
Reconnaissance
Port Scanning
Let's start by discovering open ports and services on the target:
nmap -T4 -A -v 10.10.11.88
Results:
Port 22: OpenSSH 9.7p1 (SSH service)
Port 8000: Werkzeug HTTP server (Python-based web application)
Web Enumeration
Add the hostname to your /etc/hosts file:
echo "10.10.11.88 imagery.htb" | sudo tee -a /etc/hosts
Navigate to http://imagery.htb:8000/ and explore the web application.

