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