Prepare for release 4.1
This commit is contained in:
parent
5b354b2da5
commit
19dc3047d1
|
@ -1,15 +1,16 @@
|
|||
# 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.1] - 2019-12-12
|
||||
|
||||
### Added
|
||||
|
||||
- The [Test-PasswordQuality](PowerShell/Test-PasswordQuality.md#test-passwordquality) cmdlet now contains a check for accounts that require smart card authentication have a password at the same time.
|
||||
- The [Test-PasswordQuality](PowerShell/Test-PasswordQuality.md#test-passwordquality) cmdlet now contains a check for accounts that require smart card authentication and have a password at the same time.
|
||||
|
||||
### Fixed
|
||||
|
||||
- The [Save-DPAPIBlob](PowerShell/Save-DPAPIBlob.md#save-dpapiblob) cmdlet now saves roamed CNG keys in proper format.
|
||||
- Fixed an issue with the [Set-ADDBAccountPassword](PowerShell/Set-ADDBAccountPassword.md#set-addbaccountpassword) and [Set-ADDBAccountPasswordHash](PowerShell/Set-ADDBAccountPasswordHash.md#set-addbaccountpasswordhash) cmdlets, which, under rare circumstances, could incorrectly modify replication metadata. Unfortunately, the documentation does not say that [PROPERTY_META_DATA_EXT_VECTOR](https://docs.microsoft.com/en-us/openspecs/windows_protocols/ms-drsr/22bccd51-1e7d-4502-aef8-b84da983f94f) must be sorted.
|
||||
|
||||
## [4.0] - 2019-12-04
|
||||
|
||||
|
@ -349,7 +350,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.0...HEAD
|
||||
[Unreleased]: https://github.com/MichaelGrafnetter/DSInternals/compare/v4.1...HEAD
|
||||
[4.1]: https://github.com/MichaelGrafnetter/DSInternals/compare/v4.0...v4.1
|
||||
[4.0]: https://github.com/MichaelGrafnetter/DSInternals/compare/v3.6.1...v4.0
|
||||
[3.6.1]: https://github.com/MichaelGrafnetter/DSInternals/compare/v3.6...v3.6.1
|
||||
[3.6]: https://github.com/MichaelGrafnetter/DSInternals/compare/v3.5...v3.6
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
<requireLicenseAcceptance>false</requireLicenseAcceptance>
|
||||
<description>This package is shared between all other DSInternals packages. 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>Implemented FIDO2 token information parsing and improved NGC key generation in the KeyCredential class.</releaseNotes>
|
||||
<releaseNotes>Roamed CNG keys are now exported in proper format.</releaseNotes>
|
||||
<copyright>Copyright (c) 2015-2019 Michael Grafnetter. All rights reserved.</copyright>
|
||||
<tags>ActiveDirectory Security</tags>
|
||||
</metadata>
|
||||
|
|
|
@ -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.0")]
|
||||
[assembly: AssemblyFileVersion("4.0")]
|
||||
[assembly: AssemblyVersion("4.1")]
|
||||
[assembly: AssemblyFileVersion("4.1")]
|
||||
[assembly: AssemblyDescription("")]
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("")]
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
<requireLicenseAcceptance>false</requireLicenseAcceptance>
|
||||
<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>Added support for FIDO and NGC key retrieval.</releaseNotes>
|
||||
<releaseNotes>Fixed the order of entries in serialized replication metadata.</releaseNotes>
|
||||
<copyright>Copyright (c) 2015-2019 Michael Grafnetter. All rights reserved.</copyright>
|
||||
<tags>ActiveDirectory Security NTDS</tags>
|
||||
<references>
|
||||
|
|
|
@ -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.0")]
|
||||
[assembly: AssemblyFileVersion("4.0")]
|
||||
[assembly: AssemblyVersion("4.1")]
|
||||
[assembly: AssemblyFileVersion("4.1")]
|
||||
[assembly: AssemblyDescription("")]
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("")]
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">
|
||||
<metadata>
|
||||
<id>DSInternals-PSModule</id>
|
||||
<version>4.0</version>
|
||||
<version>4.1</version>
|
||||
<packageSourceUrl>https://github.com/MichaelGrafnetter/DSInternals/tree/master/Src/DSInternals.PowerShell/Chocolatey</packageSourceUrl>
|
||||
<owners>MichaelGrafnetter</owners>
|
||||
<title>DSInternals PowerShell Module</title>
|
||||
|
@ -36,11 +36,8 @@
|
|||
## 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>
|
||||
* Added the FIDO custom view. Tested with YubiKey, Feitian, eWBM and SoloKeys.
|
||||
* Added the Add-ADReplNgcKey cmdlet for NGC key injection through MS-DRSR.
|
||||
* NGC keys generated by the Get-ADKeyCredential cmdlet are now accepted in validated writes.
|
||||
* The Get-ADReplAccount cmdlet can now search accounts by the userPrincipalName attribute.
|
||||
* .NET Framework 4.7 is now required because of ECC support.
|
||||
* The Test-PasswordQuality cmdlet now contains a check for accounts that require smart card authentication and have a password at the same time.
|
||||
* Minor bug fixes.
|
||||
</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.0'
|
||||
ModuleVersion = '4.1'
|
||||
|
||||
# ID used to uniquely identify this module
|
||||
GUID = '766b3ad8-eb78-48e6-84bd-61b31d96b53e'
|
||||
|
@ -133,11 +133,8 @@ PrivateData = @{
|
|||
|
||||
# ReleaseNotes of this module
|
||||
ReleaseNotes = @"
|
||||
- Added the FIDO custom view. Tested with YubiKey, Feitian, eWBM and SoloKeys.
|
||||
- Added the Add-ADReplNgcKey cmdlet for NGC key injection through MS-DRSR.
|
||||
- NGC keys generated by the Get-ADKeyCredential cmdlet are now accepted in validated writes.
|
||||
- The Get-ADReplAccount cmdlet can now search accounts by the userPrincipalName attribute.
|
||||
- .NET Framework 4.7 is now required because of ECC support.
|
||||
- The Test-PasswordQuality cmdlet now contains a check for accounts that require smart card authentication and have a password at the same time.
|
||||
- Minor bug fixes.
|
||||
"@
|
||||
} # End of PSData hashtable
|
||||
|
||||
|
|
|
@ -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.0")]
|
||||
[assembly: AssemblyFileVersion("4.0")]
|
||||
[assembly: AssemblyVersion("4.1")]
|
||||
[assembly: AssemblyFileVersion("4.1")]
|
||||
[assembly: AssemblyDescription("")]
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("")]
|
||||
|
|
Loading…
Reference in New Issue