whitewidow: SQL Vulnerability Scanner
Whitewidow is an open source automated SQL vulnerability scanner, that is capable of running through a file list, or can scrape Google for potentially vulnerable websites. It allows automatic file formatting, random user agents, IP addresses, server information, multiple SQL injection syntaxes, ability to launch sqlmap from the program, and a fun environment. This program was created for learning purposes and is intended to teach users what vulnerability looks like.
Launching whitewidow displays the custom designed banner and begins searching for possible sites that could be vulnerable.
Whitewidow is capable of finding vulnerabilities in websites by scraping Google using over 1,000 different queries that are carefully researched before added. Whitewidow is also capable of spidering a single webpage for all available links, it will then search for vulnerabilities in all the links using the programs built-in file feature
And when all is said and done, and you’re sure that you’ve found some vulnerable sites, you can launch sqlmap from the program without the need of downloading another clone.
Install
git clone https://github.com/WhitewidowScanner/whitewidow.git
cd whitewidow
bundle install
Usage
ruby whitewidow.rb -d
This will run whitewidow in default mode and scrape Google for possible sites using a random search query.
ruby whitewidow.rb -f path/to/file
This will run whitewidow through a given file and add the SQL syntax to the URL.
ruby whitewidow.rb -h
Will run the help flag along with show the help menu.
For more information about usage and more flags, you can check out the wiki functionality page here.