RustScan


┌──(kali㉿kali)-[~/archive/htb/labs/aero]
└─$ rustscan -a $IP -b 25000
________________________________________
: https://discord.gg/GFrQsGy           :
: https://github.com/RustScan/RustScan :
 --------------------------------------
0day was here
 
[~] The config file is expected to be at "/home/kali/.rustscan.toml"
[~] Automatically increasing ulimit value to 5000.
[!] File limit is lower than default batch size. Consider upping with --ulimit. May cause harm to sensitive servers
open 10.10.11.237:80

Nmap


┌──(kali㉿kali)-[~/archive/htb/labs/aero]
└─$ nmap -p- $IP                             
Starting Nmap 7.94SVN ( https://nmap.org ) at 2024-01-16 08:08 CET
Nmap scan report for 10.10.11.237
Host is up (0.027s latency).
Not shown: 65534 filtered tcp ports (no-response)
PORT   STATE SERVICE
80/tcp open  http
 
Nmap done: 1 IP address (1 host up) scanned in 103.92 seconds
 
┌──(kali㉿kali)-[~/archive/htb/labs/aero]
└─$ nmap -sC -sV -p80 $IP              
Starting Nmap 7.94SVN ( https://nmap.org ) at 2024-01-16 08:10 CET
Nmap scan report for 10.10.11.237
Host is up (0.027s latency).
 
PORT   STATE SERVICE VERSION
80/tcp open  http    Microsoft IIS httpd 10.0
|_http-title: Aero Theme Hub
|_http-server-header: Microsoft-IIS/10.0
Service Info: OS: Windows; CPE: cpe:/o:microsoft:windows
 
Service detection performed. Please report any incorrect results at https://nmap.org/submit/ .
Nmap done: 1 IP address (1 host up) scanned in 11.60 seconds

The target system appears to be a Windows host

UDP


┌──(kali㉿kali)-[~/archive/htb/labs/aero]
└─$ sudo nmap -sU -top-ports 1000 $IP
starting nmap 7.94svn ( https://nmap.org ) at 2024-01-16 08:05 CET
Nmap scan report for 10.10.11.237
Host is up (0.027s latency).
All 1000 scanned ports on 10.10.11.237 are in ignored states.
not shown: 1000 open|filtered udp ports (no-response)
 
nmap done: 1 IP address (1 host up) scanned in 28.25 seconds