Update related to #5389

This commit is contained in:
Miroslav Stampar
2023-04-11 14:19:39 +02:00
parent 0fba9b13b3
commit 60bb973c11
3 changed files with 3 additions and 8 deletions

View File

@@ -222,13 +222,13 @@ class Filesystem(object):
if conf.direct or isStackingAvailable():
if isStackingAvailable():
debugMsg = "going to read the file with stacked query SQL "
debugMsg = "going to try to read the file with stacked query SQL "
debugMsg += "injection technique"
logger.debug(debugMsg)
fileContent = self.stackedReadFile(remoteFile)
elif Backend.isDbms(DBMS.MYSQL):
debugMsg = "going to read the file with a non-stacked query "
debugMsg = "going to try to read the file with non-stacked query "
debugMsg += "SQL injection technique"
logger.debug(debugMsg)