Skip to content

Commit 090cf0c

Browse files
committed
About to tag a release
1 parent 25c62f6 commit 090cf0c

File tree

3 files changed

+6
-19
lines changed

3 files changed

+6
-19
lines changed

README.md

+1-15
Original file line numberDiff line numberDiff line change
@@ -40,20 +40,6 @@ Quick start
4040

4141
Grab the latest stable release, unpack it and run `python3 -m pip install .` (`python2 -m pip install .` for Python 2.x) from the directory where you placed it. Isn't that easy?
4242

43-
44-
Requirements
45-
============
46-
47-
* A Python interpreter. Python 2.6/2.7 and Python 3.7 are known to work.
48-
1. If you want to run the examples and you have Python < 2.7, you
49-
will need to install the `argparse` package for them to work.
50-
2. For Kerberos support you will need `pyasn1` package
51-
3. For cryptographic operations you will need `pycryptodomex` package
52-
4. For some examples you will need `pyOpenSSL` (rdp_check.py) and ldap3 (ntlmrelayx.py)
53-
5. For ntlmrelayx.py you will also need `ldapdomaindump`, `flask` and `ldap3`
54-
6. If you're under Windows, you will need `pyReadline`
55-
* A recent release of Impacket.
56-
5743
Installing
5844
----------
5945

@@ -70,7 +56,7 @@ If you want to run the library test cases you need to do mainly three things:
7056

7157
1. Install and configure a Windows 2012 R2 Domain Controller.
7258
* Be sure the RemoteRegistry service is enabled and running.
73-
2. Configure the [dcetest.cfg](https://github.com/SecureAuthCorp/impacket/blob/impacket_0_9_22/tests/SMB_RPC/dcetests.cfg) file with the necessary information
59+
2. Configure the [dcetest.cfg](https://github.com/SecureAuthCorp/impacket/blob/impacket_0_9_23/tests/SMB_RPC/dcetests.cfg) file with the necessary information
7460
3. Install tox (`python3 -m pip install tox`)
7561

7662
Once that's done, you can run `tox` and wait for the results. If all goes well, all test cases should pass.

impacket/version.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# SECUREAUTH LABS. Copyright 2019 SecureAuth Corporation. All rights reserved.
1+
# SECUREAUTH LABS. Copyright 2021 SecureAuth Corporation. All rights reserved.
22
#
33
# This software is provided under under a slightly modified version
44
# of the Apache Software License. See the accompanying LICENSE file
@@ -14,7 +14,7 @@
1414
version = "?"
1515
print("Cannot determine Impacket version. "
1616
"If running from source you should at least run \"python setup.py egg_info\"")
17-
BANNER = "Impacket v{} - Copyright 2020 SecureAuth Corporation\n".format(version)
17+
BANNER = "Impacket v{} - Copyright 2021 SecureAuth Corporation\n".format(version)
1818

1919
def getInstallationPath():
2020
return 'Impacket Library Installation Path: {}'.format(__path__[0])

setup.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
VER_MAJOR = 0
1414
VER_MINOR = 9
1515
VER_MAINT = 23
16-
VER_PREREL = "dev1"
16+
VER_PREREL = ""
1717
try:
1818
if call(["git", "branch"], stderr=STDOUT, stdout=open(os.devnull, 'w')) == 0:
1919
p = Popen("git log -1 --format=%cd --date=format:%Y%m%d.%H%M%S", shell=True, stdin=PIPE, stderr=PIPE, stdout=PIPE)
@@ -40,7 +40,7 @@ def read(fname):
4040
return open(os.path.join(os.path.dirname(__file__), fname)).read()
4141

4242
setup(name = PACKAGE_NAME,
43-
version = "{}.{}.{}.{}{}".format(VER_MAJOR,VER_MINOR,VER_MAINT,VER_PREREL,VER_LOCAL),
43+
version="{}.{}.{}".format (VER_MAJOR, VER_MINOR, VER_MAINT),
4444
description = "Network protocols Constructors and Dissectors",
4545
url = "https://www.secureauth.com/labs/open-source-tools/impacket",
4646
author = "SecureAuth Corporation",
@@ -64,6 +64,7 @@ def read(fname):
6464
'pyreadline:sys_platform=="win32"': [],
6565
},
6666
classifiers = [
67+
"Programming Language :: Python :: 3.9",
6768
"Programming Language :: Python :: 3.8",
6869
"Programming Language :: Python :: 3.7",
6970
"Programming Language :: Python :: 3.6",

0 commit comments

Comments
 (0)