LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   Nmap_slow_comprehensive_scan show list of unknown udp ports (https://www.linuxquestions.org/questions/linux-newbie-8/nmap_slow_comprehensive_scan-show-list-of-unknown-udp-ports-4175508344/)

Pavan Kumar Reddy 06-18-2014 03:34 AM

Nmap_slow_comprehensive_scan show list of unknown udp ports
 
While doing nmap slow comprehensive scan to device a list of unkonw upd ports are shown as follow

Why would these UDP Ports be open?
Zenmap found these open.

17077/udp open|filtered unknown
17459/udp open|filtered unknown
19632/udp open|filtered unknown
19647/udp open|filtered unknown
21320/udp open|filtered unknown
21524/udp open|filtered unknown
22341/udp open|filtered unknown
36384/udp open|filtered unknown
38412/udp open|filtered unknown

Please can any one explain regarding the same.

Thanks
Pavan

bathory 06-18-2014 06:32 AM

Hi,

You can run:
Code:

netstat -uanpl
to find what uses these ports

Regards

Pavan Kumar Reddy 06-18-2014 07:01 AM

Hi bathory,

I can't find any above mentioned port through the command "netstat -anpul", but still they are showing under nmap slow scna.

Thanks
Pavan

bathory 06-18-2014 07:37 AM

Quote:

Originally Posted by Pavan Kumar Reddy (Post 5189840)
I can't find any above mentioned port through the command "netstat -anpul", but still they are showing under nmap slow scna.

You should run it as root, or else you won't get the process name
You can also use the lsof command (as root):
Code:

lsof|grep UDP

Pavan Kumar Reddy 06-18-2014 07:46 AM

Yes, I am running that command in root itself, and I have found that the ports which are shown in nmap scna are not listed in tc/udp ports, please find in the following link "http://en.wikipedia.org/wiki/List_of...P_port_numbers"

bathory 06-18-2014 08:02 AM

Quote:

Originally Posted by Pavan Kumar Reddy (Post 5189869)
Yes, I am running that command in root itself, and I have found that the ports which are shown in nmap scna are not listed in tc/udp ports, please find in the following link "http://en.wikipedia.org/wiki/List_of...P_port_numbers"

They are not listed, because they are not standard ports.
You can find the standard ports and their associated services in /etc/services.

Pavan Kumar Reddy 06-18-2014 08:32 AM

Thanks bathory, just I want to confirm one thing, when ever I am doing nmap scan to my device IP, the scan o/p is showing list of of unknow ports as mentioned above, so is that a problem with my device or it is bug???

bathory 06-18-2014 08:47 AM

Quote:

Originally Posted by Pavan Kumar Reddy (Post 5189895)
Thanks bathory, just I want to confirm one thing, when ever I am doing nmap scan to my device IP, the scan o/p is showing list of of unknow ports as mentioned above, so is that a problem with my device or it is bug???

It's not a bug or a problem per se, but perhaps you should use the commands above, in order to investigate further what services are running on these ports.

Pavan Kumar Reddy 06-18-2014 08:59 AM

Thanks a lot......:)


All times are GMT -5. The time now is 08:50 AM.