Masscan
Kali Tool

MASSCANポート スキャナー

Last Updated on 2023年11月26日 by Dotmatrix

ツールの説明ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー

 

MASSCAN は高速ポート スキャナーです。

MASSCAN は、SYN パケットを非同期で送信し、最も有名なポート スキャナである nmap と同様の結果を生成する TCP ポート スキャナです。内部的には、非同期送信を使用して、scanrand、unicornscan、ZMap と同様に動作します。これは、任意のアドレスとポート範囲を許可する柔軟なユーティリティです。

 

 

URLーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー

 

https://github.com/robertdavidgraham/masscan

 

使用方法ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー

root@kali:~# masscan -p22,80,445 192.168.1.0/24
Starting masscan 1.0.3 (http://bit.ly/14GZzcT) at 2014-05-13 21:35:12
GMT — forced options: -sS -Pn -n –randomize-hosts -v –send-eth
Initiating SYN Stealth Scan
Scanning 256 hosts [3 ports/host]
Discovered open port 22/tcp on 192.168.1.217
Discovered open port 445/tcp on 192.168.1.220

翻訳ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー

 

$mascan –ヘルプ

MASSCAN は高速ポート スキャナーです。 主な入力パラメータは次のとおりです。

スキャンする IP アドレス/範囲、およびポート番号。 例

これは、10.x.x.x ネットワークで Web サーバーをスキャンします。

マススキャン 10.0.0.0/8 -p80

プログラムはネットワーク インターフェイス/アダプターの設定を自動検出します。 これなら

失敗した場合は、これらを手動で設定する必要があります。 以下は、

必要なすべてのパラメータの例:

–アダプター IP 192.168.10.123

–adapter-mac 00-11-22-33-44-55

–router-mac 66-55-44-33-22-11

パラメータはコマンドラインまたは構成ファイルを介して設定できます。 の

名前は両方とも同じです。 したがって、上記のアダプター設定は、

構成ファイルでは次のようになります。

アダプター IP = 192.168.10.123

アダプター-mac = 00-11-22-33-44-55

ルーター-mac = 66-55-44-33-22-11

すべての一重ダッシュのパラメータには、二重ダッシュに相当するスペル表記があります。

したがって、「-p80」は「–ports 80」(または構成ファイルの「ports = 80」)と同じです。

構成ファイルを使用するには、次のように入力します。

Masscan -c <ファイル名>

現在の設定から構成ファイルを生成するには、 –echo を使用します。

オプション。 これにより、プログラムの実際の実行が停止され、単にエコーが発生します。

代わりに現在の構成を使用します。 これは便利な生成方法です

最初の設定ファイル、または知らなかったパラメータのリストを確認する

について。 今すぐ試してみることをお勧めします。

Masscan -p1234 –echo

 

原文ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー

 

$ masscan –help

MASSCAN is a fast port scanner. The primary input parameters are the

IP addresses/ranges you want to scan, and the port numbers. An example

is the following, which scans the 10.x.x.x network for web servers:

masscan 10.0.0.0/8 -p80

The program auto-detects network interface/adapter settings. If this

fails, you’ll have to set these manually. The following is an

example of all the parameters that are needed:

–adapter-ip 192.168.10.123

–adapter-mac 00-11-22-33-44-55

–router-mac 66-55-44-33-22-11

Parameters can be set either via the command-line or config-file. The

names are the same for both. Thus, the above adapter settings would

appear as follows in a configuration file:

adapter-ip = 192.168.10.123

adapter-mac = 00-11-22-33-44-55

router-mac = 66-55-44-33-22-11

All single-dash parameters have a spelled out double-dash equivalent,

so ‘-p80’ is the same as ‘–ports 80’ (or ‘ports = 80’ in config file).

To use the config file, type:

masscan -c <filename>

To generate a config-file from the current settings, use the –echo

option. This stops the program from actually running, and just echoes

the current configuration instead. This is a useful way to generate

your first config file, or see a list of parameters you didn’t know

about. I suggest you try it now:

masscan -p1234 –echo