Skip to content
KitploitKITPLOIT
工具博客
提交
工具博客
提交

黑客、渗透测试和网络安全工具,武装您的安全武器库!

Kitploit 是一个黑客、网络安全和渗透测试工具的目录。发现最新的项目更新,查找漏洞、分析系统、自动化测试并加强你的安全。

··订阅源·联系·隐私·© 2026 Kitploit

工具目录

分类

查看所有分类
Loading categories
工具/GitHubGitHub/shieldersec/webtech
侦察信息收集Web安全
GitHubshieldersec/webtech

webtech

识别网站所使用的技术。

查看仓库网站
2974912个月前Kitploit 审核通过

最受欢迎

查看全部 →

发现我们社区最常用的工具。

探索所有工具

浏览我们的工具集合

查看所有工具 →
分享

WebTech

识别网站上使用的技术。关于该版本的更多信息请参阅博客文章。

CLI 安装

WebTech 可通过 pip 安装:

root@kitploit:~
pip install webtech

也可以通过 setup.py 安装:

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

Burp 集成

下载 Jython 2.7.0 独立版本并安装到 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
Cookie 名称 - https://webcookies.org/top-cookie-names

下载工具