Skip to content
This repository was archived by the owner on Dec 6, 2023. It is now read-only.

Update lsassy module for 3.1.8 #768

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions cme/modules/hash_spider.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
3 changes: 0 additions & 3 deletions cme/modules/lsassy_dump.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down