RustScan


┌──(kali㉿kali)-[~/archive/htb/labs]
└─$ rustscan -a $IP -b 25000
________________________________________
: https://discord.gg/GFrQsGy           :
: https://github.com/RustScan/RustScan :
 --------------------------------------
🌍HACK THE PLANET🌍
 
[~] 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.10.191:80

Nmap


┌──(kali㉿kali)-[~/archive/htb/labs/blunder]
└─$ nmap -sC -sV -p- $IP           
Starting Nmap 7.94 ( https://nmap.org ) at 2023-09-18 12:45 CEST
Stats: 0:01:21 elapsed; 0 hosts completed (1 up), 1 undergoing Connect Scan
Connect Scan Timing: About 71.15% done; ETC: 12:47 (0:00:33 remaining)
Nmap scan report for 10.10.10.191
Host is up (0.025s latency).
Not shown: 65533 filtered tcp ports (no-response)
PORT   STATE  SERVICE VERSION
21/tcp closed ftp
80/tcp open   http    Apache httpd 2.4.41 ((Ubuntu))
|_http-server-header: Apache/2.4.41 (Ubuntu)
|_http-generator: Blunder
|_http-title: Blunder | A blunder of interesting facts
 
Service detection performed. Please report any incorrect results at https://nmap.org/submit/ .
Nmap done: 1 IP address (1 host up) scanned in 116.19 seconds

The target system appears to be Ubuntu Interestingly, the returned data include ftp service although it’s closed

UDP


┌──(kali㉿kali)-[~/archive/htb/labs/blunder]
└─$ sudo nmap -sU -top-ports 1000 $IP
starting nmap 7.94 ( https://nmap.org ) at 2023-09-18 12:46 CEST
Nmap scan report for 10.10.10.191
Host is up (0.024s latency).
not shown: 998 open|filtered udp ports (no-response)
PORT   STATE  SERVICE
21/udp closed ftp
80/udp closed http
 
nmap done: 1 IP address (1 host up) scanned in 16.45 seconds