diff --git a/cme/modules/hash_spider.py b/cme/modules/hash_spider.py index eb92f745b..072d91355 100644 --- a/cme/modules/hash_spider.py +++ b/cme/modules/hash_spider.py @@ -8,7 +8,6 @@ from sys import exit from neo4j import GraphDatabase, basic_auth from neo4j.exceptions import AuthError, ServiceUnavailable -from lsassy import logger from lsassy.dumper import Dumper from lsassy.parser import Parser from lsassy.session import Session @@ -131,7 +130,6 @@ def options(self, context, module_options): def run_lsassy(self, context, connection): # Couldn't figure out how to properly retrieve output from the module without editing. Blatantly ripped from lsassy_dump.py. Thanks pixis - @hackanddo! - logger.init(quiet=True) host = connection.host domain_name = connection.domain username = connection.username diff --git a/cme/modules/lsassy_dump.py b/cme/modules/lsassy_dump.py index ebbfddf4b..3a2bf9ee5 100644 --- a/cme/modules/lsassy_dump.py +++ b/cme/modules/lsassy_dump.py @@ -6,8 +6,6 @@ # https://beta.hackndo.com [FR] # https://en.hackndo.com [EN] - -from lsassy import logger from lsassy.dumper import Dumper from lsassy.parser import Parser from lsassy.session import Session @@ -30,7 +28,6 @@ def options(self, context, module_options): self.method = module_options['METHOD'] def on_admin_login(self, context, connection): - logger.init(quiet=True) host = connection.host domain_name = connection.domain username = connection.username diff --git a/pyproject.toml b/pyproject.toml index 5d7f56bfb..3d7b3bd34 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -28,7 +28,7 @@ cmedb = 'cme.cmedb:main' python = "^3.7.0" requests = ">=2.27.1" beautifulsoup4 = ">=4.11,<5" -lsassy = ">=3.1.3" +lsassy = ">=3.1.8" termcolor = "^1.1.0" msgpack = "^1.0.0" neo4j = "^4.1.1"