web-dev-qa-db-ja.com

nmapのデフォルトのタイミング値は何ですか?

私はよくnmapを使用してネットワークをスキャンしますが、スキャンのタイミングを調整する必要がある場合もあります。残念ながら、私のタイミング実験はほとんど役に立たなかった。おそらく、必要なものに比べて完全に昼食に出ている値を使用しているためだろう。

nmapのデフォルト値から始めて、そこから調整すると、もっと多くの成功を収めることができると思います。ただし、ドキュメント(またはnmapコマンドライン)のどこにも、デフォルト値を表示する方法を見つけることができません。

これは、デフォルトを持つべき値のコマンドラインヘルプテキストからのクイックリストです:

--min-hostgroup/max-hostgroup <size>: Parallel Host scan group sizes
--min-parallelism/max-parallelism <numprobes>: Probe parallelization
--min-rtt-timeout/max-rtt-timeout/initial-rtt-timeout <time>: Specifies
    probe round trip time.
--max-retries <tries>: Caps number of port scan probe retransmissions.
--Host-timeout <time>: Give up on target after this long
--scan-delay/--max-scan-delay <time>: Adjust delay between probes
--min-rate <number>: Send packets no slower than <number> per second
--max-rate <number>: Send packets no faster than <number> per second
--ttl <val>: Set IP time-to-live field
--version-intensity <level>: Set from 0 (light) to 9 (try all probes)

...これらの値のデフォルトを見つけるにはどうすればよいですか?

1
Daniel Griscom

Nmap-manualとnmap-bookで次の値を見つけました

https://nmap.org/book/performance-timing-templates.html

https://nmap.org/book/man-performance.html


--min-hostgroup/max-hostgroup

最小:5最大:1024

--min-parallelism/max-parallelism

デフォルトでは、Nmapは、ネットワークパフォーマンスに基づいて絶えず変化する理想的な並列処理を計算します

--min-rtt-timeout/max-rtt-timeout/initial-rtt-timeout

最小:100最大:10000初期:1000

--max-retries

10

-ホストタイムアウト

--scan-delay /-max-scan-delay

初期:0最大:1000

--min-rate/--max-rate

最小レート制限なし、最大レート制限なし

--ttl

64

-バージョン強度

7

2
Manuel