1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
| kali㉿kali)-[~]
└─$ sudo nmap -p- -sV 104.16.65.50
[sudo] password for kali:
Starting Nmap 7.92 ( https://nmap.org ) at 2025-01-21 14:48 WIB
Nmap scan report for 104.16.65.50
Host is up (0.071s latency).
Not shown: 65522 filtered tcp ports (no-response)
PORT STATE SERVICE VERSION
80/tcp open http Cloudflare http proxy
443/tcp open ssl/http Cloudflare http proxy
2052/tcp open http Cloudflare http proxy
2053/tcp open ssl/http nginx
2082/tcp open http Cloudflare http proxy
2083/tcp open ssl/http nginx
2086/tcp open http Cloudflare http proxy
2087/tcp open ssl/http nginx
2095/tcp open http Cloudflare http proxy
2096/tcp open ssl/http nginx
8080/tcp open http Cloudflare http proxy
8443/tcp open ssl/http Cloudflare http proxy
8880/tcp open http Cloudflare http proxy
Service detection performed. Please report any incorrect results at https://nmap.org/submit/ .
Nmap done: 1 IP address (1 host up) scanned in 156.03 seconds.
another command,
`````
$ sudo nmap Target_IP_Address/24
$ nmap -sP -vv --packet-trace 10.10.209.108
$ nmap -A -Pn -p 443 targetdomain.com.
user this command to scan
$ $ nmap -sV -sC 116.206.232.173
after get the result, you can use this command to get deep information port
$ nmap 116.0.0.0 -Pn -p 80,443,3306 -sV -A
|