> ## Documentation Index
> Fetch the complete documentation index at: https://hackwithmike.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Wingdata (Easy) - HTB

> Linux | Released on 14th February, 2026 | Created by WackyH4cker

## Starting the box

***

<img src="https://mintcdn.com/hackwithmike/X6APz888LBXjcLwO/assets/images/htb/wingdata/pwned.png?fit=max&auto=format&n=X6APz888LBXjcLwO&q=85&s=b74f89dc56b97c5fe7976a65275b4c54" noZoom width="1004" height="963" data-path="assets/images/htb/wingdata/pwned.png" />

Link to the box: [https://app.hackthebox.com/machines/wingdata](https://app.hackthebox.com/machines/wingdata)

### Port Scan

We start off the box by running a port scan on the provided IP.

```sh title="Attacker Linux" icon="linux" wrap theme={null}
rustscan --ulimit 5000 -a 10.129.5.219 -r 1-65535 -- -A -vvv -oN Wingdata
```

Output of Rustscan:

```text title="Terminal Output" icon="file-lines" wrap theme={null}
Open 10.129.5.219:22
Open 10.129.5.219:80
```

Output of Nmap:

```text title="Terminal Output" icon="file-lines" wrap theme={null}
PORT   STATE SERVICE REASON         VERSION
22/tcp open  ssh     syn-ack ttl 63 OpenSSH 9.2p1 Debian 2+deb12u7 (protocol 2.0)
| ssh-hostkey:
|   256 a1:fa:95:8b:d7:56:03:85:e4:45:c9:c7:1e:ba:28:3b (ECDSA)
| ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBL+8LZAmzRfTy+4t8PJxEvRWhPho8aZj9ImxRfWn9TKepkxh8pAF3WDu55pd/gaSUGIo9cuOvv+3r6w7IuCpqI4=
|   256 9c:ba:21:1a:97:2f:3a:64:73:c1:4c:1d:ce:65:7a:2f (ED25519)
|_ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIFFmcxflCAAe4LPgkg7hOxJen41bu6zaE/y08UnA4oRp
80/tcp open  http    syn-ack ttl 63 Apache httpd 2.4.66
|_http-server-header: Apache/2.4.66 (Debian)
|_http-title: WingData Solutions
| http-methods:
|_  Supported Methods: GET POST OPTIONS HEAD
```

A few key notes:

* Port 22 (SSH) is open, running `OpenSSH 9.2p1` — nothing useful without credentials.
* Port 80 (HTTP) is open, served by `Apache httpd 2.4.66`. The page title is **"WingData Solutions"** — a file sharing platform.
* OS is Linux (Debian), inferred from the TTL of 63.

### Edit the Hosts file

As always, we edit the `/etc/hosts` file to add the hostname:

```sh title="Attacker Linux" icon="linux" wrap theme={null}
sudo nano /etc/hosts
```

/etc/hosts:

```text title="/etc/hosts" icon="file-lines" wrap theme={null}
10.129.5.219 wingdata.htb
```

## Active Box

***

<Warning>This box is currently still active on Hack the Box - Full writeup will be available when the box is retired. Feel free to reach out to me on [LinkedIn](https://linkedin.com/in/michael-kh-chan) or [Discord](https://discord.com/users/631538127541895188) for nudges & sanity checks.</Warning>
