web-dev-qa-db-ja.com

結果が見つかったときにnmapの結果を徐々に表示する

nmapの結果を取得するには、スキャンの終了を待つ必要があります。

実行中にnmapに、新しく見つかったホストと開いているポートを徐々に表示するように強制するにはどうすればよいですか?

10
user123456

次のコマンドラインスイッチを追加します。

-v (Increase verbosity level) .

    Increases the verbosity level, causing Nmap to print more information about 
    the scan in progress. Open ports are shown as they are found and completion 
    time estimates are provided when Nmap thinks a scan will take more than a few 
    minutes. Use it twice or more for even greater verbosity: -vv, or give a 
    verbosity level directly, for example -v3..

出典: https://nmap.org/book/man-output.html

18
jftuga