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
wwwgrep — Respository Web della Fondazione OWASP | Kitploit
Strumenti/GitHubGitHub/owasp/wwwgrep
RicognizioneAnalisi delle VulnerabilitàAnalisi del CodiceRaccolta InformazioniSicurezza WebPenetration TestingArchived
GitHubowasp/wwwgrep

wwwgrep

Respository Web della Fondazione OWASP

Vedi Repository
3674 anni 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

WWWGrep

Repository Web della Fondazione OWASP

Autori: Mark Deen & Aditi Mohan

Introduzione

WWWGrep è un meccanismo rapido di ricerca "grepping" che esamina gli elementi HTML per tipo e consente di effettuare ricerche mirate (singole), multiple (basate su file di URL) e ricorsive (rispetto al dominio root o meno). I nomi e i valori degli header possono anche essere cercati ricorsivamente in questo modo. WWWGrep è stato progettato per aiutare sia i breaker che i builder a esaminare rapidamente le basi di codice sotto ispezione; alcuni casi d'uso ed esempi sono mostrati di seguito.

Installazione

root@kitploit:~
git clone 
pip3 install -r requirements.txt
python3 wwwgrep.py <argomenti e parametri>

Dipendenze (pip3 install -r requirements.txt)

root@kitploit:~
- Python 3.5+
- BeautifulSoup 4 
- UrlLib.parse
- requests_html
- argparse
- requests
- re
- os.path

Breaker

  • Individuare rapidamente le pagine di login cercando campi di input chiamati "username" o "password" su un sito utilizzando un flag di ricorsione
  • Controllare rapidamente gli header per l'uso di tecnologie specifiche
  • Individuare rapidamente cookie e token JWT cercando negli header delle risposte
  • Utilizzare con un proxy per automatizzare la ricorsione attraverso un set di link rapidamente
  • Individuare tutti i sink di input su una pagina (o sito) cercando campi di input e simboli di elaborazione dei parametri
  • Individuare tutti i commenti degli sviluppatori su una pagina per identificare codice commentato (o To Do)
  • Testare rapidamente la coerenza dei controlli del sito implementati durante la ricorsione (header, HSTS, CSP, ecc.)
  • Trovare rapidamente codice JavaScript vulnerabile presente nelle pagine web
  • Identificare token API e chiavi di accesso presenti nel codice della pagina

Builder

  • Testare rapidamente più siti sotto gestione per l'uso di codice vulnerabile
  • Testare rapidamente più siti sotto gestione per l'uso di framework/tecnologie vulnerabili
  • Trovare siti che potrebbero condividere una base di codice comune per determinare l'impatto di bug/vulnerabilità
  • Trovare siti che condividono un token di autenticazione comune (token di autenticazione nell'header)
  • Trovare siti che potrebbero contenere commenti degli sviluppatori per scopi di igiene del server

Opzioni da riga di comando

root@kitploit:~
wwwgrep.py [target/file] [search_string] [search params/criteria/recursion etc]
root@kitploit:~
Search Inputs

search_string		Specify the string to search for or alternatively “” 
			for all objects of type specified in search parameters

-t	--target	Specify a single URL as a target for the search
-f	--file		Specify a file containing a list of URLs to search

Recursion

-rr	--recurse-root	Limits URL recursion to the domain provided in the target
-ra	--recurse-any	Allows recursion to extend beyond the domain of the target

Matching Criteria

-i	--ignore-case	Performs case insensitive matching (default is to respect case)
-d	--dedupe        Allow duplicate findings per page (default is to de-duplicate findings)
-r	--no-redirects	Do not allow redirects (default is to allow redirects)
-b	--no-base-url   Omit the URL of the match from the output (default is to include the URL)
-x	--regex         Allows the use of RegEX matches (search_string is treated as a RegEX, default is off) 
-e	--separator	Specify and output specifier (default is : ) 
-j	--java-render   Turns on JavaScript rendering of page objects and text (default is off) 
-p	--linked-js-on  Turns on searching of linked (script src tags) Java Script (default is off)

Request Parameters

-ps	--https-proxy	Specify a proxy for the HTTPS protocol in https://<ip>:<port> format
-pp 	--http-proxy	Specify a proxy for the HTTP protocol in http://<ip>:<port> format
-hu	--user-agent	Specify a string to use as the user agent in the request
-ha	--auth-header	Specify a bearer token or other auth string to use in the request header

Search Parameters

-s	--all		Search all page HTML and scripts for terms that match the search specification
-sr	--relative	Search page links that match the search specification as relative URLs
-sa	--absolute	Search page links that match the search specification as absolute URLs
-si	--input-fields	Search page input fields that match the search specification
-ss	--scripts	Search scripts tags that match the search specification
-st	--text          Search visible text on the page that matches the search specification
-sc	--comments      Search comments on the page that match the search specification
-sm	--meta          Search in page metadata for matches to the search specification
-sf	--hidden        Search in hidden fields for specific matches to the search specification
-sh	--header-name	Search response headers for specific matches to the search specification
-sv	--header-value  Search response header values for specific matches to the search specification

Esempi di utilizzo:

Trova tutti i campi di input chiamati login su un sito in modo ricorsivo senza uscire dal dominio root, senza distinzione tra maiuscole e minuscole nella corrispondenza

wwwgrep.py -t https://www.target.com -i -si “login” -rr

Trova tutti i commenti contenenti il termine "to do" su tutte le pagine di un sito

wwwgrep.py -t https://www.target.com -i -sc “to do” -rr

Trova tutti i commenti su una pagina web specifica

wwwgrep.py -t https://www.target.com/some_page -i -sc “”

Trova tutti i campi nascosti all'interno di un elenco di applicazioni web contenuto nel file input.txt utilizzando la ricorsione del sito

wwwgrep.py -f input.txt -sf “” -rr

Scarica lo strumento