diff --git a/ChangeLog.md b/ChangeLog.md index 8fdd1a2..b23d489 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -2,16 +2,16 @@ Changelog ========= -v0.1.19 - 2021-XX-XX +v0.1.19 - 2021-04-29 -------------------- - Using Scapy version 2.4.4. +- `pysap/SAPSSFS.py`: New module for SAP Secure Store in File System file format. +- `bin/pysaphdbuserstore`: New script for interacting with `hdbuserstore` SSFS files. - `requirements-examples.txt`: Renamed to match `setup.py`'s extra. - `pysap/SAPHDB.py`: Implementation of GSS-based auth method with Kerberos 5. - `pysap/SAPHDB.py`: Handling of Session Cookie values when found in the `CONNECT` response. - `pysap/SAPRouter.py`: Add support to route string in `SAPRouterNativeProxy`. ([\#33](https://github.com/SecureAuthCorp/pysap/pull/33)) Thanks [@gloomicious](https://github.com/gloomicious)! -- `pysap/SAPSSFS.py`: New module for SAP Secure Store in File System file format. -- `bin/pysaphdbuserstore`: New script for interacting with `hdbuserstore` SSFS files. - `examples/router_fingerprints.json`: New fingerprints for SAP Router version 7450.34.25.5091. Thanks [@jvis](https://twitter.com/jvis)! - `examples/router_portfw.py`: Add support to route string. ([\#33](https://github.com/SecureAuthCorp/pysap/pull/33)) Thanks [@gloomicious](https://github.com/gloomicious)! - `tests/sapssfs_test.py`: Basic unit tests for the SSFS file format. diff --git a/README.md b/README.md index 21467ea..851f9f9 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ pysap - Python library for crafting SAP's network protocols packets SECUREAUTH LABS. Copyright (C) 2021 SecureAuth Corporation. All rights reserved. -Version 0.1.19.dev0 (XXX 2021) +Version 0.1.19 (April 2021) Overview diff --git a/pysap/__init__.py b/pysap/__init__.py index 25b3bc3..0bcb3f1 100644 --- a/pysap/__init__.py +++ b/pysap/__init__.py @@ -20,7 +20,7 @@ __title__ = 'pysap' """The title of the library""" -__version__ = '0.1.19.dev0' +__version__ = '0.1.19' """The version of pysap""" __url__ = "https://www.secureauth.com/labs/open-source-tools/pysap"