https://github.com/the-c0d3r/sqli-scanner
A tool to mass scan SQL Injection Vulnerable websites from a file.
https://github.com/the-c0d3r/sqli-scanner
scanner sql-injection
Last synced: 6 months ago
JSON representation
A tool to mass scan SQL Injection Vulnerable websites from a file.
- Host: GitHub
- URL: https://github.com/the-c0d3r/sqli-scanner
- Owner: the-c0d3r
- License: gpl-3.0
- Created: 2017-01-31T00:21:43.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-02-02T07:15:52.000Z (over 9 years ago)
- Last Synced: 2023-08-10T15:44:47.776Z (almost 3 years ago)
- Topics: scanner, sql-injection
- Language: Python
- Size: 32.2 KB
- Stars: 66
- Watchers: 3
- Forks: 41
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# sqli-scanner
This is a sql vulnerability scanner, intended for a list of urls. This is made to be multi-process, so it's much much faster than traditional single thread/process scanning.
# Usage
```
-------------------------------------------------------
MASS
_____ _____ __ _ _____
| __| | | |_|___| __|___ ___ ___ ___ ___ ___
|__ | | | |__| |___|__ | _| .'| | | -_| _|
|_____|__ _|_____|_| |_____|___|__,|_|_|_|_|___|_|
|__|
the-c0d3r
-------------------------------------------------------
usage: sqli-scanner.py [-h] [-f FILE] [-o OUTPUT] [-p PROCESSCOUNT] [-v]
Mass SQL vulnerability scanner
optional arguments:
-h, --help show this help message and exit
-f FILE, --file FILE Target file with URLs
-o OUTPUT, --output OUTPUT
Output file to save vulnerable websites to
-p PROCESSCOUNT, --processcount PROCESSCOUNT
Number of processes to generate
-v, --verbose Enable Verbose mode
```
Only 1 command argument is required to run this program. It is the `-f` arugment that provides the file where the urls are written inside.
You can use `-p` to change the number of processes to generate. The default is the number of CPU the computer has, multiplied by 2. *If you use too much processes, it might have trouble stopping it.*
---
> If you have trouble stopping the processes with `Ctrl+C`, try `Ctrl+Z` to move it to background and then do `kill processID` to kill the process using the process ID.