Skip to content

Commit

Permalink
Changing from dev version to release version for tagging.
Browse files Browse the repository at this point in the history
  • Loading branch information
asolino committed May 30, 2018
1 parent ee1800c commit 770a017
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ What protocols are featured?
* NMB and SMB1, SMB2 and SMB3 (high-level implementations).
* MSRPC version 5, over different transports: TCP, SMB/TCP, SMB/NetBIOS and HTTP.
* Plain, NTLM and Kerberos authentications, using password/hashes/tickets/keys.
* Portions/full implementation of the following MSRPC interfaces: EPM, DTYPES, LSAD, LSAT, NRPC, RRP, SAMR, SRVS, WKST, SCMR, DCOM, WMI.
* Portions/full implementation of the following MSRPC interfaces: EPM, DTYPES, LSAD, LSAT, NRPC, RRP, SAMR, SRVS, WKST, SCMR, BKRP, DHCPM, EVEN6, MGMT, SASEC, TSCH, DCOM, WMI.
* Portions of TDS (MSSQL) and LDAP protocol implementations.


Expand Down Expand Up @@ -71,7 +71,7 @@ If you want to run the library test cases you need to do mainly three things:

1. Install and configure a Windows 2012 R2 Domain Controller.
* Be sure the RemoteRegistry service is enabled and running.
2. Configure the [dcetest.cfg](https://github.com/CoreSecurity/impacket/blob/master/tests/SMB_RPC/dcetests.cfg) file with the necessary information
2. Configure the [dcetest.cfg](https://github.com/CoreSecurity/impacket/blob/impacket_0_9_17/tests/SMB_RPC/dcetests.cfg) file with the necessary information
3. Install tox (`pip install tox`)

Once that's done, you can run `tox` and wait for the results. If all goes well, all test cases should pass.
Expand Down
2 changes: 1 addition & 1 deletion impacket/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#

VER_MAJOR = "0"
VER_MINOR = "9.17-dev"
VER_MINOR = "9.17"

BANNER = "Impacket v%s.%s - Copyright 2002-2018 Core Security Technologies\n" % (VER_MAJOR,VER_MINOR)

7 changes: 5 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,19 @@
else:
data_files = []

def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()

setup(name = PACKAGE_NAME,
version = "0.9.17-dev",
version = "0.9.17",
description = "Network protocols Constructors and Dissectors",
url = "https://www.coresecurity.com/corelabs-research/open-source-tools/impacket",
author = "Core Security Technologies",
author_email = "[email protected]",
maintainer = "Alberto Solino",
maintainer_email = "[email protected]",
license = "Apache modified",
long_description = 'Impacket is a collection of Python classes focused on providing access to network packets. Impacket allows Python developers to craft and decode network packets in simple and consistent manner.',
long_description = read('README'),
platforms = ["Unix","Windows"],
packages=['impacket', 'impacket.dcerpc', 'impacket.examples', 'impacket.dcerpc.v5', 'impacket.dcerpc.v5.dcom',
'impacket.krb5', 'impacket.ldap', 'impacket.examples.ntlmrelayx',
Expand Down

0 comments on commit 770a017

Please sign in to comment.