Press ESC to close

sqlscan: Quick SQL Injection Point Scanner

sqlscan: Quick SQL Injection Point Scanner

Introduction

sqlscan is a fast and efficient web scanner designed to find SQL injection points. Unlike other tools meant for educational purposes, sqlscan is explicitly for hacking. It works best with sitemaps to yield optimal results and is known for its simplicity, multi-platform compatibility, and speed.

Features

  • Simple to use
  • Multi-platform compatibility
  • Fast performance
  • Cool user interface

Installation

sqlscan requires PHP to run and has the following PHP dependencies:

  • ext-bz2
  • ext-curl
  • ext-mbstring

For more information, refer to the composer.json file.

For PC (Linux Debian-based environments)

$ sudo apt install php php-bz2 php-curl php-mbstring curl
$ sudo curl https://raw.githubusercontent.com/Cvar1984/sqlscan/dev/build/main.phar --output /usr/local/bin/sqlscan
$ chmod +x /usr/local/bin/sqlscan
$ sqlscan http://example.gov --scan
$ sqlscan list_url.txt --scan

For Android (Termux environments)

$ apt install php curl
$ curl https://raw.githubusercontent.com/Cvar1984/sqlscan/dev/build/main.phar --output $PREFIX/bin/sqlscan
$ chmod +x $PREFIX/bin/sqlscan
$ sqlscan http://example.gov --scan
$ sqlscan list_url.txt --scan

Building Phar from Source

To build the Phar from source, follow these steps:

$ composer install
$ box build

Development TODO

  • Quick shell code injector
  • Bypass WAF (Web Application Firewall)
  • Retrieve URLs from JSON
  • Report generation in CSV/XML/HTML/PDF/DB (composer dependencies)
  • Multi-threading (pthread)

License

sqlscan is licensed under the Apache License, Version 2.0 or the MIT license, at your option.

Apache License, Version 2.0

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0

Thank you for supporting sqlscan!

Leave a comment

Your email address will not be published. Required fields are marked *