Skip to content

Commit d9a4a09

Browse files
committed
Minor patch
1 parent fb9cec1 commit d9a4a09

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

lib/core/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
from thirdparty import six
2121

2222
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
23-
VERSION = "1.10.7.78"
23+
VERSION = "1.10.7.79"
2424
TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable"
2525
TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34}
2626
VERSION_STRING = "sqlmap/%s#%s" % ('.'.join(VERSION.split('.')[:-1]) if VERSION.count('.') > 2 and VERSION.split('.')[-1] == '0' else VERSION, TYPE)

plugins/dbms/hsqldb/filesystem.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ def stackedWriteFile(self, localFile, remoteFile, fileType=None, forceCheck=Fals
5252

5353
logger.debug("cleaning up the database management system")
5454

55-
delQuery = "DELETE PROCEDURE %s" % func_name
55+
delQuery = "DROP PROCEDURE %s" % func_name
5656
inject.goStacked(delQuery)
5757

5858
message = "the local file '%s' has been written on the back-end DBMS" % localFile

plugins/dbms/informix/fingerprint.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ def checkDbms(self):
9797
logger.info(infoMsg)
9898

9999
for version in ("14.1", "12.1", "11.7", "11.5", "10.0"):
100-
output = inject.checkBooleanExpression("EXISTS(SELECT 1 FROM SYSMASTER:SYSDUAL WHERE DBINFO('VERSION,'FULL') LIKE '%%%s%%')" % version)
100+
output = inject.checkBooleanExpression("EXISTS(SELECT 1 FROM SYSMASTER:SYSDUAL WHERE DBINFO('VERSION','FULL') LIKE '%%%s%%')" % version)
101101

102102
if output:
103103
Backend.setVersion(version)

0 commit comments

Comments
 (0)