• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

sqlmap/H02-Dec-2019-100,85678,639

sqlmap.egg-info/H03-May-2022-12092

MANIFEST.inH A D02-Dec-201922.5 KiB509508

PKG-INFOH A D02-Dec-20195 KiB12092

README.rstH A D02-Dec-20193.3 KiB9770

setup.cfgH A D02-Dec-201938 53

setup.pyH A D03-May-20221.5 KiB4640

README.rst

1sqlmap
2======
3
4|Build Status| |Python 2.6|2.7|3.x| |License| |Twitter|
5
6sqlmap is an open source penetration testing tool that automates the
7process of detecting and exploiting SQL injection flaws and taking over
8of database servers. It comes with a powerful detection engine, many
9niche features for the ultimate penetration tester and a broad range of
10switches lasting from database fingerprinting, over data fetching from
11the database, to accessing the underlying file system and executing
12commands on the operating system via out-of-band connections.
13
14Screenshots
15-----------
16
17.. figure:: https://raw.github.com/wiki/sqlmapproject/sqlmap/images/sqlmap_screenshot.png
18   :alt: Screenshot
19
20
21You can visit the `collection of
22screenshots <https://github.com/sqlmapproject/sqlmap/wiki/Screenshots>`__
23demonstrating some of features on the wiki.
24
25Installation
26------------
27
28You can use pip to install and/or upgrade the sqlmap to latest (monthly) tagged version with: ::
29
30    pip install --upgrade sqlmap
31
32Alternatively, you can download the latest tarball by clicking
33`here <https://github.com/sqlmapproject/sqlmap/tarball/master>`__ or
34latest zipball by clicking
35`here <https://github.com/sqlmapproject/sqlmap/zipball/master>`__.
36
37If you prefer fetching daily updates, you can download sqlmap by cloning the
38`Git <https://github.com/sqlmapproject/sqlmap>`__ repository:
39
40::
41
42    git clone --depth 1 https://github.com/sqlmapproject/sqlmap.git sqlmap-dev
43
44sqlmap works out of the box with
45`Python <http://www.python.org/download/>`__ version **2.6**, **2.7** and
46**3.x** on any platform.
47
48Usage
49-----
50
51To get a list of basic options and switches use:
52
53::
54
55    python sqlmap.py -h
56
57To get a list of all options and switches use:
58
59::
60
61    python sqlmap.py -hh
62
63You can find a sample run `here <https://asciinema.org/a/46601>`__. To
64get an overview of sqlmap capabilities, list of supported features and
65description of all options and switches, along with examples, you are
66advised to consult the `user's
67manual <https://github.com/sqlmapproject/sqlmap/wiki/Usage>`__.
68
69Links
70-----
71
72-  Homepage: http://sqlmap.org
73-  Download:
74   `.tar.gz <https://github.com/sqlmapproject/sqlmap/tarball/master>`__
75   or `.zip <https://github.com/sqlmapproject/sqlmap/zipball/master>`__
76-  Commits RSS feed:
77   https://github.com/sqlmapproject/sqlmap/commits/master.atom
78-  Issue tracker: https://github.com/sqlmapproject/sqlmap/issues
79-  User's manual: https://github.com/sqlmapproject/sqlmap/wiki
80-  Frequently Asked Questions (FAQ):
81   https://github.com/sqlmapproject/sqlmap/wiki/FAQ
82-  Twitter: https://twitter.com/sqlmap
83-  Demos: http://www.youtube.com/user/inquisb/videos
84-  Screenshots: https://github.com/sqlmapproject/sqlmap/wiki/Screenshots
85
86.. |Build Status| image:: https://api.travis-ci.org/sqlmapproject/sqlmap.svg?branch=master
87   :target: https://api.travis-ci.org/sqlmapproject/sqlmap
88.. |Python 2.6|2.7|3.x| image:: https://img.shields.io/badge/python-2.6|2.7|3.x-yellow.svg
89   :target: https://www.python.org/
90.. |License| image:: https://img.shields.io/badge/license-GPLv2-red.svg
91   :target: https://raw.githubusercontent.com/sqlmapproject/sqlmap/master/LICENSE
92.. |Twitter| image:: https://img.shields.io/badge/twitter-@sqlmap-blue.svg
93   :target: https://twitter.com/sqlmap
94
95.. pandoc --from=markdown --to=rst --output=README.rst sqlmap/README.md
96.. http://rst.ninjs.org/
97