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

Skip to content

Commit cb3d2ba

Browse files
committed
Minor improvement so that sqlmap tests also all parameters with no value (ig. par=).
1 parent 516fdb9 commit cb3d2ba

3 files changed

Lines changed: 3 additions & 4 deletions

File tree

lib/core/common.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,8 +87,7 @@ def paramToDict(place, parameters=None):
8787

8888
if condition:
8989
value = elem[1]
90-
if value:
91-
testableParameters[parameter] = value
90+
testableParameters[parameter] = value
9291

9392
if conf.testParameter and not testableParameters:
9493
paramStr = ", ".join(test for test in conf.testParameter)

lib/core/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030

3131

3232
# sqlmap version and site
33-
VERSION = "0.7rc3"
33+
VERSION = "0.7rc4"
3434
VERSION_STRING = "sqlmap/%s" % VERSION
3535
SITE = "http://sqlmap.sourceforge.net"
3636

sqlmap.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ aType =
6262
aCred =
6363

6464
# Use a HTTP proxy to connect to the target url.
65-
# Syntax: http://url:port
65+
# Syntax: http://address:port
6666
proxy =
6767

6868
# Maximum number of concurrent HTTP requests (handled with Python threads)

0 commit comments

Comments
 (0)