Skip to content
KitploitKITPLOIT
StrumentiBlog
Invia
StrumentiBlog
Invia

Strumenti di Hacking, PenTest e Cybersecurity per il tuo Arsenale di Sicurezza!

Kitploit è una directory di strumenti di hacking, cybersecurity e pentesting. Scopri gli ultimi aggiornamenti dei progetti per trovare vulnerabilità, analizzare sistemi, automatizzare i test e rafforzare la tua sicurezza.

··Feed·Contatto·Privacy·© 2026 Kitploit

Directory degli strumenti

Categorie

Vedi tutte le categorie
Loading categories
webtech — Identifica le tecnologie utilizzate sui siti web. | Kitploit
Strumenti/GitHubGitHub/shieldersec/webtech
RicognizioneRaccolta InformazioniSicurezza Web
GitHubshieldersec/webtech

webtech

Identifica le tecnologie utilizzate sui siti web.

Vedi RepositorySito web
297491 mese faRevisionato da Kitploit

Più Popolari

Vedi tutti →

Scopri gli strumenti più utilizzati dalla nostra community.

Esplora tutti gli strumenti

Sfoglia la nostra collezione di strumenti

Vedi tutti gli strumenti →
Condividi

WebTech

Identifica le tecnologie utilizzate nei siti web. Maggiori informazioni nel blog post del rilascio.

Installazione CLI

WebTech è disponibile su pip:

root@kitploit:~
pip install webtech

Può essere anche installato tramite setup.py:

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

Integrazione con Burp

Scarica Jython 2.7.0 standalone e installalo in Burp.

In "Extender" > "Options" > "Python Environment":

  • Seleziona la posizione del file Jython jar

Infine, in "Extender" > "Extension":

  • Clicca "Add"
  • Seleziona "py" o "Python" come formato dell'estensione
  • Seleziona il file Burp-WebTech.py in questa cartella

Utilizzo

Scansiona un sito web:

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

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

$ webtech -u file://response.txt

Target URL:
...

Utilizzo 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

Usa WebTech come libreria

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

Per ulteriori esempi, vedi webtech_example.py.

Risorse per il matching del database

Informazioni sugli header HTTP - http://netinfo.link/http/headers.html
Nomi dei cookie - https://webcookies.org/top-cookie-names

Scarica lo strumento