mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-22 17:46:37 +03:00
some code refactoring
This commit is contained in:
parent
19a82e151c
commit
131789a6e4
|
@ -53,17 +53,11 @@ def comparison(page, headers=None, getSeqMatcher=False):
|
|||
|
||||
# String to match in page when the query is valid
|
||||
if conf.string:
|
||||
if conf.string in page:
|
||||
return True
|
||||
else:
|
||||
return False
|
||||
return conf.string in page
|
||||
|
||||
# Regular expression to match in page when the query is valid
|
||||
if conf.regexp:
|
||||
if re.search(conf.regexp, page, re.I | re.M):
|
||||
return True
|
||||
else:
|
||||
return False
|
||||
return re.search(conf.regexp, page, re.I | re.M) is not None
|
||||
|
||||
if conf.seqLock:
|
||||
conf.seqLock.acquire()
|
||||
|
@ -102,7 +96,5 @@ def comparison(page, headers=None, getSeqMatcher=False):
|
|||
|
||||
# If the url is not stable it returns sequence matcher between the
|
||||
# first untouched HTTP response page content and this content
|
||||
elif ratio > conf.matchRatio:
|
||||
return True
|
||||
else:
|
||||
return False
|
||||
return ratio > conf.matchRatio
|
||||
|
|
Loading…
Reference in New Issue
Block a user