Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit dd3f65f

Browse files
committed
Updated ChangeLog
1 parent f53ef94 commit dd3f65f

2 files changed

Lines changed: 13 additions & 10 deletions

File tree

doc/ChangeLog

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -10,19 +10,19 @@ sqlmap (0.8-1) stable; urgency=low
1010
* Support for takeover features on PostgreSQL 8.4 (Bernardo).
1111
* Enhanced --priv-esc to rely on new Metasploit Meterpreter's
1212
'getsystem' command to elevate privileges of the user running the
13-
back-end DBMS instance on Windows to SYSTEM (Bernardo).
13+
back-end DBMS instance to SYSTEM on Windows (Bernardo).
1414
* Automatic support in --os-pwn to use the web uploader/backdoor to
1515
upload and execute the Metasploit payload stager when stacked queries
1616
SQL injection is not supported, for instance on MySQL/PHP and
17-
MySQL/ASP but there is a writable folder within the web server
18-
document root (Bernardo).
17+
MySQL/ASP, but there is a writable folder within the web server
18+
document root (Bernardo and Miroslav).
1919
* Fixed web backdoor functionality for --os-cmd, --os-shell and --os-pwn
2020
useful when web application does not support stacked queries (Bernardo).
21-
* Updated active fingerprint and comment injection fingerprint for
22-
MySQL 5.1, MySQL 5.4 and MySQL 5.5 (Bernardo).
2321
* Added support to properly read (--read-file) also binary files via
2422
PostgreSQL by injecting sqlmap new sys_fileread() user-defined
2523
function (Bernardo and Miroslav).
24+
* Updated active fingerprint and comment injection fingerprint for
25+
MySQL 5.1, MySQL 5.4 and MySQL 5.5 (Bernardo).
2626
* Updated active fingerprint for PostgreSQL 8.4 (Bernardo).
2727
* Support for NTLM authentication via python-ntlm third party library,
2828
http://code.google.com/p/python-ntlm/, --auth-type NTLM (Bernardo).
@@ -32,7 +32,10 @@ sqlmap (0.8-1) stable; urgency=low
3232
(Miroslav).
3333
* Added support for regular expression based scope when parsing Burp or
3434
Web Scarab proxy log file (-l), --scope (Miroslav).
35-
* Added option (-r) to load the HTTP request from a text file (Miroslav).
35+
* Added option (-r) to load a single HTTP request from a text file
36+
(Miroslav).
37+
* Added option (--ignore-proxy) to ignore system default HTTP proxy
38+
(Miroslav).
3639
* Added support to ignore Set-Cookie in HTTP responses,
3740
--drop-set-cookie (Miroslav).
3841
* Added support to specify which Google dork result page to parse,
@@ -47,9 +50,9 @@ sqlmap (0.8-1) stable; urgency=low
4750
https://svn.sqlmap.org/sqlmap/trunk/sqlmap/extra/udfhack (Bernardo
4851
and Miroslav).
4952
* Major code cleanup (Miroslav).
50-
* Added simple file encryption/compression utility, extra/cloak/cloak.py
51-
used by sqlmap to decrypt on the fly Churrasco and UPX executables and
52-
web shells consequently reducing drastically the number of anti virus
53+
* Added simple file encryption/compression utility, extra/cloak/cloak.py,
54+
used by sqlmap to decrypt on the fly Churrasco, UPX executable and web
55+
shells consequently reducing drastically the number of anti-virus
5356
softwares that mistakenly mark sqlmap as a malware (Miroslav).
5457

5558
-- Bernardo Damele A. G. <[email protected]> Mon, 1 Mar 2010 10:00:00 +0000

lib/parse/cmdline.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -434,7 +434,7 @@ def cmdLineParser():
434434
(args, _) = parser.parse_args()
435435

436436
if not args.url and not args.list and not args.googleDork and not args.configFile and not args.requestFile and not args.updateAll:
437-
errMsg = "missing a mandatory parameter ('-u', '-l', '-g', '-c', '-r' or '--update'), "
437+
errMsg = "missing a mandatory parameter ('-u', '-l', '-r', '-g', '-c' or '--update'), "
438438
errMsg += "-h for help"
439439
parser.error(errMsg)
440440

0 commit comments

Comments
 (0)