Prepare for release 4.8
This commit is contained in:
parent
5e32cb71ba
commit
393e5af563
|
@ -3,10 +3,18 @@
|
|||
# Changelog
|
||||
All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
||||
|
||||
## [Unreleased]
|
||||
## [4.8] - 2022-12-06
|
||||
|
||||
### Changed
|
||||
- The PowerShell module now advertizes `Desktop` as the required edition. Note that *PowerShell Core* is not supported because of heavy dependency on Win32 API.
|
||||
|
||||
- Upgraded to the latest [JSON.NET library](https://www.newtonsoft.com/json) to fix some security issues.
|
||||
- Upgraded to the latest [CBOR library](https://github.com/peteroupc/CBOR) to fix some security issues.
|
||||
- Added pipeline input support to the `-SamAccountName` parameter of the [Get-ADReplAccount](PowerShell/Get-ADReplAccount.md#get-adreplaccount) cmdlet.
|
||||
- All PowerShell cmdlets that modify the `ntds.dit` file now have the `-Force` parameter.
|
||||
|
||||
### Fixed
|
||||
|
||||
- Fixed a regression error in `ntds.dit` file modification on Windows Server 2022 that was introduced in release [4.7].
|
||||
|
||||
## [4.7] - 2021-10-30
|
||||
|
||||
|
@ -439,7 +447,8 @@ This is a [Chocolatey](https://chocolatey.org/packages/dsinternals-psmodule)-onl
|
|||
## 1.0 - 2015-01-20
|
||||
Initial release!
|
||||
|
||||
[Unreleased]: https://github.com/MichaelGrafnetter/DSInternals/compare/v4.7...HEAD
|
||||
[Unreleased]: https://github.com/MichaelGrafnetter/DSInternals/compare/v4.8...HEAD
|
||||
[4.8]: https://github.com/MichaelGrafnetter/DSInternals/compare/v4.7...v4.8
|
||||
[4.7]: https://github.com/MichaelGrafnetter/DSInternals/compare/v4.6...v4.7
|
||||
[4.6]: https://github.com/MichaelGrafnetter/DSInternals/compare/v4.5...v4.6
|
||||
[4.5]: https://github.com/MichaelGrafnetter/DSInternals/compare/v4.4.1...v4.5
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
using System.Reflection;
|
||||
|
||||
[assembly: AssemblyProduct("DSInternals PowerShell Module")]
|
||||
[assembly: AssemblyCopyright("Copyright © 2015-2021 Michael Grafnetter. All rights reserved.")]
|
||||
[assembly: AssemblyCopyright("Copyright © 2015-2022 Michael Grafnetter. All rights reserved.")]
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
using namespace System::Reflection;
|
||||
|
||||
[assembly:AssemblyProductAttribute(L"DSInternals PowerShell Module")];
|
||||
[assembly:AssemblyCopyrightAttribute(L"Copyright © 2015-2019 Michael Grafnetter. All rights reserved.")];
|
||||
[assembly:AssemblyCopyrightAttribute(L"Copyright © 2015-2022 Michael Grafnetter. All rights reserved.")];
|
||||
|
|
|
@ -14,9 +14,9 @@
|
|||
<description>This package is shared between all other DSInternals packages. Its main features are Azure AD Graph API and ADSI clients for for retrieval of cryptographic material. It contains implementations of common hash functions used by Windows, including NT hash, LM hash and OrgId hash. It also contains methods for SysKey/BootKey retrieval.</description>
|
||||
<summary>This package is shared between all other DSInternals packages.</summary>
|
||||
<releaseNotes>
|
||||
- Added the SupportedEncryptionTypes property to the DSAccount class. It exposes the msDs-supportedEncryptionTypes attribute.
|
||||
- Updated dependencies.
|
||||
</releaseNotes>
|
||||
<copyright>Copyright (c) 2015-2021 Michael Grafnetter. All rights reserved.</copyright>
|
||||
<copyright>Copyright (c) 2015-2022 Michael Grafnetter. All rights reserved.</copyright>
|
||||
<tags>ActiveDirectory Security AD AAD Identity Active Directory</tags>
|
||||
</metadata>
|
||||
<files>
|
||||
|
|
|
@ -5,8 +5,8 @@ using System.Runtime.InteropServices;
|
|||
// set of attributes. Change these attribute values to modify the information
|
||||
// associated with an assembly.
|
||||
[assembly: AssemblyTitle("DSInternals Common Library")]
|
||||
[assembly: AssemblyVersion("4.7")]
|
||||
[assembly: AssemblyFileVersion("4.7")]
|
||||
[assembly: AssemblyVersion("4.8")]
|
||||
[assembly: AssemblyFileVersion("4.8")]
|
||||
[assembly: AssemblyDescription("")]
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("")]
|
||||
|
|
|
@ -14,10 +14,9 @@
|
|||
<description>DSInternals DataStore is an advanced framework for offline ntds.dit file manipulation. It can be used to extract password hashes from Active Directory backups or to modify the sIDHistory and primaryGroupId attributes.</description>
|
||||
<summary>DSInternals DataStore is an advanced framework for offline ntds.dit file manipulation.</summary>
|
||||
<releaseNotes>
|
||||
- The msDs-supportedEncryptionTypes attribute can now be retrieved from database files.
|
||||
- Improved exception handling when opening read-only database files.
|
||||
- Fixed compatibility isses with Windows Server 2022.
|
||||
</releaseNotes>
|
||||
<copyright>Copyright (c) 2015-2021 Michael Grafnetter. All rights reserved.</copyright>
|
||||
<copyright>Copyright (c) 2015-2022 Michael Grafnetter. All rights reserved.</copyright>
|
||||
<tags>ActiveDirectory Security NTDS AD Identity Active Directory</tags>
|
||||
<references>
|
||||
<reference file="DSInternals.DataStore.dll" />
|
||||
|
|
|
@ -5,8 +5,8 @@ using System.Runtime.InteropServices;
|
|||
// set of attributes. Change these attribute values to modify the information
|
||||
// associated with an assembly.
|
||||
[assembly: AssemblyTitle("DSInternals DataStore Library")]
|
||||
[assembly: AssemblyVersion("4.7")]
|
||||
[assembly: AssemblyFileVersion("4.7")]
|
||||
[assembly: AssemblyVersion("4.8")]
|
||||
[assembly: AssemblyFileVersion("4.8")]
|
||||
[assembly: AssemblyDescription("")]
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("")]
|
||||
|
|
|
@ -3,14 +3,14 @@
|
|||
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">
|
||||
<metadata>
|
||||
<id>DSInternals-PSModule</id>
|
||||
<version>4.7</version>
|
||||
<version>4.8</version>
|
||||
<packageSourceUrl>https://github.com/MichaelGrafnetter/DSInternals/tree/master/Src/DSInternals.PowerShell/Chocolatey</packageSourceUrl>
|
||||
<owners>MichaelGrafnetter</owners>
|
||||
<title>DSInternals PowerShell Module</title>
|
||||
<authors>Michael Grafnetter</authors>
|
||||
<projectUrl>https://github.com/MichaelGrafnetter/DSInternals</projectUrl>
|
||||
<iconUrl>https://raw.githubusercontent.com/MichaelGrafnetter/DSInternals/master/Src/Icons/module_black.png</iconUrl>
|
||||
<copyright>(c) 2015-2021 Michael Grafnetter. All rights reserved.</copyright>
|
||||
<copyright>(c) 2015-2022 Michael Grafnetter. All rights reserved.</copyright>
|
||||
<licenseUrl>https://github.com/MichaelGrafnetter/DSInternals/blob/master/Src/DSInternals.PowerShell/License.txt</licenseUrl>
|
||||
<requireLicenseAcceptance>false</requireLicenseAcceptance>
|
||||
<projectSourceUrl>https://github.com/MichaelGrafnetter/DSInternals/tree/master/Src</projectSourceUrl>
|
||||
|
@ -37,8 +37,9 @@
|
|||
## Disclaimer
|
||||
Features exposed through these tools are not supported by Microsoft. Improper use might cause irreversible damage to domain controllers or negatively impact domain security.</description>
|
||||
<releaseNotes>
|
||||
* The Test-PasswordQuality cmdlet can now detect kerberoastable user accounts. Its performance has also been slightly improved.
|
||||
* Objects returned by the Get-ADDBAccount, Get-ADReplAccount, and Get-ADSIAccount cmdlets now have the SupportedEncryptionTypes property.
|
||||
* Fixed a regression error in ntds.dit file modification on Windows Server 2022.
|
||||
* Added pipeline input support to the -SamAccountName parameter of the Get-ADReplAccount cmdlet.
|
||||
* All cmdlets that modify the ntds.dit file now require the -Force parameter to be present.
|
||||
</releaseNotes>
|
||||
<dependencies>
|
||||
<!-- Windows Management Framework 3+. For OS prior to Windows 8 and Windows Server 2012. -->
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
RootModule = 'DSInternals.Bootstrap.psm1'
|
||||
|
||||
# Version number of this module.
|
||||
ModuleVersion = '4.7'
|
||||
ModuleVersion = '4.8'
|
||||
|
||||
# Supported PSEditions
|
||||
# CompatiblePSEditions = 'Desktop'
|
||||
|
@ -23,7 +23,7 @@ Author = 'Michael Grafnetter'
|
|||
CompanyName = 'DSInternals'
|
||||
|
||||
# Copyright statement for this module
|
||||
Copyright = '(c) 2015-2021 Michael Grafnetter. All rights reserved.'
|
||||
Copyright = '(c) 2015-2022 Michael Grafnetter. All rights reserved.'
|
||||
|
||||
# Description of the functionality provided by this module
|
||||
Description = @"
|
||||
|
@ -141,8 +141,9 @@ PrivateData = @{
|
|||
|
||||
# ReleaseNotes of this module
|
||||
ReleaseNotes = @"
|
||||
- The Test-PasswordQuality cmdlet can now detect kerberoastable user accounts. Its performance has also been slightly improved.
|
||||
- Objects returned by the Get-ADDBAccount, Get-ADReplAccount, and Get-ADSIAccount cmdlets now have the SupportedEncryptionTypes property.
|
||||
- Fixed a regression error in ntds.dit file modification on Windows Server 2022.
|
||||
- Added pipeline input support to the -SamAccountName parameter of the Get-ADReplAccount cmdlet.
|
||||
- All cmdlets that modify the ntds.dit file now require the -Force parameter to be present.
|
||||
"@
|
||||
} # End of PSData hashtable
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@ DSInternals PowerShell Module and Framework
|
|||
|
||||
The MIT License (MIT)
|
||||
|
||||
Copyright (c) 2015-2021 Michael Grafnetter
|
||||
Copyright (c) 2015-2022 Michael Grafnetter
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
|
|
|
@ -5,8 +5,8 @@ using System.Runtime.InteropServices;
|
|||
// set of attributes. Change these attribute values to modify the information
|
||||
// associated with an assembly.
|
||||
[assembly: AssemblyTitle("DSInternals PowerShell Commands")]
|
||||
[assembly: AssemblyVersion("4.7")]
|
||||
[assembly: AssemblyFileVersion("4.7")]
|
||||
[assembly: AssemblyVersion("4.8")]
|
||||
[assembly: AssemblyFileVersion("4.8")]
|
||||
[assembly: AssemblyDescription("")]
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("")]
|
||||
|
|
|
@ -39,8 +39,8 @@ END
|
|||
//
|
||||
|
||||
VS_VERSION_INFO VERSIONINFO
|
||||
FILEVERSION 4,7,0,0
|
||||
PRODUCTVERSION 4,7,0,0
|
||||
FILEVERSION 4,8,0,0
|
||||
PRODUCTVERSION 4,8,0,0
|
||||
FILEFLAGSMASK 0x3fL
|
||||
#ifdef _DEBUG
|
||||
FILEFLAGS 0x1L
|
||||
|
@ -57,12 +57,12 @@ BEGIN
|
|||
BEGIN
|
||||
VALUE "CompanyName", "Michael Grafnetter"
|
||||
VALUE "FileDescription", "DSInternals Replication Interop Library"
|
||||
VALUE "FileVersion", "4.7.0.0"
|
||||
VALUE "FileVersion", "4.8.0.0"
|
||||
VALUE "InternalName", "DSInternals.Replication.Interop"
|
||||
VALUE "LegalCopyright", "Copyright © 2015-2021 Michael Grafnetter"
|
||||
VALUE "LegalCopyright", "Copyright © 2015-2022 Michael Grafnetter"
|
||||
VALUE "OriginalFilename", "DSInternals.Replication.Interop.dll"
|
||||
VALUE "ProductName", "DSInternals PowerShell Module"
|
||||
VALUE "ProductVersion", "4.7.0.0"
|
||||
VALUE "ProductVersion", "4.8.0.0"
|
||||
END
|
||||
END
|
||||
BLOCK "VarFileInfo"
|
||||
|
|
|
@ -5,8 +5,8 @@ using System.Runtime.InteropServices;
|
|||
// set of attributes. Change these attribute values to modify the information
|
||||
// associated with an assembly.
|
||||
[assembly: AssemblyTitle("DSInternals Replication Data Model")]
|
||||
[assembly: AssemblyVersion("4.7")]
|
||||
[assembly: AssemblyFileVersion("4.7")]
|
||||
[assembly: AssemblyVersion("4.8")]
|
||||
[assembly: AssemblyFileVersion("4.8")]
|
||||
[assembly: AssemblyDescription("")]
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("")]
|
||||
|
|
|
@ -14,9 +14,9 @@
|
|||
<description>DSInternals Replication implements a client for the Active Directory Replication Service Remote Protocol (DRS-R). It can be used to remotely extract password hashes from domain controllers.</description>
|
||||
<summary>DSInternals Replication implements a client for the Active Directory Replication Service Remote Protocol (DRS-R).</summary>
|
||||
<releaseNotes>
|
||||
- The msDs-supportedEncryptionTypes attribute can now be read on replicated accounts.
|
||||
- Updated dependencies.
|
||||
</releaseNotes>
|
||||
<copyright>Copyright (c) 2015-2021 Michael Grafnetter. All rights reserved.</copyright>
|
||||
<copyright>Copyright (c) 2015-2022 Michael Grafnetter. All rights reserved.</copyright>
|
||||
<tags>ActiveDirectory Security RPC DRSR</tags>
|
||||
<references>
|
||||
<reference file="DSInternals.Replication.dll" />
|
||||
|
|
|
@ -5,8 +5,8 @@ using System.Runtime.InteropServices;
|
|||
// set of attributes. Change these attribute values to modify the information
|
||||
// associated with an assembly.
|
||||
[assembly: AssemblyTitle("DSInternals Replication Library")]
|
||||
[assembly: AssemblyVersion("4.7")]
|
||||
[assembly: AssemblyFileVersion("4.7")]
|
||||
[assembly: AssemblyVersion("4.8")]
|
||||
[assembly: AssemblyFileVersion("4.8")]
|
||||
[assembly: AssemblyDescription("")]
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("")]
|
||||
|
|
|
@ -14,9 +14,9 @@
|
|||
<description>DSInternals SAM implements a client for the Security Accounts Manager Remote Protocol (SAM-R) and Local Security Authority Remote Protocol(MS-LSAD or LSARPC). It can be used to import password hashes into Active Directory or to query and modify LSA Policy.</description>
|
||||
<summary>DSInternals SAM implements a client for SAM-R and MS-LSAD/LSARPC protocols.</summary>
|
||||
<releaseNotes>
|
||||
- Updated the target .NET Framework to 4.7.2.
|
||||
- Updated dependencies.
|
||||
</releaseNotes>
|
||||
<copyright>Copyright (c) 2015-2021 Michael Grafnetter. All rights reserved.</copyright>
|
||||
<copyright>Copyright (c) 2015-2022 Michael Grafnetter. All rights reserved.</copyright>
|
||||
<tags>ActiveDirectory Security RPC SAMR LSARPC AD Identity Active Directory</tags>
|
||||
<references>
|
||||
<reference file="DSInternals.SAM.dll" />
|
||||
|
|
|
@ -5,8 +5,8 @@ using System.Runtime.InteropServices;
|
|||
// set of attributes. Change these attribute values to modify the information
|
||||
// associated with an assembly.
|
||||
[assembly: AssemblyTitle("DSInternals SAM Library")]
|
||||
[assembly: AssemblyVersion("4.5")]
|
||||
[assembly: AssemblyFileVersion("4.5")]
|
||||
[assembly: AssemblyVersion("4.8")]
|
||||
[assembly: AssemblyFileVersion("4.8")]
|
||||
[assembly: AssemblyDescription("")]
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("")]
|
||||
|
|
Loading…
Reference in New Issue