diff --git a/docs/man-xlate/nmap-man-de.xml b/docs/man-xlate/nmap-man-de.xml index db8c6e878..9aec6f492 100644 --- a/docs/man-xlate/nmap-man-de.xml +++ b/docs/man-xlate/nmap-man-de.xml @@ -182,7 +182,7 @@ PORT SPECIFICATION AND SCAN ORDER: -p <port ranges>: Only scan specified ports Ex: -p22; -p1-65535; -p U:53,111,137,T:21-25,80,139,8080 -F: Fast mode - Scan fewer ports than the default scan - -r: Scan ports consecutively - don't randomize + -r: Scan ports sequentially - don't randomize --top-ports <number>: Scan <number> most common ports --port-ratio <ratio>: Scan ports more common than <ratio> SERVICE/VERSION DETECTION: diff --git a/docs/man-xlate/nmap-man-id.xml b/docs/man-xlate/nmap-man-id.xml index fe0687873..c94c0435d 100644 --- a/docs/man-xlate/nmap-man-id.xml +++ b/docs/man-xlate/nmap-man-id.xml @@ -189,7 +189,7 @@ PORT SPECIFICATION AND SCAN ORDER: -p <port ranges>: Only scan specified ports Ex: -p22; -p1-65535; -p U:53,111,137,T:21-25,80,139,8080 -F: Fast mode - Scan fewer ports than the default scan - -r: Scan ports consecutively - don't randomize + -r: Scan ports sequentially - don't randomize --top-ports <number>: Scan <number> most common ports --port-ratio <ratio>: Scan ports more common than <ratio> SERVICE/VERSION DETECTION: diff --git a/docs/man-xlate/nmap-man-it.xml b/docs/man-xlate/nmap-man-it.xml index 14c8c674e..cbbc1ebd3 100644 --- a/docs/man-xlate/nmap-man-it.xml +++ b/docs/man-xlate/nmap-man-it.xml @@ -193,7 +193,7 @@ PORT SPECIFICATION AND SCAN ORDER: Ex: -p22; -p1-65535; -p U:53,111,137,T:21-25,80,139,8080,S:9 --exclude-ports <port ranges>: Exclude the specified ports from scanning -F: Fast mode - Scan fewer ports than the default scan - -r: Scan ports consecutively - don't randomize + -r: Scan ports sequentially - don't randomize --top-ports <number>: Scan <number> most common ports --port-ratio <ratio>: Scan ports more common than <ratio> SERVICE/VERSION DETECTION: diff --git a/docs/man-xlate/nmap-man-ja.xml b/docs/man-xlate/nmap-man-ja.xml index 213fbb504..b923e5dd9 100644 --- a/docs/man-xlate/nmap-man-ja.xml +++ b/docs/man-xlate/nmap-man-ja.xml @@ -121,7 +121,7 @@ PORT SPECIFICATION AND SCAN ORDER: -p <port ranges>: Only scan specified ports Ex: -p22; -p1-65535; -p U:53,111,137,T:21-25,80,139,8080 -F: Fast - Scan only the ports listed in the nmap-services file) - -r: Scan ports consecutively - don't randomize + -r: Scan ports sequentially - don't randomize SERVICE/VERSION DETECTION: -sV: Probe open ports to determine service/version info --version-light: Limit to most likely probes for faster identification diff --git a/docs/man-xlate/nmap-man-pt_BR.xml b/docs/man-xlate/nmap-man-pt_BR.xml index 33e241192..692920da8 100644 --- a/docs/man-xlate/nmap-man-pt_BR.xml +++ b/docs/man-xlate/nmap-man-pt_BR.xml @@ -210,7 +210,7 @@ PORT SPECIFICATION AND SCAN ORDER: -p <port ranges>: Only scan specified ports Ex: -p22; -p1-65535; -p U:53,111,137,T:21-25,80,139,8080 -F: Fast - Scan only the ports listed in the nmap-services file) - -r: Scan ports consecutively - don't randomize + -r: Scan ports sequentially - don't randomize SERVICE/VERSION DETECTION: -sV: Probe open ports to determine service/version info --version-intensity <level>: Set from 0 (light) to 9 (try all probes) diff --git a/docs/man-xlate/nmap-man-ro.xml b/docs/man-xlate/nmap-man-ro.xml index b7f4c85fb..bdaa230b9 100644 --- a/docs/man-xlate/nmap-man-ro.xml +++ b/docs/man-xlate/nmap-man-ro.xml @@ -166,7 +166,7 @@ <ftp relay host>: FTP bounce scan PORT SPECIFICATION AND SCAN ORDER: -p <port ranges>: Only scan specified ports Ex: -p22; -p1-65535; -p U:53,111,137,T:21-25,80,139,8080 -F: Fast - Scan only the - ports listed in the nmap-services file) -r: Scan ports consecutively - + ports listed in the nmap-services file) -r: Scan ports sequentially - don't randomize SERVICE/VERSION DETECTION: -sV: Probe open ports to determine service/version info --version-light: Limit to most likely probes for faster identification --version-all: Try every single probe diff --git a/docs/man-xlate/nmap-man-zh.xml b/docs/man-xlate/nmap-man-zh.xml index dd6677b2a..a95ff0d11 100644 --- a/docs/man-xlate/nmap-man-zh.xml +++ b/docs/man-xlate/nmap-man-zh.xml @@ -152,7 +152,7 @@ PORT SPECIFICATION AND SCAN ORDER: -p <port ranges>: Only scan specified ports Ex: -p22; -p1-65535; -p U:53,111,137,T:21-25,80,139,8080 -F: Fast - Scan only the ports listed in the nmap-services file) - -r: Scan ports consecutively - don't randomize + -r: Scan ports sequentially - don't randomize SERVICE/VERSION DETECTION: -sV: Probe open ports to determine service/version info --version-light: Limit to most likely probes for faster identification diff --git a/nmap.cc b/nmap.cc index 5aa21b87a..84d5e53eb 100644 --- a/nmap.cc +++ b/nmap.cc @@ -228,7 +228,7 @@ static void printusage() { " Ex: -p22; -p1-65535; -p U:53,111,137,T:21-25,80,139,8080,S:9\n" " --exclude-ports : Exclude the specified ports from scanning\n" " -F: Fast mode - Scan fewer ports than the default scan\n" - " -r: Scan ports consecutively - don't randomize\n" + " -r: Scan ports sequentially - don't randomize\n" " --top-ports : Scan most common ports\n" " --port-ratio : Scan ports more common than \n" "SERVICE/VERSION DETECTION:\n"