2008-10-15 19:38:22 +04:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
"""
|
2008-10-15 19:56:32 +04:00
|
|
|
$Id$
|
2008-10-15 19:38:22 +04:00
|
|
|
|
2010-10-14 18:41:14 +04:00
|
|
|
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
|
2008-10-15 19:38:22 +04:00
|
|
|
"""
|
|
|
|
|
2008-12-17 00:30:24 +03:00
|
|
|
import time
|
|
|
|
|
|
|
|
from lib.core.agent import agent
|
2010-05-13 15:05:35 +04:00
|
|
|
from lib.core.common import calculateDeltaSeconds
|
2009-04-22 15:48:07 +04:00
|
|
|
from lib.core.common import getDelayQuery
|
|
|
|
from lib.core.data import conf
|
2008-11-13 02:44:09 +03:00
|
|
|
from lib.core.data import kb
|
|
|
|
from lib.core.data import logger
|
|
|
|
from lib.request import inject
|
2008-12-17 00:30:24 +03:00
|
|
|
from lib.request.connect import Connect as Request
|
2010-01-05 14:43:16 +03:00
|
|
|
|
2008-11-13 02:44:09 +03:00
|
|
|
def timeTest():
|
2010-10-31 19:58:38 +03:00
|
|
|
infoMsg = "testing time-based blind sql injection on parameter "
|
2010-10-19 22:17:34 +04:00
|
|
|
infoMsg += "'%s' with %s condition syntax" % (kb.injParameter, conf.logic)
|
2008-11-13 02:44:09 +03:00
|
|
|
logger.info(infoMsg)
|
|
|
|
|
2010-01-05 14:43:16 +03:00
|
|
|
timeQuery = getDelayQuery(andCond=True)
|
2010-10-25 18:11:47 +04:00
|
|
|
query = agent.prefixQuery("AND %s" % timeQuery)
|
2008-12-17 00:30:24 +03:00
|
|
|
query = agent.postfixQuery(query)
|
|
|
|
payload = agent.payload(newValue=query)
|
|
|
|
start = time.time()
|
|
|
|
_ = Request.queryPage(payload)
|
2010-05-13 15:05:35 +04:00
|
|
|
duration = calculateDeltaSeconds(start)
|
2008-12-17 00:30:24 +03:00
|
|
|
|
2009-04-22 15:48:07 +04:00
|
|
|
if duration >= conf.timeSec:
|
2010-10-31 19:58:38 +03:00
|
|
|
infoMsg = "the target url is affected by a time-based blind "
|
|
|
|
infoMsg += "sql injection with AND condition syntax on parameter "
|
|
|
|
infoMsg += "'%s'" % kb.injParameter
|
2008-12-17 00:30:24 +03:00
|
|
|
logger.info(infoMsg)
|
|
|
|
|
|
|
|
kb.timeTest = payload
|
2008-11-13 02:44:09 +03:00
|
|
|
else:
|
2010-10-31 19:58:38 +03:00
|
|
|
warnMsg = "the target url is not affected by a time-based blind "
|
|
|
|
warnMsg += "sql injection with AND condition syntax on parameter "
|
|
|
|
warnMsg += "'%s'" % kb.injParameter
|
2008-12-17 00:30:24 +03:00
|
|
|
logger.warn(warnMsg)
|
|
|
|
|
2010-10-31 19:58:38 +03:00
|
|
|
infoMsg = "testing time-based blind sql injection on parameter "
|
|
|
|
infoMsg += "'%s' with stacked queries syntax" % kb.injParameter
|
2008-12-17 00:30:24 +03:00
|
|
|
logger.info(infoMsg)
|
|
|
|
|
2010-01-05 14:43:16 +03:00
|
|
|
timeQuery = getDelayQuery(andCond=True)
|
|
|
|
start = time.time()
|
|
|
|
payload, _ = inject.goStacked(timeQuery)
|
2010-05-13 15:05:35 +04:00
|
|
|
duration = calculateDeltaSeconds(start)
|
2008-12-17 00:30:24 +03:00
|
|
|
|
2009-04-22 15:48:07 +04:00
|
|
|
if duration >= conf.timeSec:
|
2010-10-31 19:58:38 +03:00
|
|
|
infoMsg = "the target url is affected by a time-based blind sql "
|
|
|
|
infoMsg += "injection with stacked queries syntax on parameter "
|
|
|
|
infoMsg += "'%s'" % kb.injParameter
|
2008-12-17 00:30:24 +03:00
|
|
|
logger.info(infoMsg)
|
|
|
|
|
|
|
|
kb.timeTest = payload
|
|
|
|
else:
|
2010-10-31 19:58:38 +03:00
|
|
|
warnMsg = "the target url is not affected by a time-based blind "
|
|
|
|
warnMsg += "sql injection with stacked queries syntax on parameter "
|
|
|
|
warnMsg += "'%s'" % kb.injParameter
|
2008-12-17 00:30:24 +03:00
|
|
|
logger.warn(warnMsg)
|
|
|
|
|
|
|
|
kb.timeTest = False
|
2008-11-13 03:03:04 +03:00
|
|
|
|
|
|
|
return kb.timeTest
|
2010-01-05 14:43:16 +03:00
|
|
|
|
2009-04-22 15:48:07 +04:00
|
|
|
def timeUse(query):
|
|
|
|
start = time.time()
|
|
|
|
_, _ = inject.goStacked(query)
|
2010-05-13 15:05:35 +04:00
|
|
|
duration = calculateDeltaSeconds(start)
|
2009-04-22 15:48:07 +04:00
|
|
|
|
|
|
|
return duration
|