mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-03 22:31:34 +00:00
Minor style updates
This commit is contained in:
parent
d3d54a965b
commit
ad1266a080
14 changed files with 25 additions and 38 deletions
|
|
@ -5301,7 +5301,7 @@ def parseRequestFile(reqFile, checkParams=True):
|
|||
logger.warning(warnMsg)
|
||||
continue
|
||||
|
||||
if not(conf.scope and not re.search(conf.scope, url, re.I)):
|
||||
if not (conf.scope and not re.search(conf.scope, url, re.I)):
|
||||
yield (url, method, None, cookie, tuple())
|
||||
|
||||
def _parseBurpLog(content):
|
||||
|
|
@ -5451,7 +5451,7 @@ def parseRequestFile(reqFile, checkParams=True):
|
|||
scheme = None
|
||||
port = None
|
||||
|
||||
if not(conf.scope and not re.search(conf.scope, url, re.I)):
|
||||
if not (conf.scope and not re.search(conf.scope, url, re.I)):
|
||||
yield (url, conf.method or method, data, cookie, tuple(headers))
|
||||
|
||||
content = readCachedFileContent(reqFile)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue