RustScan


┌──(kali㉿kali)-[~/PEN-200/PG_PLAY/driftingblues6]
└─$ rustscan --no-banner --scripts none -a $IP 
 
Open 192.168.207.219:80
192.168.207.219 -> [80]

Nmap


┌──(kali㉿kali)-[~/PEN-200/PG_PLAY/driftingblues6]
└─$ nmap -Pn -p- -T5 --min-parallelism 100 --max-parallelism 100 $IP --open 
Starting Nmap 7.95 ( https://nmap.org ) at 2025-07-02 19:28 CEST
Nmap scan report for 192.168.207.219
Host is up (0.022s latency).
Not shown: 65534 closed tcp ports (reset)
PORT   STATE SERVICE
80/tcp open  http
 
Nmap done: 1 IP address (1 host up) scanned in 23.54 seconds
 
┌──(kali㉿kali)-[~/PEN-200/PG_PLAY/driftingblues6]
└─$ nmap -Pn -sC -sV -p80 $IP                   
Starting Nmap 7.95 ( https://nmap.org ) at 2025-07-02 19:29 CEST
Nmap scan report for 192.168.207.219
Host is up (0.019s latency).
 
PORT   STATE SERVICE VERSION
80/tcp open  http    Apache httpd 2.2.22 ((Debian))
| http-robots.txt: 1 disallowed entry 
|_/textpattern/textpattern
|_http-title: driftingblues
|_http-server-header: Apache/2.2.22 (Debian)
 
Service detection performed. Please report any incorrect results at https://nmap.org/submit/ .
Nmap done: 1 IP address (1 host up) scanned in 12.38 seconds

The target system appears to be Debian.

UDP


┌──(kali㉿kali)-[~/PEN-200/PG_PLAY/driftingblues6]
└─$ sudo nmap -Pn -sU -top-ports 1000 $IP
Starting Nmap 7.95 ( https://nmap.org ) at 2025-07-02 19:28 CEST
Nmap scan report for 192.168.207.219
Host is up (0.021s latency).
All 1000 scanned ports on 192.168.207.219 are in ignored states.
Not shown: 951 closed udp ports (port-unreach), 49 open|filtered udp ports (no-response)
 
Nmap done: 1 IP address (1 host up) scanned in 1036.83 seconds