Skip to content

Commit 035394b

Browse files
author
James Forshaw
committed
Updated version.
1 parent 948a5a3 commit 035394b

File tree

8 files changed

+45
-9
lines changed

8 files changed

+45
-9
lines changed

NtApiDotNet/NtApiDotNet.Core.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
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>

NtApiDotNet/NtApiDotNet.nuspec

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,15 @@
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+
1423
1.1.6
1524
-----
1625
* Added support for child process policy and desktop app policy to Win32ProcessConfig.

NtApiDotNet/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,5 +33,5 @@
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")]

NtApiDotNet/Readme.txt

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,3 +24,12 @@ And others I've no doubt forgotten.
2424
NOTE: It's still a work in progress and it's not designed to act as a documentation
2525
source for the entire NT API. There will be bits missing. Patches are welcome to
2626
add 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.

NtObjectManager/NtObjectManager.Core.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
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>

NtObjectManager/NtObjectManager.psd1

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
RootModule = '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.

NtObjectManager/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,5 +33,5 @@
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")]

README.txt

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,20 @@ NtApiDotNet: A basic managed library to access NT system calls and objects.
1616
NtObjectManager: A powershell module which uses NtApiDotNet to expose the NT object manager.
1717
ViewSecurityDescriptor: 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

2122
Release 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+
2333
1.1.6
2434
-----
2535
* Added support for child process policy and desktop app policy to Win32ProcessConfig.

0 commit comments

Comments
 (0)