Skip to content
KitploitKITPLOIT
FerramentasBlog
Enviar
FerramentasBlog
Enviar

Ferramentas de Hacking, PenTest e Cibersegurança para o seu Arsenal de Segurança!

Kitploit é um diretório de ferramentas de hacking, cibersegurança e pentesting. Descubra as últimas atualizações de projetos para encontrar vulnerabilidades, analisar sistemas, automatizar testes e fortalecer sua segurança.

··Feeds·Contato·Privacidade·© 2026 Kitploit

Diretório de Ferramentas

Categorias

Ver todas as categorias
Loading categories
webtech — Identificar tecnologias usadas em sites. | Kitploit
Ferramentas/GitHubGitHub/shieldersec/webtech
ReconhecimentoColeta de InformaçõesSegurança Web
GitHubshieldersec/webtech

webtech

Identificar tecnologias usadas em sites.

Ver RepositórioSite
29749há 1 mêsRevisado pelo Kitploit

Mais Populares

Ver todos →

Descubra as ferramentas mais usadas pela nossa comunidade.

Explore todas as ferramentas

Navegue pela nossa coleção de ferramentas

Ver todas as ferramentas →
Compartilhar

WebTech

Identifique tecnologias usadas em sites. Mais informações no blog post do lançamento.

Instalação via CLI

WebTech está disponível via pip:

root@kitploit:~
pip install webtech

Também pode ser instalado via setup.py:

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

Integração com Burp

Baixe o Jython 2.7.0 standalone e instale-o no Burp.

Em "Extender" > "Options" > "Python Environment":

  • Selecione a localização do Jython jar

Finalmente, em "Extender" > "Extension":

  • Clique em "Add"
  • Selecione "py" ou "Python" como formato da extensão
  • Selecione o arquivo Burp-WebTech.py nesta pasta

Uso

Escaneie um site:

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

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

$ webtech -u file://response.txt

Target URL:
...

Uso completo:

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

Use WebTech como biblioteca

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")

Para mais exemplos, veja webtech_example.py.

Recursos para correspondência de banco de dados

Informações de cabeçalhos HTTP - http://netinfo.link/http/headers.html
Nomes de cookies - https://webcookies.org/top-cookie-names

Baixar ferramenta