RustScan


┌──(kali㉿kali)-[~/archive/htb/labs/apt]
└─$ 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.213:80
open 10.10.10.213:135

Nmap


┌──(kali㉿kali)-[~/archive/htb/labs/apt]
└─$ nmap -sC -sV -p- $IP
Starting Nmap 7.94 ( https://nmap.org ) at 2023-10-22 14:30 CEST
Nmap scan report for 10.10.10.213
Host is up (0.099s latency).
Not shown: 65533 filtered tcp ports (no-response)
PORT    STATE SERVICE VERSION
80/tcp  open  http    Microsoft IIS httpd 10.0
| http-methods: 
|_  Potentially risky methods: TRACE
|_http-server-header: Microsoft-IIS/10.0
|_http-title: Gigantic Hosting | Home
135/tcp open  msrpc   Microsoft Windows RPC
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 156.67 seconds

The target system appears to be a Windows

UDP


┌──(kali㉿kali)-[~/archive/htb/labs/apt]
└─$ sudo nmap -sU -top-ports 1000 $IP
starting nmap 7.94 ( https://nmap.org ) at 2023-10-22 14:29 CEST
Nmap scan report for 10.10.10.213
Host is up (0.096s latency).
All 1000 scanned ports on 10.10.10.213 are in ignored states.
not shown: 1000 open|filtered udp ports (no-response)
 
nmap done: 1 IP address (1 host up) scanned in 97.71 seconds
 
┌──(kali㉿kali)-[~/archive/htb/labs/apt]
└─$ sudo nmap -Pn -sU -top-ports 100 $IP
starting nmap 7.94 ( https://nmap.org ) at 2023-10-22 14:31 CEST
Nmap scan report for 10.10.10.213
Host is up.
All 100 scanned ports on 10.10.10.213 are in ignored states.
not shown: 100 open|filtered udp ports (no-response)
 
nmap done: 1 IP address (1 host up) scanned in 21.19 seconds

Nothing found