How To: Spider Web Pages with Nmap for SQLi Vulnerabilities

Spider Web Pages with Nmap for SQLi Vulnerabilities

The already robust and ingenious Nmap tool has received a whole slew of new scanning scripts that can be used to do all sorts of naughty endeavors. Notably, the SQLi module, since it is a necessary evil that we must cover here at Null Byte. This major update is going to fuel today's lesson.

SQLi stands for Sever Query Language Injection. This is a fancy term for exploiting the program that manages and organizes some web databases. SQLi is a fairly old exploit, yet it is still somehow very prominent in today's world. When a web administrator accidentally (at least, I hope it was an accident) allows remote SQL, the server's information can be viewed and manipulated by passing the page with the broken script an SQL injection.

These infamous and easy hacks were used against Sony too many times to count, so they are still very much prominent.

Requirements

  • Linux or Mac OSX

Step 1 Install the Latest Nmap

Text in bold is a terminal command.

If you're on Mac, you need to make sure you have Apple developer tools installed when compiling the software.

  1. Download the latest Nmap with the scripts here.
  2. Extract the archive source.
        tar zxvf
  3. Configure and compile the program.
        ./configure && make
  4. Install the software.
        sudo make isntall

You can also just extract and run the program binaries from within their respective folders (i.e. /nmap, /zenmap) and run them as their binary executables.
    ./nmap

Step 2 Scanning for SQLi Vulns with Nmap

  1. Pick a website to scan (make sure you have consent, or that you do not plan to do anything illegal to the site).
  2. Ping it for its IP address.
        ping -c 3 www.example.com
  3. Copy the IP address it spits back and save it for use later.
  4. Enter this script to scan the root of your choice webserver, spidering for SQLi vulnerabilities. Replace 127.0.0.1 with the IP of your chosen server.
        nmap -T4 -A -v --script sql-injection 127.0.0.1
  5. Watch this video to get an understanding of how to scan within the GUI interface.

Be a Part of Null Byte!

Just updated your iPhone? You'll find new emoji, enhanced security, podcast transcripts, Apple Cash virtual numbers, and other useful features. There are even new additions hidden within Safari. Find out what's new and changed on your iPhone with the iOS 17.4 update.

1 Comment

Hello,

I realise its an old thread but :

What comes after the scanning ? Can you help with some info or point out to some good material?

Share Your Thoughts

  • Hot
  • Latest