From 5cda62bf6616faa8297e938fd72e05f0c6aea573 Mon Sep 17 00:00:00 2001 From: stamparm Date: Fri, 29 Jun 2012 03:56:46 -0700 Subject: [PATCH] Updated sqlmap user's manual (markdown) --- sqlmap-user's-manual.md | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/sqlmap-user's-manual.md b/sqlmap-user's-manual.md index b4972b09d..e54bf8a2c 100644 --- a/sqlmap-user's-manual.md +++ b/sqlmap-user's-manual.md @@ -15,17 +15,16 @@ sqlmap relies on the [Metasploit Framework](http://metasploit.com) for some of i If you are willing to connect directly to a database server (switch `-d`), without passing through the web application, you need to install Python bindings for the database management system that you are going to attack: -* Firebird: -* Microsoft Access: -* Microsoft SQL Server: -* MySQL: -* Oracle: -* PostgreSQL: -* SQLite: -* Sybase: +* Firebird: [python-kinterbasdb](http://kinterbasdb.sourceforge.net/) +* Microsoft Access: [python-pyodbc](http://pyodbc.googlecode.com/) +* Microsoft SQL Server: [python-pymssql](http://pymssql.sourceforge.net/) +* MySQL: [python pymysql](http://code.google.com/p/pymysql/) +* Oracle: [python cx_Oracle](http://cx-oracle.sourceforge.net/) +* PostgreSQL: [python-psycopg2](http://initd.org/psycopg/) +* SQLite: [python-pysqlite2](http://pysqlite.googlecode.com/) +* Sybase: [python-pymssql](http://pymssql.sourceforge.net/) -If you plan to attack a web application behind NTLM authentication or use the sqlmap update functionality (`--update` switch) you need to install respectively (http://code.google.com/p/python-ntlm/" -name="python-ntlm"> and (http://pysvn.tigris.org/" name="python-svn"> libraries respectively. +If you plan to attack a web application behind NTLM authentication or use the sqlmap update functionality (switch `--update`) you need to install respectively [python-ntlm](http://code.google.com/p/python-ntlm/) and [python-svn](http://pysvn.tigris.org/) libraries respectively. Optionally, if you are running sqlmap on Windows, you may wish to install the [PyReadline](http://ipython.scipy.org/moin/PyReadline/Intro) library in order to take advantage of the sqlmap TAB completion and history support features in the SQL shell and OS shell. Note that these functionalities are available natively via the standard Python [readline](http://docs.python.org/library/readline.html) library on other operating systems.