forked from p15670423/monkey
Agent: Remove unused loggers
This commit is contained in:
parent
d2e5828c3b
commit
96dee616df
|
@ -5,7 +5,6 @@
|
||||||
"""
|
"""
|
||||||
|
|
||||||
import json
|
import json
|
||||||
import logging
|
|
||||||
import posixpath
|
import posixpath
|
||||||
import string
|
import string
|
||||||
from random import SystemRandom
|
from random import SystemRandom
|
||||||
|
@ -24,8 +23,6 @@ from infection_monkey.model import (
|
||||||
)
|
)
|
||||||
from infection_monkey.utils.commands import build_monkey_commandline
|
from infection_monkey.utils.commands import build_monkey_commandline
|
||||||
|
|
||||||
logger = logging.getLogger(__name__)
|
|
||||||
|
|
||||||
|
|
||||||
class HadoopExploiter(WebRCE):
|
class HadoopExploiter(WebRCE):
|
||||||
_TARGET_OS_TYPE = ["linux", "windows"]
|
_TARGET_OS_TYPE = ["linux", "windows"]
|
||||||
|
|
|
@ -1,8 +1,5 @@
|
||||||
import logging
|
|
||||||
import textwrap
|
import textwrap
|
||||||
|
|
||||||
logger = logging.getLogger(__name__)
|
|
||||||
|
|
||||||
|
|
||||||
class Payload(object):
|
class Payload(object):
|
||||||
"""
|
"""
|
||||||
|
|
|
@ -1,4 +1,3 @@
|
||||||
import logging
|
|
||||||
from typing import List
|
from typing import List
|
||||||
|
|
||||||
from infection_monkey.system_info.windows_cred_collector import pypykatz_handler
|
from infection_monkey.system_info.windows_cred_collector import pypykatz_handler
|
||||||
|
@ -6,8 +5,6 @@ from infection_monkey.system_info.windows_cred_collector.windows_credentials imp
|
||||||
WindowsCredentials,
|
WindowsCredentials,
|
||||||
)
|
)
|
||||||
|
|
||||||
logger = logging.getLogger(__name__)
|
|
||||||
|
|
||||||
|
|
||||||
class MimikatzCredentialCollector(object):
|
class MimikatzCredentialCollector(object):
|
||||||
@staticmethod
|
@staticmethod
|
||||||
|
|
Loading…
Reference in New Issue