Top1. Installation Environment
Windows7,python2.7.13,sqlmap
Top2.python installation (: https://www.python.org/downloads/)
1. Double-click the downloaded Python installation package, default, Next;
2. Tick the "Add Python.exe to Path" item, and after the installation is complete, you no longer need to add the environment variable separately;
After the installation has completed restarting the computer, verify that the installation is successful:
3.eg: Execute under command line
C:\users\admin>python
Python 2.7.13 (V2.7.13:A06454B1AFA1, Dec, 20:53:40) [MSC v.1500-bit (
AMD64)] on Win32
Type "Help", "copyright", "credits" or "license" for more information.
>>>
The version information appears to prove that the installation was successful.
Top3.sqlmap installation (: http://sqlmap.org/)
1. Unzip the installation package into the folder Sqlmap and copy it to the "C:\Python27" directory;
2. Create a new CMD shortcut on the desktop, named "Sqlmap", right-click "Properties" on the new shortcut, modify "start position" to C:\Python27\sqlmap, and then OK;
3.eg: Open Shortcut test
C:\USERS\ADMIN>CD C:\Python27\sqlmap
C:\python27\sqlmap>sqlmap.py-h
___
__h__
___ ___[,]_____ ___ ___ {1.1.4.48#dev}
|_ -| . [)] |. ' | . |
|___|_ ["]_|_|_|__,| _|
|_| V |_| http://sqlmap.org
Usage:sqlmap.py [Options]
Verify that the installation was successful.
Common commands:
Sqlmap.py-u URL--dbs//Explode database
Sqlmap.py-u URL--current-db//explode current Library
Sqlmap.py-u URL--current-user//explode Current user
Sqlmap.py-u URL--users View User rights
Sqlmap.py-u URL--tables-d database//Explode table segment
Sqlmap.py-u URL--columns-t table Segment-D database//Word >
This article is from the "Yanzi" blog, make sure to keep this source http://daddysgirl.blog.51cto.com/1598612/1921595
Tec-003-sqlmap Installation and use