mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-25 11:03:47 +03:00
Minor improvement so that sqlmap tests also all parameters with no value (ig. par=).
This commit is contained in:
parent
516fdb9356
commit
cb3d2bac16
|
@ -87,8 +87,7 @@ def paramToDict(place, parameters=None):
|
||||||
|
|
||||||
if condition:
|
if condition:
|
||||||
value = elem[1]
|
value = elem[1]
|
||||||
if value:
|
testableParameters[parameter] = value
|
||||||
testableParameters[parameter] = value
|
|
||||||
|
|
||||||
if conf.testParameter and not testableParameters:
|
if conf.testParameter and not testableParameters:
|
||||||
paramStr = ", ".join(test for test in conf.testParameter)
|
paramStr = ", ".join(test for test in conf.testParameter)
|
||||||
|
|
|
@ -30,7 +30,7 @@ import sys
|
||||||
|
|
||||||
|
|
||||||
# sqlmap version and site
|
# sqlmap version and site
|
||||||
VERSION = "0.7rc3"
|
VERSION = "0.7rc4"
|
||||||
VERSION_STRING = "sqlmap/%s" % VERSION
|
VERSION_STRING = "sqlmap/%s" % VERSION
|
||||||
SITE = "http://sqlmap.sourceforge.net"
|
SITE = "http://sqlmap.sourceforge.net"
|
||||||
|
|
||||||
|
|
|
@ -62,7 +62,7 @@ aType =
|
||||||
aCred =
|
aCred =
|
||||||
|
|
||||||
# Use a HTTP proxy to connect to the target url.
|
# Use a HTTP proxy to connect to the target url.
|
||||||
# Syntax: http://url:port
|
# Syntax: http://address:port
|
||||||
proxy =
|
proxy =
|
||||||
|
|
||||||
# Maximum number of concurrent HTTP requests (handled with Python threads)
|
# Maximum number of concurrent HTTP requests (handled with Python threads)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user