Skip to content

Commit 0c94ba6

Browse files
committed
Updated to v1.1.27.
1 parent 270ad77 commit 0c94ba6

File tree

7 files changed

+69
-43
lines changed

7 files changed

+69
-43
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.26.0</FileVersion>
10+
<FileVersion>1.1.27.0</FileVersion>
1111
<Copyright>Copyright © Google Inc. 2016-2020</Copyright>
1212
<AssemblyVersion>1.0.0.0</AssemblyVersion>
1313
<PackageLicenseUrl>https://www.apache.org/licenses/LICENSE-2.0</PackageLicenseUrl>

NtApiDotNet/NtApiDotNet.nuspec

Lines changed: 20 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -11,25 +11,27 @@
1111
<requireLicenseAcceptance>false</requireLicenseAcceptance>
1212
<description>A .NET class library to access native NT API system calls</description>
1313
<releaseNotes>
14-
1.1.26
14+
1.1.27
1515
--------
16-
* Add DeviceGuid to Get/New-NtFile
17-
* Fixed bug in ETA registrations and added GUID enumeration.
18-
* Added SetExceptionPort to NtProcess.
19-
* Added child process mitigation improvements.
20-
* Added extended Fork.
21-
* Updated native process creation support.
22-
* Various new non-throwing methods.
23-
* Updated to C# 7.3.
24-
* Added list of access rights to NtType.
25-
* Added default mandatory policy to NtType.
26-
* Added SetDisposition methods to NtFile.
27-
* Added console and GUI support for Object ACEs.
28-
* Updated access checking to support Object Types.
29-
* Access check returns a structure rather than just an access mask.
30-
* CPP style NDR formatting (#21)
31-
* Added Get-NtTokenPrivilege command.
32-
* Added Get-NtLocallyUniqueId command.
16+
* Added support for directory change notifications.
17+
* Added New-NtDesktop, Get-NtDesktop and Get-NtDesktopName.
18+
* Added New-NtWindowStation, Get-NtWindowStation and Get-NtWindowStationName.
19+
* Changed Win32 error codes to an enumeration.
20+
* Added Load/Unload driver.
21+
* Added properties to NtType to show access masks.
22+
* Added basic SendInput method.
23+
* Added token source tab to Token Viewer.
24+
* Updated for the Job object and New-NtJob.
25+
* Added NtWindow class a HWND enumeration.
26+
* Added Get-AccessibleWindowStation command.
27+
* Added some well known WNF names.
28+
* Added option to Get-AccessibleService to check file permissions.
29+
* Added Set-NtProcessJob command.
30+
* Added Get-AccessibleToken command.
31+
* Added support for compound ACEs.
32+
* Added Get/Sid-NtTokenSid and Get/Set-NtTokenGroup.
33+
* Added Get-AccessibleEventTrace command.
34+
* Added Get-AccessibleWnf command.
3335
</releaseNotes>
3436
<copyright>Copyright Google Inc. 2016-2020</copyright>
3537
<tags>syscalls</tags>

NtApiDotNet/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@
3232
// by using the '*' as shown below:
3333
// [assembly: AssemblyVersion("1.0.*")]
3434
[assembly: AssemblyVersion("1.0.0.0")]
35-
[assembly: AssemblyFileVersion("1.1.26.0")]
36-
[assembly: AssemblyInformationalVersion("1.1.26")]
35+
[assembly: AssemblyFileVersion("1.1.27.0")]
36+
[assembly: AssemblyInformationalVersion("1.1.27")]

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.26.0</FileVersion>
10+
<FileVersion>1.1.27.0</FileVersion>
1111
<Copyright>Copyright © Google Inc. 2016-2020</Copyright>
1212
<AssemblyVersion>1.0.0.0</AssemblyVersion>
1313
<PackageLicenseUrl>https://www.apache.org/licenses/LICENSE-2.0</PackageLicenseUrl>

NtObjectManager/NtObjectManager.psd1

Lines changed: 21 additions & 19 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.26'
21+
ModuleVersion = '1.1.27'
2222

2323
# ID used to uniquely identify this module
2424
GUID = 'ac251c97-67a6-4bc4-bb8a-5ae300e93030'
@@ -123,25 +123,27 @@ PrivateData = @{
123123
ProjectUri = 'https://github.com/googleprojectzero/sandbox-attacksurface-analysis-tools'
124124

125125
# ReleaseNotes of this module
126-
ReleaseNotes = '1.1.26
126+
ReleaseNotes = '1.1.27
127127
--------
128-
* Add DeviceGuid to Get/New-NtFile
129-
* Fixed bug in ETA registrations and added GUID enumeration.
130-
* Added SetExceptionPort to NtProcess.
131-
* Added child process mitigation improvements.
132-
* Added extended Fork.
133-
* Updated native process creation support.
134-
* Various new non-throwing methods.
135-
* Updated to C# 7.3.
136-
* Added list of access rights to NtType.
137-
* Added default mandatory policy to NtType.
138-
* Added SetDisposition methods to NtFile.
139-
* Added console and GUI support for Object ACEs.
140-
* Updated access checking to support Object Types.
141-
* Access check returns a structure rather than just an access mask.
142-
* CPP style NDR formatting (#21)
143-
* Added Get-NtTokenPrivilege command.
144-
* Added Get-NtLocallyUniqueId command.
128+
* Added support for directory change notifications.
129+
* Added New-NtDesktop, Get-NtDesktop and Get-NtDesktopName.
130+
* Added New-NtWindowStation, Get-NtWindowStation and Get-NtWindowStationName.
131+
* Changed Win32 error codes to an enumeration.
132+
* Added Load/Unload driver.
133+
* Added properties to NtType to show access masks.
134+
* Added basic SendInput method.
135+
* Added token source tab to Token Viewer.
136+
* Updated for the Job object and New-NtJob.
137+
* Added NtWindow class a HWND enumeration.
138+
* Added Get-AccessibleWindowStation command.
139+
* Added some well known WNF names.
140+
* Added option to Get-AccessibleService to check file permissions.
141+
* Added Set-NtProcessJob command.
142+
* Added Get-AccessibleToken command.
143+
* Added support for compound ACEs.
144+
* Added Get/Sid-NtTokenSid and Get/Set-NtTokenGroup.
145+
* Added Get-AccessibleEventTrace command.
146+
* Added Get-AccessibleWnf command.
145147
'
146148

147149
# External dependent modules of this module

NtObjectManager/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@
3232
// by using the '*' as shown below:
3333
// [assembly: AssemblyVersion("1.0.*")]
3434
[assembly: AssemblyVersion("1.0.0.0")]
35-
[assembly: AssemblyFileVersion("1.1.26.0")]
36-
[assembly: AssemblyInformationalVersion("1.1.26")]
35+
[assembly: AssemblyFileVersion("1.1.27.0")]
36+
[assembly: AssemblyInformationalVersion("1.1.27")]

README.txt

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,28 @@ Thanks to the people who were willing to test it and give feedback:
4646

4747
Release Notes:
4848

49+
1.1.27
50+
--------
51+
* Added support for directory change notifications.
52+
* Added New-NtDesktop, Get-NtDesktop and Get-NtDesktopName.
53+
* Added New-NtWindowStation, Get-NtWindowStation and Get-NtWindowStationName.
54+
* Changed Win32 error codes to an enumeration.
55+
* Added Load/Unload driver.
56+
* Added properties to NtType to show access masks.
57+
* Added basic SendInput method.
58+
* Added token source tab to Token Viewer.
59+
* Updated for the Job object and New-NtJob.
60+
* Added NtWindow class a HWND enumeration.
61+
* Added Get-AccessibleWindowStation command.
62+
* Added some well known WNF names.
63+
* Added option to Get-AccessibleService to check file permissions.
64+
* Added Set-NtProcessJob command.
65+
* Added Get-AccessibleToken command.
66+
* Added support for compound ACEs.
67+
* Added Get/Sid-NtTokenSid and Get/Set-NtTokenGroup.
68+
* Added Get-AccessibleEventTrace command.
69+
* Added Get-AccessibleWnf command.
70+
4971
1.1.26
5072
--------
5173
* Add DeviceGuid to Get/New-NtFile

0 commit comments

Comments
 (0)