Docunext


Security Analysis Tools nmap versus havij

December 24th, 2010

I've heard complaints about tools like nmap stating that they cause problems because they can be used to identify security holes, and thus contributes to nefarious causes. I totally disagree. True, it can definitely be used to identify security holes, it is certainly not designed to take advantage of them.

While nmap is self-described as a "Free Security Scanner For Network Exploration & Security Audits", I feel its strength is in its exploration and reporting capacities.

Compare that to the "Havij" tool. Havij is described as :an automated SQL Injection tool that helps penetration testers to find and exploit SQL Injection vulnerabilities on a web page".

I have never used havij, but I have defended against its use, and I even take issue with its description. While it sounds benevolent to state that is "helps penetration testers", there is really no good reason for it to "exploit SQL injection vulnerabilities". Yes, there is a big difference between finding and exploiting. What's worse, SQL injection exploitation can cause serious problems. Yikes!

Thankfully the creators of Havij set the software to include its name as the user-agent HTTP header. That makes it much easier to defend against, though presumably it would not be too difficult to alter the user-agent to mimic Firefox or Internet Explorer.

In my experience with Havij, I needed to defend against it because its automated usage was effectively causing a denial-of-service. All it took was a simple Apache access control configuration, like so:

SetEnvIf User-Agent Havij badbot
<Directory /docroot>
Order Allow,Deny
Allow from all
Deny from env=badbot
</Directory>

I can't remember if the user-agent string is case-sensitive, but I'm guessing it is.

See also:

Yearly Indexes: 2003 2004 2006 2007 2008 2009 2010 2011 2012 2013 2015 2019 2020 2022