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

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

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

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

ツールディレクトリ

カテゴリ

すべてのカテゴリを見る
Loading categories
webtech — ウェブサイトで使用されている技術を特定する。 | Kitploit
ツール/GitHubGitHub/shieldersec/webtech
偵察情報収集ウェブセキュリティ
GitHubshieldersec/webtech

webtech

ウェブサイトで使用されている技術を特定する。

リポジトリを見るウェブサイト
297491ヶ月前Kitploit レビュー済み

人気

すべて見る →

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

すべてのツールを探索

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

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

WebTech

ウェブサイトで使用されている技術を特定します。リリースのブログ記事はこちら。

CLIインストール

WebTechはpipで利用可能です:

root@kitploit:~
pip install webtech

また、setup.pyを使ってインストールすることもできます:

root@kitploit:~
python setup.py install --user

Burp統合

Jython 2.7.0 standaloneをダウンロードし、Burpにインストールします。

「Extender」>「Options」>「Python Environment」で:

  • Jython jarの場所を選択

最後に、「Extender」>「Extension」で:

  • 「Add」をクリック
  • 拡張子形式として「py」または「Python」を選択
  • このフォルダにあるBurp-WebTech.pyファイルを選択

使い方

ウェブサイトをスキャン:

root@kitploit:~
$ webtech -u https://example.com/

Target URL: https://example.com
...

$ webtech -u file://response.txt

Target URL:
...

全使用法:

root@kitploit:~
$ webtech -h

Usage: webtech [options]

Options:
  -h, --help            show this help message and exit
  -u URLS, --urls=URLS  url(s) to scan
  --ul=URLS_FILE, --urls-file=URLS_FILE
                        url(s) list file to scan
  --ua=USER_AGENT, --user-agent=USER_AGENT
                        use this user agent
  --rua, --random-user-agent
                        use a random user agent
  --db=DB_FILE, --database-file=DB_FILE
                        custom database file
  --oj, --json          output json-encoded report
  --og, --grep          output grepable report
  --udb, --update-db    force update of remote db files

WebTechをライブラリとして使う

root@kitploit:~
import webtech

# you can use options, same as from the command line
wt = webtech.WebTech(options={'json': True})

# scan a single website
try:
  report = wt.start_from_url('https://shielder.it')
  print(report)
except webtech.utils.ConnectionException:
  print("Connection error")

詳細な例はwebtech_example.pyを参照してください。

データベースマッチングのリソース

HTTPヘッダー情報 - http://netinfo.link/http/headers.html
クッキー名 - https://webcookies.org/top-cookie-names

ツールをダウンロード