File tree Expand file tree Collapse file tree 8 files changed +45
-9
lines changed
Expand file tree Collapse file tree 8 files changed +45
-9
lines changed Original file line number Diff line number Diff line change 77 <Authors >James Forshaw</Authors >
88 <Company >Google Inc.</Company >
99 <Product >NtApiDotNet</Product >
10- <FileVersion >1.1.6 .0</FileVersion >
10+ <FileVersion >1.1.7 .0</FileVersion >
1111 <Copyright >Copyright © Google Inc. 2016, 2017</Copyright >
1212 <AssemblyVersion >1.0.0.0</AssemblyVersion >
1313 <PackageLicenseUrl >https://www.apache.org/licenses/LICENSE-2.0</PackageLicenseUrl >
Original file line number Diff line number Diff line change 1111 <requireLicenseAcceptance >false</requireLicenseAcceptance >
1212 <description >A .NET class library to access native NT API system calls</description >
1313 <releaseNotes >
14+ 1.1.7
15+ -----
16+ * Added projects to build NtObjectManager for PowerShell Core 6.0
17+ * Added additional techniques to open process tokens in access checking cmdlets.
18+ * Fixed issues with Add-NtKey and added Remove-NtKey cmdlets.
19+ * Minor fixes from fllombard
20+ * Added change notify key with asynchronous support
21+ * Added kernel LUID allocation
22+
14231.1.6
1524-----
1625* Added support for child process policy and desktop app policy to Win32ProcessConfig.
Original file line number Diff line number Diff line change 3333// by using the '*' as shown below:
3434// [assembly: AssemblyVersion("1.0.*")]
3535[ assembly: AssemblyVersion ( "1.0.0.0" ) ]
36- [ assembly: AssemblyFileVersion ( "1.1.6 .0" ) ]
37- [ assembly: AssemblyInformationalVersion ( "1.1.6 " ) ]
36+ [ assembly: AssemblyFileVersion ( "1.1.7 .0" ) ]
37+ [ assembly: AssemblyInformationalVersion ( "1.1.7 " ) ]
Original file line number Diff line number Diff line change @@ -24,3 +24,12 @@ And others I've no doubt forgotten.
2424NOTE: It's still a work in progress and it's not designed to act as a documentation
2525source for the entire NT API. There will be bits missing. Patches are welcome to
2626add missing functions or fix bugs, see the CONTRIBUTING file in the root of the solution.
27+
28+ Building for PowerShell Core 6.0/.NET Core 2.0
29+ -----------------------------------------
30+
31+ In order to build for PowerShell Core 6.0 use the command line:
32+
33+ dotnet build NtApiDotNet\NtApiDotNet.Core.csproj -c Release
34+
35+ Building for .NET Core does not currently work in Visual Studio 2017.
Original file line number Diff line number Diff line change 77 <Authors >James Forshaw</Authors >
88 <Company >Google Inc.</Company >
99 <Product >NtObjectManager</Product >
10- <FileVersion >1.1.6 .0</FileVersion >
10+ <FileVersion >1.1.7 .0</FileVersion >
1111 <Copyright >Copyright © Google Inc. 2016, 2017</Copyright >
1212 <AssemblyVersion >1.0.0.0</AssemblyVersion >
1313 <PackageLicenseUrl >https://www.apache.org/licenses/LICENSE-2.0</PackageLicenseUrl >
Original file line number Diff line number Diff line change 1818RootModule = ' NtObjectManager.psm1'
1919
2020# Version number of this module.
21- ModuleVersion = ' 1.1.6 '
21+ ModuleVersion = ' 1.1.7 '
2222
2323# Supported PSEditions
2424# CompatiblePSEditions = @()
@@ -132,7 +132,15 @@ PrivateData = @{
132132 # IconUri = ''
133133
134134 # ReleaseNotes of this module
135- ReleaseNotes = ' 1.1.6
135+ ReleaseNotes = ' 1.1.7
136+ -----
137+ * Added projects to build NtObjectManager for PowerShell Core 6.0
138+ * Added additional techniques to open process tokens in access checking cmdlets.
139+ * Fixed issues with Add-NtKey and added Remove-NtKey cmdlets.
140+ * Minor fixes from fllombard
141+ * Added change notify key with asynchronous support
142+ * Added kernel LUID allocation
143+ 1.1.6
136144-----
137145* Added support for child process policy and desktop app policy to Win32ProcessConfig.
138146* Added new mitigation options from Win10 1709.
Original file line number Diff line number Diff line change 3333// by using the '*' as shown below:
3434// [assembly: AssemblyVersion("1.0.*")]
3535[ assembly: AssemblyVersion ( "1.0.0.0" ) ]
36- [ assembly: AssemblyFileVersion ( "1.1.6 .0" ) ]
37- [ assembly: AssemblyInformationalVersion ( "1.1.6 " ) ]
36+ [ assembly: AssemblyFileVersion ( "1.1.7 .0" ) ]
37+ [ assembly: AssemblyInformationalVersion ( "1.1.7 " ) ]
Original file line number Diff line number Diff line change @@ -16,10 +16,20 @@ NtApiDotNet: A basic managed library to access NT system calls and objects.
1616NtObjectManager: A powershell module which uses NtApiDotNet to expose the NT object manager.
1717ViewSecurityDescriptor: View the security descriptor from an SDDL string or an inherited object.
1818
19- The tools can be built with Visual Studio 2017
19+ The tools can be built with Visual Studio 2017. It's possible to also build NtApiDotNet and NtObjectManager
20+ with .NET Core 2.0 by building the specific project files.
2021
2122Release Notes:
2223
24+ 1.1.7
25+ -----
26+ * Added projects to build NtObjectManager for PowerShell Core 6.0
27+ * Added additional techniques to open process tokens in access checking cmdlets.
28+ * Fixed issues with Add-NtKey and added Remove-NtKey cmdlets.
29+ * Minor fixes from fllombard
30+ * Added change notify key with asynchronous support
31+ * Added kernel LUID allocation
32+
23331.1.6
2434-----
2535* Added support for child process policy and desktop app policy to Win32ProcessConfig.
You can’t perform that action at this time.
0 commit comments