Agent: Remove unused loggers

This commit is contained in:
Mike Salvatore 2021-08-31 09:57:19 -04:00
parent d2e5828c3b
commit 96dee616df
3 changed files with 0 additions and 9 deletions

View File

@ -5,7 +5,6 @@
"""
import json
import logging
import posixpath
import string
from random import SystemRandom
@ -24,8 +23,6 @@ from infection_monkey.model import (
)
from infection_monkey.utils.commands import build_monkey_commandline
logger = logging.getLogger(__name__)
class HadoopExploiter(WebRCE):
_TARGET_OS_TYPE = ["linux", "windows"]

View File

@ -1,8 +1,5 @@
import logging
import textwrap
logger = logging.getLogger(__name__)
class Payload(object):
"""

View File

@ -1,4 +1,3 @@
import logging
from typing import List
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,
)
logger = logging.getLogger(__name__)
class MimikatzCredentialCollector(object):
@staticmethod