We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4336a8f commit 95ed6b7Copy full SHA for 95ed6b7
2 files changed
lib/takeover/xp_cmdshell.py
@@ -44,7 +44,7 @@ def __init__(self):
44
def _xpCmdshellCreate(self):
45
cmd = ""
46
47
- if Backend.isVersionWithin(("2005", "2008")):
+ if Backend.isVersionWithin(("2005", "2008", "2012")):
48
logger.debug("activating sp_OACreate")
49
50
cmd = getSQLSnippet(DBMS.MSSQL, "activate_sp_oacreate")
plugins/dbms/mssqlserver/fingerprint.py
@@ -92,7 +92,8 @@ def checkDbms(self):
92
93
for version, check in (("2000", "HOST_NAME()=HOST_NAME()"), \
94
("2005", "XACT_STATE()=XACT_STATE()"), \
95
- ("2008", "SYSDATETIME()=SYSDATETIME()")):
+ ("2008", "SYSDATETIME()=SYSDATETIME()"), \
96
+ ("2012", "CONCAT(NULL,NULL)=CONCAT(NULL,NULL)")):
97
result = inject.checkBooleanExpression(check)
98
99
if result:
0 commit comments