mirror of
https://github.com/MichaelGrafnetter/DSInternals
synced 2025-04-01 22:48:52 +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)
|
[](../LICENSE.md)
|
||||||
[](#)
|
[](#)
|
||||||
[](#)
|
[](#)
|
||||||
[](#)
|
[](#)
|
||||||
|
|
||||||
## Introduction
|
## Introduction
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
The MIT License (MIT)
|
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
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
of this software and associated documentation files (the "Software"), to deal
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
using System.Reflection;
|
using System.Reflection;
|
||||||
|
|
||||||
[assembly: AssemblyProduct("DSInternals PowerShell Module")]
|
[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>
|
<summary>This package is shared between all other DSInternals packages.</summary>
|
||||||
<releaseNotes>
|
<releaseNotes>
|
||||||
- Added the ability to modify FIDO2 and NGC keys registered in Azure Active Directory.
|
- 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>
|
</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>
|
<tags>ActiveDirectory Security AD AAD Identity Active Directory</tags>
|
||||||
</metadata>
|
</metadata>
|
||||||
<files>
|
<files>
|
||||||
|
@ -5,8 +5,8 @@ using System.Runtime.InteropServices;
|
|||||||
// set of attributes. Change these attribute values to modify the information
|
// set of attributes. Change these attribute values to modify the information
|
||||||
// associated with an assembly.
|
// associated with an assembly.
|
||||||
[assembly: AssemblyTitle("DSInternals Common Library")]
|
[assembly: AssemblyTitle("DSInternals Common Library")]
|
||||||
[assembly: AssemblyVersion("4.4")]
|
[assembly: AssemblyVersion("4.5")]
|
||||||
[assembly: AssemblyFileVersion("4.4")]
|
[assembly: AssemblyFileVersion("4.5")]
|
||||||
[assembly: AssemblyDescription("")]
|
[assembly: AssemblyDescription("")]
|
||||||
[assembly: AssemblyConfiguration("")]
|
[assembly: AssemblyConfiguration("")]
|
||||||
[assembly: AssemblyCompany("")]
|
[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>
|
<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>
|
<summary>DSInternals DataStore is an advanced framework for offline ntds.dit file manipulation.</summary>
|
||||||
<releaseNotes>
|
<releaseNotes>
|
||||||
- Both LastLogon and LastLogonTimestamp properties are now exposed on AD user accounts.
|
- Added support for ntds.dit files with conflicting defunct attributes.
|
||||||
- Updated the package logo.
|
- Improved parsing of roaming CNG private keys.
|
||||||
|
- Updated the target .NET Framework to 4.7.2.
|
||||||
</releaseNotes>
|
</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>
|
<tags>ActiveDirectory Security NTDS AD Identity Active Directory</tags>
|
||||||
<references>
|
<references>
|
||||||
<reference file="DSInternals.DataStore.dll" />
|
<reference file="DSInternals.DataStore.dll" />
|
||||||
|
@ -5,8 +5,8 @@ using System.Runtime.InteropServices;
|
|||||||
// set of attributes. Change these attribute values to modify the information
|
// set of attributes. Change these attribute values to modify the information
|
||||||
// associated with an assembly.
|
// associated with an assembly.
|
||||||
[assembly: AssemblyTitle("DSInternals DataStore Library")]
|
[assembly: AssemblyTitle("DSInternals DataStore Library")]
|
||||||
[assembly: AssemblyVersion("4.3")]
|
[assembly: AssemblyVersion("4.5")]
|
||||||
[assembly: AssemblyFileVersion("4.3")]
|
[assembly: AssemblyFileVersion("4.5")]
|
||||||
[assembly: AssemblyDescription("")]
|
[assembly: AssemblyDescription("")]
|
||||||
[assembly: AssemblyConfiguration("")]
|
[assembly: AssemblyConfiguration("")]
|
||||||
[assembly: AssemblyCompany("")]
|
[assembly: AssemblyCompany("")]
|
||||||
|
@ -8,7 +8,7 @@
|
|||||||
RootModule = 'DSInternals.Bootstrap.psm1'
|
RootModule = 'DSInternals.Bootstrap.psm1'
|
||||||
|
|
||||||
# Version number of this module.
|
# Version number of this module.
|
||||||
ModuleVersion = '4.4.1'
|
ModuleVersion = '4.5'
|
||||||
|
|
||||||
# Supported PSEditions
|
# Supported PSEditions
|
||||||
# CompatiblePSEditions = 'Desktop'
|
# CompatiblePSEditions = 'Desktop'
|
||||||
@ -23,7 +23,7 @@ Author = 'Michael Grafnetter'
|
|||||||
CompanyName = 'DSInternals'
|
CompanyName = 'DSInternals'
|
||||||
|
|
||||||
# Copyright statement for this module
|
# 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 of the functionality provided by this module
|
||||||
Description = @"
|
Description = @"
|
||||||
@ -141,7 +141,10 @@ PrivateData = @{
|
|||||||
|
|
||||||
# ReleaseNotes of this module
|
# ReleaseNotes of this module
|
||||||
ReleaseNotes = @"
|
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
|
} # End of PSData hashtable
|
||||||
|
|
||||||
|
@ -5,8 +5,8 @@ using System.Runtime.InteropServices;
|
|||||||
// set of attributes. Change these attribute values to modify the information
|
// set of attributes. Change these attribute values to modify the information
|
||||||
// associated with an assembly.
|
// associated with an assembly.
|
||||||
[assembly: AssemblyTitle("DSInternals PowerShell Commands")]
|
[assembly: AssemblyTitle("DSInternals PowerShell Commands")]
|
||||||
[assembly: AssemblyVersion("4.4")]
|
[assembly: AssemblyVersion("4.5")]
|
||||||
[assembly: AssemblyFileVersion("4.4")]
|
[assembly: AssemblyFileVersion("4.5")]
|
||||||
[assembly: AssemblyDescription("")]
|
[assembly: AssemblyDescription("")]
|
||||||
[assembly: AssemblyConfiguration("")]
|
[assembly: AssemblyConfiguration("")]
|
||||||
[assembly: AssemblyCompany("")]
|
[assembly: AssemblyCompany("")]
|
||||||
|
@ -14,7 +14,7 @@ using namespace System::Security::Permissions;
|
|||||||
//
|
//
|
||||||
[assembly:AssemblyTitleAttribute(L"DSInternals Replication Interop Library")];
|
[assembly:AssemblyTitleAttribute(L"DSInternals Replication Interop Library")];
|
||||||
// Note: Do not forget to change the version in version.rc files.
|
// Note: Do not forget to change the version in version.rc files.
|
||||||
[assembly:AssemblyVersionAttribute("4.3")];
|
[assembly:AssemblyVersionAttribute("4.5")];
|
||||||
[assembly:AssemblyDescriptionAttribute(L"")];
|
[assembly:AssemblyDescriptionAttribute(L"")];
|
||||||
[assembly:AssemblyConfigurationAttribute(L"")];
|
[assembly:AssemblyConfigurationAttribute(L"")];
|
||||||
[assembly:AssemblyCompanyAttribute(L"")];
|
[assembly:AssemblyCompanyAttribute(L"")];
|
||||||
|
@ -57,12 +57,12 @@ BEGIN
|
|||||||
BEGIN
|
BEGIN
|
||||||
VALUE "CompanyName", "Michael Grafnetter"
|
VALUE "CompanyName", "Michael Grafnetter"
|
||||||
VALUE "FileDescription", "DSInternals Replication Interop Library"
|
VALUE "FileDescription", "DSInternals Replication Interop Library"
|
||||||
VALUE "FileVersion", "4.3.0.0"
|
VALUE "FileVersion", "4.5.0.0"
|
||||||
VALUE "InternalName", "DSInternals.Replication.Interop"
|
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 "OriginalFilename", "DSInternals.Replication.Interop.dll"
|
||||||
VALUE "ProductName", "DSInternals PowerShell Module"
|
VALUE "ProductName", "DSInternals PowerShell Module"
|
||||||
VALUE "ProductVersion", "4.3.0.0"
|
VALUE "ProductVersion", "4.5.0.0"
|
||||||
END
|
END
|
||||||
END
|
END
|
||||||
BLOCK "VarFileInfo"
|
BLOCK "VarFileInfo"
|
||||||
|
@ -5,8 +5,8 @@ using System.Runtime.InteropServices;
|
|||||||
// set of attributes. Change these attribute values to modify the information
|
// set of attributes. Change these attribute values to modify the information
|
||||||
// associated with an assembly.
|
// associated with an assembly.
|
||||||
[assembly: AssemblyTitle("DSInternals Replication Data Model")]
|
[assembly: AssemblyTitle("DSInternals Replication Data Model")]
|
||||||
[assembly: AssemblyVersion("4.3")]
|
[assembly: AssemblyVersion("4.5")]
|
||||||
[assembly: AssemblyFileVersion("4.3")]
|
[assembly: AssemblyFileVersion("4.5")]
|
||||||
[assembly: AssemblyDescription("")]
|
[assembly: AssemblyDescription("")]
|
||||||
[assembly: AssemblyConfiguration("")]
|
[assembly: AssemblyConfiguration("")]
|
||||||
[assembly: AssemblyCompany("")]
|
[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>
|
<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>
|
<summary>DSInternals Replication implements a client for the Active Directory Replication Service Remote Protocol (DRS-R).</summary>
|
||||||
<releaseNotes>
|
<releaseNotes>
|
||||||
- The LastLogonTimestamp property is now exposed on user accounts.
|
- Improved parsing of roaming CNG private keys.
|
||||||
- Updated the package logo.
|
- Updated the target .NET Framework to 4.7.2.
|
||||||
</releaseNotes>
|
</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>
|
<tags>ActiveDirectory Security RPC DRSR</tags>
|
||||||
<references>
|
<references>
|
||||||
<reference file="DSInternals.Replication.dll" />
|
<reference file="DSInternals.Replication.dll" />
|
||||||
|
@ -5,8 +5,8 @@ using System.Runtime.InteropServices;
|
|||||||
// set of attributes. Change these attribute values to modify the information
|
// set of attributes. Change these attribute values to modify the information
|
||||||
// associated with an assembly.
|
// associated with an assembly.
|
||||||
[assembly: AssemblyTitle("DSInternals Replication Library")]
|
[assembly: AssemblyTitle("DSInternals Replication Library")]
|
||||||
[assembly: AssemblyVersion("4.3")]
|
[assembly: AssemblyVersion("4.5")]
|
||||||
[assembly: AssemblyFileVersion("4.3")]
|
[assembly: AssemblyFileVersion("4.5")]
|
||||||
[assembly: AssemblyDescription("")]
|
[assembly: AssemblyDescription("")]
|
||||||
[assembly: AssemblyConfiguration("")]
|
[assembly: AssemblyConfiguration("")]
|
||||||
[assembly: AssemblyCompany("")]
|
[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>
|
<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>
|
<summary>DSInternals SAM implements a client for SAM-R and MS-LSAD/LSARPC protocols.</summary>
|
||||||
<releaseNotes>
|
<releaseNotes>
|
||||||
- Updated the package logo.
|
- Updated the target .NET Framework to 4.7.2.
|
||||||
- Updated package references.
|
|
||||||
</releaseNotes>
|
</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>
|
<tags>ActiveDirectory Security RPC SAMR LSARPC AD Identity Active Directory</tags>
|
||||||
<references>
|
<references>
|
||||||
<reference file="DSInternals.SAM.dll" />
|
<reference file="DSInternals.SAM.dll" />
|
||||||
|
@ -5,8 +5,8 @@ using System.Runtime.InteropServices;
|
|||||||
// set of attributes. Change these attribute values to modify the information
|
// set of attributes. Change these attribute values to modify the information
|
||||||
// associated with an assembly.
|
// associated with an assembly.
|
||||||
[assembly: AssemblyTitle("DSInternals SAM Library")]
|
[assembly: AssemblyTitle("DSInternals SAM Library")]
|
||||||
[assembly: AssemblyVersion("4.3")]
|
[assembly: AssemblyVersion("4.5")]
|
||||||
[assembly: AssemblyFileVersion("4.3")]
|
[assembly: AssemblyFileVersion("4.5")]
|
||||||
[assembly: AssemblyDescription("")]
|
[assembly: AssemblyDescription("")]
|
||||||
[assembly: AssemblyConfiguration("")]
|
[assembly: AssemblyConfiguration("")]
|
||||||
[assembly: AssemblyCompany("")]
|
[assembly: AssemblyCompany("")]
|
||||||
|
Loading…
Reference in New Issue
Block a user