RustScan


┌──(kali㉿kali)-[~/PEN-200/PG_PRACTICE/workaholic]
└─$ rustscan --no-banner --scripts none -a $IP 
 
Open 192.168.136.229:22
Open 192.168.136.229:21
Open 192.168.136.229:80
192.168.136.229 -> [22,21,80]

Nmap


┌──(kali㉿kali)-[~/PEN-200/PG_PRACTICE/workaholic]
└─$ nmap -Pn -p- -T5 --min-parallelism 100 --max-parallelism 100 $IP --open 
Starting Nmap 7.95 ( https://nmap.org ) at 2025-06-27 12:29 CEST
Nmap scan report for 192.168.136.229
Host is up (0.022s latency).
Not shown: 65505 filtered tcp ports (no-response), 27 closed tcp ports (reset)
Some closed ports may be reported as filtered due to --defeat-rst-ratelimit
PORT   STATE SERVICE
21/tcp open  ftp
22/tcp open  ssh
80/tcp open  http
 
Nmap done: 1 IP address (1 host up) scanned in 75.71 seconds
 
 
┌──(kali㉿kali)-[~/PEN-200/PG_PRACTICE/workaholic]
└─$ nmap -Pn -sC -sV -p21,22,80 $IP     
Starting Nmap 7.95 ( https://nmap.org ) at 2025-06-27 12:31 CEST
Nmap scan report for 192.168.136.229
Host is up (0.021s latency).
 
PORT   STATE SERVICE VERSION
21/tcp open  ftp     vsftpd 3.0.5
22/tcp open  ssh     OpenSSH 9.6p1 Ubuntu 3ubuntu13.9 (Ubuntu Linux; protocol 2.0)
| ssh-hostkey: 
|   256 f2:5a:a9:66:65:3e:d0:b8:9d:a5:16:8c:e8:16:37:e2 (ECDSA)
|_  256 9b:2d:1d:f8:13:74:ce:96:82:4e:19:35:f9:7e:1b:68 (ED25519)
80/tcp open  http    nginx 1.24.0 (Ubuntu)
|_http-trane-info: Problem with XML parsing of /evox/about
|_http-server-header: nginx/1.24.0 (Ubuntu)
|_http-title: Workaholic
|_http-generator: WordPress 6.7.2
Service Info: OSs: Unix, Linux; CPE: cpe:/o:linux:linux_kernel
 
Service detection performed. Please report any incorrect results at https://nmap.org/submit/ .
Nmap done: 1 IP address (1 host up) scanned in 18.10 seconds

The target system appears to be Ubuntu

UDP


┌──(kali㉿kali)-[~/PEN-200/PG_PRACTICE/workaholic]
└─$ sudo nmap -Pn -sU --top-ports 1000 $IP --open
[sudo] password for kali: 
Starting Nmap 7.95 ( https://nmap.org ) at 2025-06-27 12:32 CEST
Nmap scan report for 192.168.136.229
Host is up.
All 1000 scanned ports on 192.168.136.229 are in ignored states.
Not shown: 1000 open|filtered udp ports (no-response)
 
Nmap done: 1 IP address (1 host up) scanned in 207.03 seconds