mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-01-19 12:59:02 +00:00
Pleasing the pylint gods
This commit is contained in:
@@ -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.
|
||||
"""
|
||||
|
||||
@@ -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.
|
||||
"""
|
||||
|
||||
@@ -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
|
||||
"""
|
||||
|
||||
@@ -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.
|
||||
|
||||
@@ -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.
|
||||
|
||||
@@ -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.
|
||||
|
||||
Reference in New Issue
Block a user