RustScan


┌──(kali㉿kali)-[~/PEN-200/PG_PRACTICE/twiggy]
└─$ rustscan -a $IP
________________________________________
: http://discord.skerritt.blog         :
: https://github.com/RustScan/RustScan :
 --------------------------------------
I scanned my computer so many times, it thinks we're dating.
 
[~] The config file is expected to be at "/home/kali/.rustscan.toml"
[~] Automatically increasing ulimit value to 10000.
Open 192.168.113.62:22
Open 192.168.113.62:53
Open 192.168.113.62:80
Open 192.168.113.62:4505
Open 192.168.113.62:4506
Open 192.168.113.62:8000

Nmap


┌──(kali㉿kali)-[~/PEN-200/PG_PRACTICE/twiggy]
└─$ nmap -p- -T5 --min-parallelism 100 --max-parallelism 256 $IP
Starting Nmap 7.95 ( https://nmap.org ) at 2025-03-10 23:01 CET
Nmap scan report for 192.168.113.62
Host is up (0.022s latency).
Not shown: 65529 filtered tcp ports (no-response)
PORT     STATE SERVICE
22/tcp   open  ssh
53/tcp   open  domain
80/tcp   open  http
4505/tcp open  unknown
4506/tcp open  unknown
8000/tcp open  http-alt
 
Nmap done: 1 IP address (1 host up) scanned in 70.86 seconds
 
 
┌──(kali㉿kali)-[~/PEN-200/PG_PRACTICE/twiggy]
└─$ nmap -p- -sC -sV -T5 --min-parallelism 100 --max-parallelism 256 $IP       
Starting Nmap 7.95 ( https://nmap.org ) at 2025-03-10 23:02 CET
Nmap scan report for 192.168.113.62
Host is up (0.020s latency).
Not shown: 65529 filtered tcp ports (no-response)
PORT     STATE SERVICE VERSION
22/tcp   open  ssh     OpenSSH 7.4 (protocol 2.0)
| ssh-hostkey: 
|   2048 44:7d:1a:56:9b:68:ae:f5:3b:f6:38:17:73:16:5d:75 (RSA)
|   256 1c:78:9d:83:81:52:f4:b0:1d:8e:32:03:cb:a6:18:93 (ECDSA)
|_  256 08:c9:12:d9:7b:98:98:c8:b3:99:7a:19:82:2e:a3:ea (ED25519)
53/tcp   open  domain  NLnet Labs NSD
80/tcp   open  http    nginx 1.16.1
|_http-server-header: nginx/1.16.1
|_http-title: Home | Mezzanine
4505/tcp open  zmtp    ZeroMQ ZMTP 2.0
4506/tcp open  zmtp    ZeroMQ ZMTP 2.0
8000/tcp open  http    nginx 1.16.1
|_http-title: Site doesn't have a title (application/json).
|_http-open-proxy: Proxy might be redirecting requests
|_http-server-header: nginx/1.16.1
 
Service detection performed. Please report any incorrect results at https://nmap.org/submit/ .
Nmap done: 1 IP address (1 host up) scanned in 73.88 seconds

UDP


┌──(kali㉿kali)-[~/PEN-200/PG_PRACTICE/twiggy]
└─$ sudo nmap -sU -Pn -top-ports 1000 $IP
Starting Nmap 7.95 ( https://nmap.org ) at 2025-03-10 23:01 CET
Nmap scan report for 192.168.113.62
Host is up.
All 1000 scanned ports on 192.168.113.62 are in ignored states.
Not shown: 1000 open|filtered udp ports (no-response)
 
Nmap done: 1 IP address (1 host up) scanned in 201.51 seconds