sqlmap/lib/request/comparison.py

120 lines
4.1 KiB
Python
Raw Normal View History

#!/usr/bin/env python
"""
$Id$
Copyright (c) 2006-2010 sqlmap developers (http://sqlmap.sourceforge.net/)
2010-10-15 03:18:29 +04:00
See the file 'doc/COPYING' for copying permission
"""
import re
from difflib import SequenceMatcher
2010-12-04 13:13:18 +03:00
from lib.core.common import removeDynamicContent
from lib.core.common import wasLastRequestDBMSError
from lib.core.data import conf
2010-09-13 17:31:01 +04:00
from lib.core.data import kb
from lib.core.data import logger
2010-11-10 02:35:37 +03:00
from lib.core.settings import CONSTANT_RATIO
2010-11-10 01:49:31 +03:00
from lib.core.settings import DIFF_TOLERANCE
2010-09-16 13:32:09 +04:00
def comparison(page, headers=None, getSeqMatcher=False, pageLength=None):
2010-11-04 00:51:36 +03:00
if page is None and pageLength is None:
return None
regExpResults = None
conf.seqMatcher.set_seq1(kb.pageTemplate)
2010-11-04 00:51:36 +03:00
if page:
# String to be excluded before calculating page hash
if conf.eString and conf.eString in page:
index = page.index(conf.eString)
length = len(conf.eString)
pageWithoutString = page[:index]
pageWithoutString += page[index+length:]
page = pageWithoutString
# Regular expression matches to be excluded before calculating page hash
if conf.eRegexp:
regExpResults = re.findall(conf.eRegexp, page, re.I | re.M)
if regExpResults:
for regExpResult in regExpResults:
index = page.index(regExpResult)
length = len(regExpResult)
pageWithoutRegExp = page[:index]
pageWithoutRegExp += page[index+length:]
page = pageWithoutRegExp
# String to match in page when the query is valid
if conf.string:
return conf.string in page
# Regular expression to match in page when the query is valid
if conf.regexp:
return re.search(conf.regexp, page, re.I | re.M) is not None
# In case of an DBMS error page return None
if wasLastRequestDBMSError():
return None
2010-11-07 03:12:00 +03:00
# Dynamic content lines to be excluded before comparison
if not kb.nullConnection and not conf.longestCommon:
2010-12-04 13:13:18 +03:00
page = removeDynamicContent(page)
conf.seqMatcher.set_seq1(removeDynamicContent(kb.pageTemplate))
2010-11-04 00:51:36 +03:00
if not pageLength:
pageLength = len(page)
if kb.locks.seqLock:
kb.locks.seqLock.acquire()
2010-03-10 17:14:27 +03:00
if conf.longestCommon:
(firstPage, secondPage) = (conf.seqMatcher.a, page)
match = SequenceMatcher(None, firstPage, secondPage).find_longest_match(0, len(firstPage), 0, len(secondPage))
ratio = round(SequenceMatcher(None, firstPage[match[0]:match[0]+match[2]], secondPage[match[1]:match[1]+match[2]]).ratio(), 3)
elif not conf.eRegexp and not conf.eString and kb.nullConnection and pageLength:
2010-09-16 13:32:09 +04:00
ratio = 1. * pageLength / len(conf.seqMatcher.a)
2010-11-07 19:23:03 +03:00
2010-09-16 13:32:09 +04:00
if ratio > 1.:
ratio = 1. / ratio
else:
2010-11-07 03:12:00 +03:00
conf.seqMatcher.set_seq2(page)
2010-12-08 02:57:43 +03:00
ratio = round(conf.seqMatcher.quick_ratio(), 3)
if kb.locks.seqLock:
kb.locks.seqLock.release()
2010-03-10 17:14:27 +03:00
# If the url is stable and we did not set yet the match ratio and the
# current injected value changes the url page content
if conf.matchRatio is None:
2010-09-14 14:35:01 +04:00
if conf.thold:
conf.matchRatio = conf.thold
2010-12-11 20:12:19 +03:00
elif kb.pageStable and ratio > 0.6 and ratio < 0.99:
2010-11-10 01:32:05 +03:00
conf.matchRatio = ratio
logger.debug("setting match ratio for current parameter to %.3f" % conf.matchRatio)
2010-10-25 17:52:21 +04:00
elif not kb.pageStable or ( kb.pageStable and ratio < 0.6 ):
2010-11-10 02:35:37 +03:00
conf.matchRatio = CONSTANT_RATIO
logger.debug("setting match ratio for current parameter to default value 0.900")
# If it has been requested to return the ratio and not a comparison
# response
if getSeqMatcher:
return ratio
elif ratio == 1:
return True
elif conf.matchRatio is None:
return None
else:
2010-11-10 02:35:37 +03:00
if conf.matchRatio == CONSTANT_RATIO or conf.thold:
return ratio > conf.matchRatio
else:
2010-11-10 02:35:37 +03:00
return (ratio - conf.matchRatio) > DIFF_TOLERANCE