Skip to content
KitploitKITPLOIT
ツールブログ
提出
ツールブログ
提出

ハッキング、侵入テスト、サイバーセキュリティツールをあなたのセキュリティアーセナルに!

Kitploitはハッキング、サイバーセキュリティ、ペネトレーションテストのツールディレクトリです。最新のプロジェクトアップデートを見つけて、脆弱性の発見、システム分析、テストの自動化、セキュリティの強化を行いましょう。

··フィード·お問い合わせ·プライバシー·© 2026 Kitploit

ツールディレクトリ

カテゴリ

すべてのカテゴリを見る
Loading categories
network-fingerprint — nucleiネットワークテンプレート用のフィンガープリント生成ヘルパー | Kitploit
ツール/GitHubGitHub/projectdiscovery/network-fingerprint
パケットスニッフィングと分析偵察ネットワークマッピング脆弱性分析情報収集ユーティリティとフレームワーク
GitHubprojectdiscovery/network-fingerprint

network-fingerprint

nucleiネットワークテンプレート用のフィンガープリント生成ヘルパー

リポジトリを見る
80113年前Kitploit レビュー済み

人気

すべて見る →

コミュニティで最も使われているツールを見つけましょう。

すべてのツールを探索

ツールコレクションを閲覧

すべてのツールを見る →
共有

network-fingerprint

License Go Report Card contributions welcome Follow on Twitter Chat on Discord

ポートやIPのパケットリクエスト/レスポンスペアをキャプチャして、ネットワークプロトコルベースのNucleiテンプレート作成を支援します。

リソース

  • インストール手順
  • 使用法
  • network-fingerprintの実行
  • 出力形式

使用法

root@kitploit:~
▶ network-fingerprint -h

これにより、ツールのヘルプが表示されます。以下に、サポートされているすべてのスイッチを示します。

フラグ

インストール手順

network-fingerprintを正常にインストールするには、**go1.17+**と、システムにlibpcap-devがインストールされている必要があります。

libpcap-devをインストールするには:

root@kitploit:~
▶ apt install -y libpcap-dev
root@kitploit:~
▶ go install -v github.com/projectdiscovery/network-fingerprint@latest

network-fingerprintの実行

ターゲット上でツールを実行してポートのトラフィックをキャプチャするには、次のコマンドを使用するだけです。

root@kitploit:~
▶ network-fingerprint -port <port>

ここで、<port>はトラフィックをキャプチャしたいポートを示します。

さらに、ポート80のようなノイズが多い一般的なポートで実行する場合にIPでフィルタリングするには、ipフラグを使用できます。

root@kitploit:~
▶ network-fingerprint -port <port> -ip <destination-ip> 

network-fingerprintの使用例を紹介する詳細なブログはこちら - https://blog.projectdiscovery.io/writing-network-templates-with-nuclei/

出力形式

root@kitploit:~
testing@local# network-fingerprint -port 27017 -ip 127.0.0.1
2021/04/08 23:15:07 network-fingerprint: nuclei-helper by @pdiscoveryio
2021/04/08 23:15:07 [device] en0 IP: 192.168.1.9
2021/04/08 23:15:07 [device] bridge100 IP: 192.168.64.1
2021/04/08 23:15:07 [device] lo0 IP: 127.0.0.1
root@kitploit:~
{
  "data": "\ufffd",
  "hex": "dd",
  "request": true
}
{
  "data": "?\u0001",
  "hex": "3f01",
  "response": true
}

リクエスト(クライアントから宛先へ)メッセージはrequest: trueを持ち、レスポンス(宛先からクライアントへ)はresponse: trueが設定され、正しいフィンガープリントを容易に識別するのに役立ちます。

ツールをダウンロード
説明
例
ifaceキャプチャを実行するインターフェース(デフォルトはlo0)network-fingerprint -iface eth0
ipパケットをフィルタリングするIPnetwork-fingerprint -ip 127.0.0.1
portパケットをキャプチャするポートnetwork-fingerprint -port 27017