sqlmap/index.html
2024-10-27 10:20:58 +01:00

166 lines
12 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=ISO-8859-1">
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<script src="javascripts/twitter.min.js" type="text/javascript"></script>
<script type="text/javascript" charset="utf-8">
getTwitters('tweet', {
id: 'sqlmap',
count: 16,
enableLinks: true,
ignoreReplies: true,
clearContents: true,
template: '<strong><a href="http://twitter.com/%user_screen_name%/statuses/%id_str%/">%time%</a></strong> - %text%'
});
</script>
<link rel="icon" href="favicon.ico" type="image/x-icon">
<link rel="alternate" type="application/rss+xml" title="sqlmap commits" href="https://github.com/sqlmapproject/sqlmap/commits/master.atom">
<link href='https://fonts.googleapis.com/css?family=Architects+Daughter' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="stylesheets/stylesheet.css" media="screen" />
<link rel="stylesheet" type="text/css" href="stylesheets/pygment_trac.css" media="screen" />
<link rel="stylesheet" type="text/css" href="stylesheets/print.css" media="print" />
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!-- little playground for web scanners :)
SQL error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
Warning: oci_parse() [function.oci-parse]: ORA-01756: quoted string not properly terminated in /var/www/index.php on line 33 ORA-01756: quoted string not properly terminated
Warning: pg_query() [function.pg-query]: Query failed: ERROR: unterminated quoted string at or near "' OFFSET 0 LIMIT 1 ^ in /var/www/index.php on line 35
Error Type: Microsoft OLE DB Provider for ODBC Drivers (0x80040E14) [Microsoft][ODBC SQL Server Driver][SQL Server]Unclosed quotation mark after the character string ''. /index.asp, line 27
Description: [Microsoft][ODBC SQL Server Driver][SQL Server]Line 1: Incorrect syntax near ''. Number: -2147217900 (0x80040E14)
Warning: SQLite3::exec(): near "": syntax error in index.php on line 19
-->
<title>sqlmap: automatic SQL injection and database takeover tool</title>
</head>
<body>
<header>
<div class="inner">
<h1>sqlmap<span style="vertical-align:super;font-size:40%">&reg;</span></h1>
<h2>Automatic SQL injection and database takeover tool</h2>
<a href="https://github.com/sqlmapproject/sqlmap" class="button"><small>View project on </small>GitHub</a>
</div>
</header>
<div id="content-wrapper">
<div class="inner clearfix">
<section id="main-content">
<a name="introduction"><h1>Introduction</h1></a>
<p>sqlmap is an open source penetration testing tool that automates the process of detecting and exploiting SQL injection flaws and taking over of database servers. It comes with a powerful detection engine, many niche features for the ultimate penetration tester and a broad range of switches lasting from database fingerprinting, over data fetching from the database, to accessing the underlying file system and executing commands on the operating system via out-of-band connections.</p>
<div style="text-align: center"><img src="images/screenshot.png"></div>
<!-- <center><span>The sqlmap project is currently searching for sponsor(s)</span></center> -->
<a name="features"><h1>Features</h1></a>
<ul>
<li>Full support for <strong>MySQL, Oracle, PostgreSQL, Microsoft SQL Server, Microsoft Access, IBM DB2, SQLite, Firebird, Sybase, SAP MaxDB, Informix, MariaDB, MemSQL, TiDB, CockroachDB, HSQLDB, H2, MonetDB, Apache Derby, Amazon Redshift, Vertica, Mckoi, Presto, Altibase, MimerSQL, CrateDB, Greenplum, Drizzle, Apache Ignite, Cubrid, InterSystems Cache, IRIS, eXtremeDB, FrontBase, Raima Database Manager, YugabyteDB, Aurora, OpenGauss, ClickHouse and Virtuoso</strong> database management systems.</li>
<li>Full support for six SQL injection techniques: <strong>boolean-based blind, time-based blind, error-based, UNION query-based, stacked queries and out-of-band</strong>.</li>
<li>Support to <strong>directly connect to the database</strong> without passing via a SQL injection, by providing DBMS credentials, IP address, port and database name.</li>
<li>Support to enumerate <strong>users, password hashes, privileges, roles, databases, tables and columns</strong>.</li>
<li>Automatic recognition of password hash formats and support for <strong>cracking them using a dictionary-based attack</strong>.</li>
<li>Support to <strong>dump database tables</strong> entirely, a range of entries or specific columns as per user's choice. The user can also choose to dump only a range of characters from each column's entry.</li>
<li>Support to <strong>search for specific database names, specific tables across all databases or specific columns across all databases' tables</strong>. This is useful, for instance, to identify tables containing custom application credentials where relevant columns' names contain string like name and pass.</li>
<li>Support to <strong>download and upload any file</strong> from the database server underlying file system when the database software is MySQL, PostgreSQL or Microsoft SQL Server.</li>
<li>Support to <strong>execute arbitrary commands and retrieve their standard output</strong> on the database server underlying operating system when the database software is MySQL, PostgreSQL or Microsoft SQL Server.</li>
<li>Support to <strong>establish an out-of-band stateful TCP connection between the attacker machine and the database server</strong> underlying operating system. This channel can be an interactive command prompt, a Meterpreter session or a graphical user interface (VNC) session as per user's choice.</li>
<li>Support for <strong>database process' user privilege escalation</strong> via Metasploit's Meterpreter <code>getsystem</code> command.</li>
</ul>
<p>Refer to the <a href="https://github.com/sqlmapproject/sqlmap/wiki/Features">wiki</a> for an exhaustive breakdown of the features.</p>
<a name="download"><h1>Download</h1></a>
<p>You can download the latest <a href="https://github.com/sqlmapproject/sqlmap/zipball/master">zipball</a> or <a href="https://github.com/sqlmapproject/sqlmap/tarball/master">tarball</a>.</p>
<p>Preferably, you can download sqlmap by cloning the <a href="https://github.com/sqlmapproject/sqlmap">Git</a> repository:</p>
<pre><code>git clone --depth 1 https://github.com/sqlmapproject/sqlmap.git sqlmap-dev</code></pre>
<a name="documentation"><h1>Documentation</h1></a>
<ul>
<li>sqlmap <a href="https://github.com/sqlmapproject/sqlmap/wiki">User's manual</a>.</li>
<li>sqlmap <a href="https://github.com/sqlmapproject/sqlmap/wiki/History">History</a>.</li>
<li>sqlmap <a href="https://github.com/sqlmapproject/sqlmap/wiki/FAQ">Frequently Asked Questions (FAQ)</a>.</li>
<li><a href="https://github.com/sqlmapproject/sqlmap/wiki/Presentations">Material</a> around sqlmap presented at conferences.</li>
</ul>
<a name="demo"><h1>Demo</h1></a>
<p><script type="text/javascript" src="https://asciinema.org/a/46601.js" id="asciicast-46601" async></script></p>
<p>Watch more demos <a href="http://www.youtube.com/user/inquisb/videos">here</a>.</p>
<a name="contribute"><h1>Contribute</h1></a>
<p>All code contributions are greatly appreciated. First off, clone the <a href="https://github.com/sqlmapproject/sqlmap">Git repository</a>, read the <a href="https://github.com/sqlmapproject/sqlmap/wiki">user's manual</a> carefully, go through the code yourself and <a href="mailto:dev@sqlmap.org">drop us</a> an email if you are having a hard time grasping its structure and meaning.</p>
<p><strong>Bug reports are welcome</strong>! Please report all bugs on the <a href="https://github.com/sqlmapproject/sqlmap/issues">issue tracker</a>. Our preferred method of patch submission is via a Git <a href="https://help.github.com/articles/using-pull-requests">pull request</a>.</p>
<p>Each patch should make one logical change. Please follow the existing stylistic conventions: wrap code to 76 columns when possible. Avoid tabs, use four space characters instead. Before you put time into a non-trivial patch, it is worth discussing it privately by <a href="mailto:dev@sqlmap.org">email</a>.</p>
<p>Many <a href="https://raw.github.com/sqlmapproject/sqlmap/master/doc/THANKS.md">people</a> have contributed in different ways to the sqlmap development. <strong>You</strong> can be the next!</p>
<a name="donate"><h1>Donate</h1></a>
<p>sqlmap is the result of numerous hours of passionated work from a small team of computer security enthusiasts. If you appreciated our work and you want to see sqlmap kept being developed, please consider making a donation or sponsor our efforts via <a href="https://github.com/sponsors/sqlmapproject">Sponsor page</a> or via <a href="https://www.paypal.com/donate/?hosted_button_id=T6ASMS54Q5GNY">PayPal</a>.</p>
<p>We also accept <span style="color:#f7931a;font-size:105%;font-weight:bold">&#x0243;</span>itcoins to <code>1AUrrKYsamBEThdruYTQmUfMfLF7aaxU6x</code>.</p>
<a name="license"><h1>License</h1></a>
<p>Copyright &copy; 2006-2024 by <a href="mailto:bernardo@sqlmap.org">Bernardo Damele Assumpcao Guimaraes</a> and <a href="mailto:miroslav@sqlmap.org">Miroslav Stampar</a>. All rights reserved.</p>
<p>This program is free software; you may redistribute and/or modify it under the terms of the <a href="http://www.gnu.org/licenses/old-licenses/gpl-2.0.html">GNU General Public License</a> as published by the <a href="http://www.fsf.org">Free Software Foundation</a>; Version 2 (or later) with the clarifications and exceptions described in the <a href="https://raw.github.com/sqlmapproject/sqlmap/master/LICENSE">license file</a>. This guarantees your right to use, modify, and redistribute this software under certain conditions. If you wish to embed sqlmap technology into proprietary software, we sell alternative licenses
(contact <a href="mailto:sales@sqlmap.org">sales@sqlmap.org</a>).</p>
<a name="disclaimer"><h1>Disclaimer</h1></a>
<p>This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License v2.0 for more details at <a href="http://www.gnu.org/licenses/gpl-2.0.html">http://www.gnu.org/licenses/gpl-2.0.html</a>.</p>
<p><strong>Usage of sqlmap for attacking targets without prior mutual consent is illegal. It is the end user's responsibility to obey all applicable local, state and federal laws. Developers assume no liability and are not responsible for any misuse or damage caused by this program.</strong></p>
<a name="developers"><h1>Developers</h1></a>
<ul>
<li><a href="mailto:bernardo@sqlmap.org">Bernardo Damele A. G.</a> (<a href="https://twitter.com/bdamele">@bdamele</a>)</li>
<li><a href="mailto:miroslav@sqlmap.org">Miroslav Stampar</a> (<a href="https://twitter.com/stamparm">@stamparm</a>)</li>
</ul>
<p>You can contact the development team by writing to <code>dev@sqlmap.org</code>.</p>
</section>
<aside id="sidebar">
<a href="https://github.com/sqlmapproject/sqlmap/zipball/master" class="button">
<small>Download</small>
.zip file
</a>
<a href="https://github.com/sqlmapproject/sqlmap/tarball/master" class="button" style="background:url(./images/download-button-green.png) no-repeat scroll 0 0 transparent">
<small>Download</small>
.tar.gz file
</a>
<br>
<div id="timeline">
<a class="twitter-timeline" data-dnt="true" href="https://twitter.com/sqlmap" data-widget-id="517688929021992960">Tweets by @sqlmap</a>
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+"://platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script>
</div>
</aside>
</div>
</div>
<script async src="https://www.googletagmanager.com/gtag/js?id=G-PK2GTNDFZ6"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-PK2GTNDFZ6');
</script>
</body>
</html>