Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d6a361f commit dea15b5Copy full SHA for dea15b5
1 file changed
lib/takeover/udf.py
@@ -165,10 +165,13 @@ def udfInjectSys(self):
165
166
def udfInjectCustom(self):
167
if Backend.getIdentifiedDbms() not in (DBMS.MYSQL, DBMS.PGSQL):
168
- errMsg = "UDF injection feature is not yet implemented on %s" % Backend.getIdentifiedDbms()
169
- raise SqlmapUnsupportedFeatureException(errMsg)
+ errMsg = "UDF injection feature only works on MySQL and PostgreSQL"
+ logger.error(errMsg)
170
+ return
171
172
if not isTechniqueAvailable(PAYLOAD.TECHNIQUE.STACKED) and not conf.direct:
173
+ errMsg = "UDF injection feature requires stacked queries SQL injection"
174
175
return
176
177
self.checkDbmsOs()
0 commit comments