mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-04 06:50:14 +00:00
Some renaming (pylint stuff)
This commit is contained in:
parent
e236ba5616
commit
b3cdec547b
17 changed files with 108 additions and 108 deletions
|
|
@ -18,7 +18,7 @@ class Enumeration(GenericEnumeration):
|
|||
warnMsg = "on SQLite it is not possible to get name of the current database"
|
||||
logger.warn(warnMsg)
|
||||
|
||||
def isDba(self, *args, **kwargs):
|
||||
def isDba(self, user=None):
|
||||
warnMsg = "on SQLite the current user has all privileges"
|
||||
logger.warn(warnMsg)
|
||||
|
||||
|
|
|
|||
|
|
@ -9,10 +9,10 @@ from lib.core.exception import SqlmapUnsupportedFeatureException
|
|||
from plugins.generic.filesystem import Filesystem as GenericFilesystem
|
||||
|
||||
class Filesystem(GenericFilesystem):
|
||||
def readFile(self, rFile):
|
||||
def readFile(self, remoteFile):
|
||||
errMsg = "on SQLite it is not possible to read files"
|
||||
raise SqlmapUnsupportedFeatureException(errMsg)
|
||||
|
||||
def writeFile(self, wFile, dFile, fileType=None, forceCheck=False):
|
||||
def writeFile(self, localFile, remoteFile, fileType=None, forceCheck=False):
|
||||
errMsg = "on SQLite it is not possible to write files"
|
||||
raise SqlmapUnsupportedFeatureException(errMsg)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue