mirror of
https://github.com/lgandx/Responder.git
synced 2025-12-08 21:51:30 +00:00
Ported MultiRelay to python3 + enhancements.
This commit is contained in:
20
tools/MultiRelay/impacket-dev/impacket/version.py
Normal file
20
tools/MultiRelay/impacket-dev/impacket/version.py
Normal file
@@ -0,0 +1,20 @@
|
||||
# SECUREAUTH LABS. Copyright 2019 SecureAuth Corporation. All rights reserved.
|
||||
#
|
||||
# This software is provided under under a slightly modified version
|
||||
# of the Apache Software License. See the accompanying LICENSE file
|
||||
# for more information.
|
||||
#
|
||||
import pkg_resources
|
||||
from impacket import __path__
|
||||
|
||||
|
||||
try:
|
||||
version = "0.9.23.dev1+20210127.141011.3673c588"
|
||||
except pkg_resources.DistributionNotFound:
|
||||
version = "?"
|
||||
print("Cannot determine Impacket version. "
|
||||
"If running from source you should at least run \"python setup.py egg_info\"")
|
||||
BANNER = "Impacket v{} - Copyright 2020 SecureAuth Corporation\n".format(version)
|
||||
|
||||
def getInstallationPath():
|
||||
return 'Impacket Library Installation Path: {}'.format(__path__[0])
|
||||
Reference in New Issue
Block a user