Advertisement
Guest User

Top ports tests

a guest
Aug 14th, 2016
224
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.47 KB | None | 0 0
  1.  
  2. *******$ sudo ./nmap -sU -sT --top-ports 3 -p 18,U:11,S:2 127.0.0.1
  3.  
  4. Starting Nmap 7.25SVN ( https://nmap.org ) at 2016-08-14 17:15 CEST
  5. SCAN_TYPES> TCP:1, UDP:1, SCTP:0
  6. portlist:
  7. TCP> 18 | 80, 23, 443
  8. UDP> 11, 18 | 631, 161, 137
  9. SCTP> 2
  10.  
  11. Nmap scan report for localhost (127.0.0.1)
  12. Host is up (0.00014s latency).
  13. PORT STATE SERVICE
  14. 18/tcp closed unknown
  15. 23/tcp closed telnet
  16. 80/tcp open http
  17. 443/tcp closed https
  18. 11/udp closed systat
  19. 18/udp closed msp
  20. 137/udp open|filtered netbios-ns
  21. 161/udp closed snmp
  22. 631/udp closed ipp
  23.  
  24. Nmap done: 1 IP address (1 host up) scanned in 1.27 seconds
  25.  
  26. ---------------------------------------------------------------------------------
  27.  
  28. *******$ sudo ./nmap -sU -sT --top-ports 3 -p U:11,2 127.0.0.1
  29.  
  30. Starting Nmap 7.25SVN ( https://nmap.org ) at 2016-08-14 17:16 CEST
  31. SCAN_TYPES> TCP:1, UDP:1, SCTP:0
  32. portlist:
  33. TCP> | 80, 23, 443
  34. UDP> 2, 11 | 631, 161, 137
  35. SCTP>
  36.  
  37. Nmap scan report for localhost (127.0.0.1)
  38. Host is up (0.00013s latency).
  39. PORT STATE SERVICE
  40. 23/tcp closed telnet
  41. 80/tcp open http
  42. 443/tcp closed https
  43. 2/udp closed compressnet
  44. 11/udp closed systat
  45. 137/udp open|filtered netbios-ns
  46. 161/udp closed snmp
  47. 631/udp closed ipp
  48.  
  49. Nmap done: 1 IP address (1 host up) scanned in 1.26 seconds
  50.  
  51. ---------------------------------------------------------------------------------
  52.  
  53. *******$ sudo ./nmap -sU --top-ports 3 -p 21 127.0.0.1
  54.  
  55. Starting Nmap 7.25SVN ( https://nmap.org ) at 2016-08-14 17:16 CEST
  56. SCAN_TYPES> TCP:0, UDP:1, SCTP:0
  57. portlist:
  58. TCP>
  59. UDP> 21 | 631, 161, 137
  60. SCTP>
  61.  
  62. Nmap scan report for localhost (127.0.0.1)
  63. Host is up (0.000048s latency).
  64. PORT STATE SERVICE
  65. 21/udp closed ftp
  66. 137/udp open|filtered netbios-ns
  67. 161/udp closed snmp
  68. 631/udp closed ipp
  69.  
  70. Nmap done: 1 IP address (1 host up) scanned in 1.26 seconds
  71.  
  72. ---------------------------------------------------------------------------------
  73.  
  74. *******$ sudo ./nmap --top-ports 10 -p 12354 127.0.0.1
  75.  
  76. Starting Nmap 7.25SVN ( https://nmap.org ) at 2016-08-14 17:17 CEST
  77. SCAN_TYPES> TCP:1, UDP:0, SCTP:0
  78. portlist:
  79. TCP> 12354 | 80, 23, 443, 21, 22, 25, 3389, 110, 445, 139
  80. UDP>
  81. SCTP>
  82.  
  83. Nmap scan report for localhost (127.0.0.1)
  84. Host is up (0.000044s latency).
  85. PORT STATE SERVICE
  86. 21/tcp closed ftp
  87. 22/tcp closed ssh
  88. 23/tcp closed telnet
  89. 25/tcp closed smtp
  90. 80/tcp open http
  91. 110/tcp closed pop3
  92. 139/tcp closed netbios-ssn
  93. 443/tcp closed https
  94. 445/tcp closed microsoft-ds
  95. 3389/tcp closed ms-wbt-server
  96. 12354/tcp closed unknown
  97.  
  98. Nmap done: 1 IP address (1 host up) scanned in 0.03 seconds
  99.  
  100. ---------------------------------------------------------------------------------
  101.  
  102. *******$ sudo ./nmap --top-ports 10 -p 21,22,23 127.0.0.1
  103.  
  104. Starting Nmap 7.25SVN ( https://nmap.org ) at 2016-08-14 17:18 CEST
  105. SCAN_TYPES> TCP:1, UDP:0, SCTP:0
  106. portlist:
  107. TCP> 21, 22, 23 | 80, 23, 443, 21, 22, 25, 3389, 110, 445, 139
  108. UDP>
  109. SCTP>
  110.  
  111. Nmap scan report for localhost (127.0.0.1)
  112. Host is up (0.000044s latency).
  113. PORT STATE SERVICE
  114. 21/tcp closed ftp
  115. 22/tcp closed ssh
  116. 23/tcp closed telnet
  117. 25/tcp closed smtp
  118. 80/tcp open http
  119. 110/tcp closed pop3
  120. 139/tcp closed netbios-ssn
  121. 443/tcp closed https
  122. 445/tcp closed microsoft-ds
  123. 3389/tcp closed ms-wbt-server
  124.  
  125. Nmap done: 1 IP address (1 host up) scanned in 0.05 seconds
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement