mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-07 05:01:30 +00:00
sqlmap 0.6.3-rc1:
* Minor enhancement to be able to specify the number of seconds to wait between each HTTP request. * Minor bug fix to handle session.error and session.timeout in HTTP requests. * Updated documentation.
This commit is contained in:
@@ -402,6 +402,9 @@ def __cleanupOptions():
|
||||
if conf.user:
|
||||
conf.user = conf.user.replace(" ", "")
|
||||
|
||||
if conf.delay:
|
||||
conf.delay = float(conf.delay)
|
||||
|
||||
|
||||
def __setConfAttributes():
|
||||
"""
|
||||
@@ -488,7 +491,7 @@ def __saveCmdline():
|
||||
if value == None:
|
||||
if datatype == "boolean":
|
||||
value = "False"
|
||||
elif datatype == "integer":
|
||||
elif datatype in ( "integer", "float" ):
|
||||
if option == "threads":
|
||||
value = "1"
|
||||
else:
|
||||
|
||||
Reference in New Issue
Block a user