Skip to content
KitploitKITPLOIT
HerramientasBlog
Enviar
HerramientasBlog
Enviar

¡Herramientas de Hacking, PenTest y Ciberseguridad para tu Arsenal de Seguridad!

Kitploit es un directorio de herramientas de hacking, ciberseguridad y pentesting. Descubre las últimas actualizaciones de proyectos para encontrar vulnerabilidades, analizar sistemas, automatizar pruebas y fortalecer tu seguridad.

··Feeds·Contacto·Privacidad·© 2026 Kitploit

Directorio de Herramientas

Categorías

Ver todas las categorías
Loading categories
webtech — Identifica las tecnologías utilizadas en sitios web. | Kitploit
Herramientas/GitHubGitHub/shieldersec/webtech
ReconocimientoRecopilación de InformaciónSeguridad Web
GitHubshieldersec/webtech

webtech

Identifica las tecnologías utilizadas en sitios web.

Ver RepositorioSitio web
297491hace 2 mesesRevisado por Kitploit

Más Populares

Ver todos →

Descubre las herramientas más usadas por nuestra comunidad.

Explora todas las herramientas

Explora nuestra colección de herramientas

Ver todas las herramientas →
Compartir

WebTech

Identificar tecnologías utilizadas en sitios web. Más información en el blogpost del lanzamiento.

Instalación CLI

WebTech está disponible en pip:

root@kitploit:~
pip install webtech

También se puede instalar mediante setup.py:

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

Integración con Burp

Descarga Jython 2.7.0 standalone e instálalo en Burp.

En "Extender" > "Options" > "Python Environment":

  • Selecciona la ubicación del archivo Jython jar

Finalmente, en "Extender" > "Extension":

  • Haz clic en "Add"
  • Selecciona "py" o "Python" como formato de extensión
  • Selecciona el archivo Burp-WebTech.py en esta carpeta

Uso

Escanea un sitio web:

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

Usar 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 más ejemplos, consulta webtech_example.py.

Recursos para la coincidencia de bases de datos

Información de cabeceras HTTP - http://netinfo.link/http/headers.html
Nombres de cookies - https://webcookies.org/top-cookie-names

Descargar herramienta