{"id":13454543,"url":"https://github.com/the-robot/sqliv","last_synced_at":"2025-03-24T06:30:52.292Z","repository":{"id":33619293,"uuid":"37271531","full_name":"the-robot/sqliv","owner":"the-robot","description":"massive SQL injection vulnerability scanner","archived":true,"fork":false,"pushed_at":"2018-08-14T11:28:52.000Z","size":893,"stargazers_count":1158,"open_issues_count":18,"forks_count":376,"subscribers_count":63,"default_branch":"master","last_synced_at":"2024-10-28T21:39:53.888Z","etag":null,"topics":["crawler","multiprocessing","reverse-ip-scan","scanner","scanning","sql-injection","sqli","sqli-vulnerability-scanner"],"latest_commit_sha":null,"homepage":"https://en.kali.tools/all/?tool=1334","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/the-robot.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2015-06-11T16:04:41.000Z","updated_at":"2024-10-25T01:56:05.000Z","dependencies_parsed_at":"2022-08-07T22:15:41.602Z","dependency_job_id":null,"html_url":"https://github.com/the-robot/sqliv","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/the-robot%2Fsqliv","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/the-robot%2Fsqliv/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/the-robot%2Fsqliv/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/the-robot%2Fsqliv/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/the-robot","download_url":"https://codeload.github.com/the-robot/sqliv/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245222265,"owners_count":20580119,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["crawler","multiprocessing","reverse-ip-scan","scanner","scanning","sql-injection","sqli","sqli-vulnerability-scanner"],"created_at":"2024-07-31T08:00:55.186Z","updated_at":"2025-03-24T06:30:50.823Z","avatar_url":"https://github.com/the-robot.png","language":"Python","readme":"SQLiv\n===\n\n### Massive SQL injection scanner  \n**Features**  \n1. multiple domain scanning with SQL injection dork by Bing, Google, or Yahoo\n2. targetted scanning by providing specific domain (with crawling)\n3. reverse domain scanning\n\n\u003e both SQLi scanning and domain info checking are done in multiprocessing  \n\u003e so the script is super fast at scanning many urls\n\n\u003e quick tutorial \u0026 screenshots are shown at the bottom  \n\u003e project contribution tips at the bottom  \n\n---\n\n**Installation**  \n1. git clone https://github.com/the-robot/sqliv.git\n2. sudo python2 setup.py -i\n\n\u003e Dependencies  \n\u003e - [bs4](https://pypi.python.org/pypi/bs4)  \n\u003e - [termcolor](https://pypi.python.org/pypi/termcolor)  \n\u003e - [google](https://pypi.python.org/pypi/google)\n\u003e - [nyawc](https://pypi.python.org/pypi/nyawc/)\n\n**Pre-installed Systems**  \n- [BlackArch Linux](https://blackarch.org/scanner.html) ![BlackArch](https://raw.githubusercontent.com/BlackArch/blackarch-artwork/master/logo/logo-38-49.png)\n\n---\n### Quick Tutorial  \n**1. Multiple domain scanning with SQLi dork**  \n- it simply search multiple websites from given dork and scan the results one by one\n```python\npython sqliv.py -d \u003cSQLI DORK\u003e -e \u003cSEARCH ENGINE\u003e  \npython sqliv.py -d \"inurl:index.php?id=\" -e google  \n```\n\n**2. Targetted scanning**  \n- can provide only domain name or specifc url with query params\n- if only domain name is provided, it will crawl and get urls with query\n- then scan the urls one by one\n```python\npython sqliv.py -t \u003cURL\u003e  \npython sqliv.py -t www.example.com  \npython sqliv.py -t www.example.com/index.php?id=1  \n```\n\n**3. Reverse domain and scanning**  \n- do reverse domain and look for websites that hosted on same server as target url\n```python\npython sqliv.py -t \u003cURL\u003e -r\n```\n\n**4. Dumping scanned result**\n- you can dump the scanned results as json by giving this argument\n```python\npython sqliv.py -d \u003cSQLI DORK\u003e -e \u003cSEARCH ENGINE\u003e -o result.json\n```\n\n**View help**  \n```python\npython sqliv.py --help\n\nusage: sqliv.py [-h] [-d D] [-e E] [-p P] [-t T] [-r]\n\noptional arguments:\n  -h, --help  show this help message and exit\n  -d D        SQL injection dork\n  -e E        search engine [Google only for now]\n  -p P        number of websites to look for in search engine\n  -t T        scan target website\n  -r          reverse domain\n```\n\n---\n### screenshots\n![1](https://raw.githubusercontent.com/Hadesy2k/sqliv/master/screenshots/1.png)\n![2](https://raw.githubusercontent.com/Hadesy2k/sqliv/master/screenshots/2.png)\n![3](https://raw.githubusercontent.com/Hadesy2k/sqliv/master/screenshots/3.png)\n![4](https://raw.githubusercontent.com/Hadesy2k/sqliv/master/screenshots/4.png)\n\n---\n\n### Development\n**TODO**  \n1. POST form SQLi vulnerability testing\n","funding_links":[],"categories":["Exploitation","Uncategorized","\u003ca id=\"969212c047f97652ceb9c789e4d8dae5\"\u003e\u003c/a\u003e数据库\u0026\u0026SQL攻击\u0026\u0026SQL注入","Weapons","Tools"],"sub_categories":["SQLi","Uncategorized","\u003ca id=\"3157bf5ee97c32454d99fd4a9fa3f04a\"\u003e\u003c/a\u003eSQL","SQL Injection","Tools"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthe-robot%2Fsqliv","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fthe-robot%2Fsqliv","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthe-robot%2Fsqliv/lists"}