15
0

Accepting request 1201560 from home:mnhauke

- Update to version 0.12.0
  Library improvements
  * Fixed broken hRSetServiceObjectSecurity method.
  * Removed dsinternals dependency.
  * Fixed srvs.hNetrShareEnum returning erronous shares.
  * Fixed lmhash computing to support non standard characters in
    the password.
  * Assorted fixes when processing Unicode data.
  * Added [MS-GKDI] Group Key Distribution Protocol implementation.
  * Fixed incorrect padding in
    SMBSessionSetupAndX_Extended_ResponseData.
  * Upgraded dependency pyreadline -> pyreadline3.
  * SMB Server:
    + Added query information level 0x0109 for smb1
      "SMB_QUERY_FILE_STREAM_INFO".
    + Fixed filename encoding in queryPathInformation.
    + Fixed NextEntryOffset for large directory listings.
    + Fixed server returning an empty folder when cutting and
      pasting recursive directories.
  * DHCP: Fixed encoding issues.
  Example Improvements
  * multiple improvements, see
    https://github.com/fortra/impacket/releases/tag/impacket_0_12_0
  New Examples
  * describeTicket.py: Ticket describer and decrypter.
  * GetADComputers.py: Query's DC via LDAP and returns the COMPUTER
    objects and the useful attributes such as full dns name,
    operating system name and version.
  * GetLAPSPassword.py: Extract LAPS passwords from LDAP.
  * dacledit.py: This script can be used to read, write, remove,

OBS-URL: https://build.opensuse.org/request/show/1201560
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-impacket?expand=0&rev=19
This commit is contained in:
2024-09-17 12:26:51 +00:00
committed by Git OBS Bridge
parent 9d51b0c3b7
commit b974d1fb0c
5 changed files with 50 additions and 54 deletions

View File

@@ -1,3 +1,44 @@
-------------------------------------------------------------------
Tue Sep 17 08:55:05 UTC 2024 - Martin Hauke <mardnh@gmx.de>
- Update to version 0.12.0
Library improvements
* Fixed broken hRSetServiceObjectSecurity method.
* Removed dsinternals dependency.
* Fixed srvs.hNetrShareEnum returning erronous shares.
* Fixed lmhash computing to support non standard characters in
the password.
* Assorted fixes when processing Unicode data.
* Added [MS-GKDI] Group Key Distribution Protocol implementation.
* Fixed incorrect padding in
SMBSessionSetupAndX_Extended_ResponseData.
* Upgraded dependency pyreadline -> pyreadline3.
* SMB Server:
+ Added query information level 0x0109 for smb1
"SMB_QUERY_FILE_STREAM_INFO".
+ Fixed filename encoding in queryPathInformation.
+ Fixed NextEntryOffset for large directory listings.
+ Fixed server returning an empty folder when cutting and
pasting recursive directories.
* DHCP: Fixed encoding issues.
Example Improvements
* multiple improvements, see
https://github.com/fortra/impacket/releases/tag/impacket_0_12_0
New Examples
* describeTicket.py: Ticket describer and decrypter.
* GetADComputers.py: Query's DC via LDAP and returns the COMPUTER
objects and the useful attributes such as full dns name,
operating system name and version.
* GetLAPSPassword.py: Extract LAPS passwords from LDAP.
* dacledit.py: This script can be used to read, write, remove,
backup, restore ACEs (Access Control Entries) in an object
DACL (Discretionary Access Control List).
* owneredit.py: Added this script to abuse WriteOwner
(ADS_RIGHT_WRITE_OWNER) access rights. This allows to take
ownership of another object, and then edit that object's DACL.
- Remove patch:
* remove-future-requirement.patch (was merged upstream)
-------------------------------------------------------------------
Thu Nov 23 20:28:09 UTC 2023 - Martin Hauke <mardnh@gmx.de>