mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-04 06:50:14 +00:00
Implements #2908
This commit is contained in:
parent
c938d77be9
commit
aa9b5e4e0c
20 changed files with 1790 additions and 34 deletions
|
|
@ -109,7 +109,7 @@ class UDF(object):
|
|||
return output
|
||||
|
||||
def udfCheckNeeded(self):
|
||||
if (not conf.fileRead or (conf.fileRead and not Backend.isDbms(DBMS.PGSQL))) and "sys_fileread" in self.sysUdfs:
|
||||
if (not any((conf.fileRead, conf.commonFiles)) or (any((conf.fileRead, conf.commonFiles)) and not Backend.isDbms(DBMS.PGSQL))) and "sys_fileread" in self.sysUdfs:
|
||||
self.sysUdfs.pop("sys_fileread")
|
||||
|
||||
if not conf.osPwn:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue