TechTrainer11 Well-known member Aug 7, 2019 46 29 6,851 62 York Apr 24, 2024 #1 Apr 24, 2024 Add bookmark #1 When using nmap without the -p option how many ports are scanned? Reactions: Arshad Salim, Joel M, Fanuel and 1 other person
Michael Stout New member Sep 6, 2023 2 11 330 London michaelstout.com Apr 24, 2024 #2 Apr 24, 2024 Add bookmark #2 The default ports scanned are 1000 of the ports Nmap believe to be the most important. The -F scan will scan 100 ports. Other scanning options would be, using -p include Bash: $ nmap 192.168.0.9 -p80 $ nmap 192.168.0.9 -p0-1023 $ nmap 192.168.0.9 -p22,23,25,110,3389 $ nmap 192.168.0.9 -p0-65535 or my personal faviorite for all 65536 TCP ports Bash: $ nmap 192.168.0.9 -p- Last edited: Apr 26, 2024 Reactions: Eddy Harden, Joel M, Fanuel and 4 others
The default ports scanned are 1000 of the ports Nmap believe to be the most important. The -F scan will scan 100 ports. Other scanning options would be, using -p include Bash: $ nmap 192.168.0.9 -p80 $ nmap 192.168.0.9 -p0-1023 $ nmap 192.168.0.9 -p22,23,25,110,3389 $ nmap 192.168.0.9 -p0-65535 or my personal faviorite for all 65536 TCP ports Bash: $ nmap 192.168.0.9 -p-
TechTrainer11 Well-known member Aug 7, 2019 46 29 6,851 62 York Apr 25, 2024 #3 Apr 25, 2024 Add bookmark #3 Thank you
precious Well-known member Apr 22, 2024 256 125 5,801 Apr 27, 2024 #4 Apr 27, 2024 Add bookmark #4 TechTrainer11 said: When using nmap without the -p option how many ports are scanned? Click to expand... Also you can exercise practically with Reactions: TechTrainer11
TechTrainer11 said: When using nmap without the -p option how many ports are scanned? Click to expand... Also you can exercise practically with