mirror of
https://github.com/MichaelGrafnetter/DSInternals
synced 2025-03-11 06:08:02 +00:00
Prepare for Release 4.5
This commit is contained in:
parent
677b76bb81
commit
63f9e84651
2
.github/README.md
vendored
2
.github/README.md
vendored
@ -5,7 +5,7 @@
|
||||
[](../LICENSE.md)
|
||||
[](#)
|
||||
[](#)
|
||||
[](#)
|
||||
[](#)
|
||||
|
||||
## Introduction
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
The MIT License (MIT)
|
||||
|
||||
Copyright (c) 2015-2020 Michael Grafnetter
|
||||
Copyright (c) 2015-2021 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
|
||||
|
@ -1,4 +1,4 @@
|
||||
using System.Reflection;
|
||||
|
||||
[assembly: AssemblyProduct("DSInternals PowerShell Module")]
|
||||
[assembly: AssemblyCopyright("Copyright © 2015-2020 Michael Grafnetter. All rights reserved.")]
|
||||
[assembly: AssemblyCopyright("Copyright © 2015-2021 Michael Grafnetter. All rights reserved.")]
|
@ -15,8 +15,10 @@
|
||||
<summary>This package is shared between all other DSInternals packages.</summary>
|
||||
<releaseNotes>
|
||||
- Added the ability to modify FIDO2 and NGC keys registered in Azure Active Directory.
|
||||
- Improved parsing of roaming CNG private keys.
|
||||
- Updated the target .NET Framework to 4.7.2.
|
||||
</releaseNotes>
|
||||
<copyright>Copyright (c) 2015-2020 Michael Grafnetter. All rights reserved.</copyright>
|
||||
<copyright>Copyright (c) 2015-2021 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.4")]
|
||||
[assembly: AssemblyFileVersion("4.4")]
|
||||
[assembly: AssemblyVersion("4.5")]
|
||||
[assembly: AssemblyFileVersion("4.5")]
|
||||
[assembly: AssemblyDescription("")]
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("")]
|
||||
|
@ -14,10 +14,11 @@
|
||||
<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>
|
||||
- Both LastLogon and LastLogonTimestamp properties are now exposed on AD user accounts.
|
||||
- Updated the package logo.
|
||||
- Added support for ntds.dit files with conflicting defunct attributes.
|
||||
- Improved parsing of roaming CNG private keys.
|
||||
- Updated the target .NET Framework to 4.7.2.
|
||||
</releaseNotes>
|
||||
<copyright>Copyright (c) 2015-2020 Michael Grafnetter. All rights reserved.</copyright>
|
||||
<copyright>Copyright (c) 2015-2021 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.3")]
|
||||
[assembly: AssemblyFileVersion("4.3")]
|
||||
[assembly: AssemblyVersion("4.5")]
|
||||
[assembly: AssemblyFileVersion("4.5")]
|
||||
[assembly: AssemblyDescription("")]
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("")]
|
||||
|
@ -8,7 +8,7 @@
|
||||
RootModule = 'DSInternals.Bootstrap.psm1'
|
||||
|
||||
# Version number of this module.
|
||||
ModuleVersion = '4.4.1'
|
||||
ModuleVersion = '4.5'
|
||||
|
||||
# Supported PSEditions
|
||||
# CompatiblePSEditions = 'Desktop'
|
||||
@ -23,7 +23,7 @@ Author = 'Michael Grafnetter'
|
||||
CompanyName = 'DSInternals'
|
||||
|
||||
# Copyright statement for this module
|
||||
Copyright = '(c) 2015-2020 Michael Grafnetter. All rights reserved.'
|
||||
Copyright = '(c) 2015-2021 Michael Grafnetter. All rights reserved.'
|
||||
|
||||
# Description of the functionality provided by this module
|
||||
Description = @"
|
||||
@ -141,7 +141,10 @@ PrivateData = @{
|
||||
|
||||
# ReleaseNotes of this module
|
||||
ReleaseNotes = @"
|
||||
- Fixed an issue that prevented the DSInternals.Replication.Interop.dll file from being loaded.
|
||||
- Added support for ntds.dit files with conflicting defunct attributes.
|
||||
- Fixed the detection of default computer passwords.
|
||||
- Improved parsing of roaming CNG private keys.
|
||||
- Updated the target .NET Framework to 4.7.2.
|
||||
"@
|
||||
} # 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.4")]
|
||||
[assembly: AssemblyFileVersion("4.4")]
|
||||
[assembly: AssemblyVersion("4.5")]
|
||||
[assembly: AssemblyFileVersion("4.5")]
|
||||
[assembly: AssemblyDescription("")]
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("")]
|
||||
|
@ -14,7 +14,7 @@ using namespace System::Security::Permissions;
|
||||
//
|
||||
[assembly:AssemblyTitleAttribute(L"DSInternals Replication Interop Library")];
|
||||
// Note: Do not forget to change the version in version.rc files.
|
||||
[assembly:AssemblyVersionAttribute("4.3")];
|
||||
[assembly:AssemblyVersionAttribute("4.5")];
|
||||
[assembly:AssemblyDescriptionAttribute(L"")];
|
||||
[assembly:AssemblyConfigurationAttribute(L"")];
|
||||
[assembly:AssemblyCompanyAttribute(L"")];
|
||||
|
@ -57,12 +57,12 @@ BEGIN
|
||||
BEGIN
|
||||
VALUE "CompanyName", "Michael Grafnetter"
|
||||
VALUE "FileDescription", "DSInternals Replication Interop Library"
|
||||
VALUE "FileVersion", "4.3.0.0"
|
||||
VALUE "FileVersion", "4.5.0.0"
|
||||
VALUE "InternalName", "DSInternals.Replication.Interop"
|
||||
VALUE "LegalCopyright", "Copyright © 2015-2020 Michael Grafnetter"
|
||||
VALUE "LegalCopyright", "Copyright © 2015-2021 Michael Grafnetter"
|
||||
VALUE "OriginalFilename", "DSInternals.Replication.Interop.dll"
|
||||
VALUE "ProductName", "DSInternals PowerShell Module"
|
||||
VALUE "ProductVersion", "4.3.0.0"
|
||||
VALUE "ProductVersion", "4.5.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.3")]
|
||||
[assembly: AssemblyFileVersion("4.3")]
|
||||
[assembly: AssemblyVersion("4.5")]
|
||||
[assembly: AssemblyFileVersion("4.5")]
|
||||
[assembly: AssemblyDescription("")]
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("")]
|
||||
|
@ -14,10 +14,10 @@
|
||||
<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 LastLogonTimestamp property is now exposed on user accounts.
|
||||
- Updated the package logo.
|
||||
- Improved parsing of roaming CNG private keys.
|
||||
- Updated the target .NET Framework to 4.7.2.
|
||||
</releaseNotes>
|
||||
<copyright>Copyright (c) 2015-2020 Michael Grafnetter. All rights reserved.</copyright>
|
||||
<copyright>Copyright (c) 2015-2021 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.3")]
|
||||
[assembly: AssemblyFileVersion("4.3")]
|
||||
[assembly: AssemblyVersion("4.5")]
|
||||
[assembly: AssemblyFileVersion("4.5")]
|
||||
[assembly: AssemblyDescription("")]
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("")]
|
||||
|
@ -14,10 +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 package logo.
|
||||
- Updated package references.
|
||||
- Updated the target .NET Framework to 4.7.2.
|
||||
</releaseNotes>
|
||||
<copyright>Copyright (c) 2015-2020 Michael Grafnetter. All rights reserved.</copyright>
|
||||
<copyright>Copyright (c) 2015-2021 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.3")]
|
||||
[assembly: AssemblyFileVersion("4.3")]
|
||||
[assembly: AssemblyVersion("4.5")]
|
||||
[assembly: AssemblyFileVersion("4.5")]
|
||||
[assembly: AssemblyDescription("")]
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("")]
|
||||
|
Loading…
Reference in New Issue
Block a user