Pleasing the pylint gods

This commit is contained in:
Miroslav Stampar
2019-05-29 16:42:04 +02:00
parent 95560da7c1
commit 4077cd2342
25 changed files with 74 additions and 75 deletions

View File

@@ -22,7 +22,7 @@ from lib.core.data import logger
from lib.core.data import paths
from lib.core.exception import SqlmapDataException
class ICMPsh:
class ICMPsh(object):
"""
This class defines methods to call icmpsh for plugins.
"""

View File

@@ -53,7 +53,7 @@ from thirdparty import six
if IS_WIN:
import msvcrt
class Metasploit:
class Metasploit(object):
"""
This class defines methods to call Metasploit for plugins.
"""

View File

@@ -12,7 +12,7 @@ from lib.core.data import conf
from lib.core.data import logger
from lib.core.enums import REGISTRY_OPERATION
class Registry:
class Registry(object):
"""
This class defines methods to read and write Windows registry keys
"""

View File

@@ -29,7 +29,7 @@ from lib.core.exception import SqlmapUserQuitException
from lib.core.unescaper import unescaper
from lib.request import inject
class UDF:
class UDF(object):
"""
This class defines methods to deal with User-Defined Functions for
plugins.

View File

@@ -56,7 +56,7 @@ from lib.core.settings import VIEWSTATE_REGEX
from lib.request.connect import Connect as Request
from thirdparty.six.moves import urllib as _urllib
class Web:
class Web(object):
"""
This class defines web-oriented OS takeover functionalities for
plugins.

View File

@@ -35,7 +35,7 @@ from lib.core.exception import SqlmapUnsupportedFeatureException
from lib.core.threads import getCurrentThreadData
from lib.request import inject
class XP_cmdshell:
class XP_cmdshell(object):
"""
This class defines methods to deal with Microsoft SQL Server
xp_cmdshell extended procedure for plugins.