Skip to content

Commit 096ae07

Browse files
committed
Updated version to 1.1.28.
1 parent 898e70e commit 096ae07

File tree

6 files changed

+65
-47
lines changed

6 files changed

+65
-47
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.27.0</FileVersion>
10+
<FileVersion>1.1.28.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: 29 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -11,27 +11,36 @@
1111
<requireLicenseAcceptance>false</requireLicenseAcceptance>
1212
<description>A .NET class library to access native NT API system calls</description>
1313
<releaseNotes>
14-
1.1.27
14+
1.1.28
1515
--------
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.
16+
* Added Import-Win32Module and Get-Win32Module.
17+
* Added support for Registry Keys in the NtObjectManager provider.
18+
* Added Get-NtDirectoryEntry.
19+
* Added Win32 CreateRemoteThread.
20+
* Added addition Registry Key functions.
21+
* Added Network Authentication commands.
22+
* Added Authentication Token formatting commands.
23+
* Added new filtering features to TokenViewer.
24+
* Improved cmdlets for getting and setting object information classes.
25+
* Added Add-NtSection and Remove-NtSection.
26+
* Added Compare-NtObject.
27+
* Added Test-NtTokenPrivilege.
28+
* Added type parsing from PDBs via SymbolResolver.
29+
* Added a summary format to Format-NtSecurityDescriptor.
30+
* Added Out-HexDump.
31+
* Added C# compiler support for .NET Core Support of Get-RpcClient.
32+
* Updated New-NtSecurityDescriptor and Edit-NtSecurityDescriptor.
33+
* Basic C++ NDR formatting from irsl@.
34+
* Added Format-NtJob.
35+
* Added New-NtSecurityAttribute and Get-NtAceConditionData.
36+
* Added Device/User Claims to Token Viewer and Format-NtToken.
37+
* Added many different commands to manipulate Security Descriptors.
38+
* Added Win32 Security Descriptor commands.
39+
* Added filtering for accessible path commands.
40+
* Added Audit support.
41+
* Added basic AuthZ API support.
42+
* Added basic ASN.1 DER parsing and Format-ASN1DER command.
43+
* Added Kerberos Keytab file reading and writing.
3544
</releaseNotes>
3645
<copyright>Copyright Google Inc. 2016-2020</copyright>
3746
<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.27.0")]
36-
[assembly: AssemblyInformationalVersion("1.1.27")]
35+
[assembly: AssemblyFileVersion("1.1.28.0")]
36+
[assembly: AssemblyInformationalVersion("1.1.28")]

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.27.0</FileVersion>
10+
<FileVersion>1.1.28.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: 30 additions & 21 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.27'
21+
ModuleVersion = '1.1.28'
2222

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

156156
# ReleaseNotes of this module
157-
ReleaseNotes = '1.1.27
157+
ReleaseNotes = '1.1.28
158158
--------
159-
* Added support for directory change notifications.
160-
* Added New-NtDesktop, Get-NtDesktop and Get-NtDesktopName.
161-
* Added New-NtWindowStation, Get-NtWindowStation and Get-NtWindowStationName.
162-
* Changed Win32 error codes to an enumeration.
163-
* Added Load/Unload driver.
164-
* Added properties to NtType to show access masks.
165-
* Added basic SendInput method.
166-
* Added token source tab to Token Viewer.
167-
* Updated for the Job object and New-NtJob.
168-
* Added NtWindow class a HWND enumeration.
169-
* Added Get-AccessibleWindowStation command.
170-
* Added some well known WNF names.
171-
* Added option to Get-AccessibleService to check file permissions.
172-
* Added Set-NtProcessJob command.
173-
* Added Get-AccessibleToken command.
174-
* Added support for compound ACEs.
175-
* Added Get/Sid-NtTokenSid and Get/Set-NtTokenGroup.
176-
* Added Get-AccessibleEventTrace command.
177-
* Added Get-AccessibleWnf command.
159+
* Added Import-Win32Module and Get-Win32Module.
160+
* Added support for Registry Keys in the NtObjectManager provider.
161+
* Added Get-NtDirectoryEntry.
162+
* Added Win32 CreateRemoteThread.
163+
* Added addition Registry Key functions.
164+
* Added Network Authentication commands.
165+
* Added Authentication Token formatting commands.
166+
* Added new filtering features to TokenViewer.
167+
* Improved cmdlets for getting and setting object information classes.
168+
* Added Add-NtSection and Remove-NtSection.
169+
* Added Compare-NtObject.
170+
* Added Test-NtTokenPrivilege.
171+
* Added type parsing from PDBs via SymbolResolver.
172+
* Added a summary format to Format-NtSecurityDescriptor.
173+
* Added Out-HexDump.
174+
* Added C# compiler support for .NET Core Support of Get-RpcClient.
175+
* Updated New-NtSecurityDescriptor and Edit-NtSecurityDescriptor.
176+
* Basic C++ NDR formatting from irsl@.
177+
* Added Format-NtJob.
178+
* Added New-NtSecurityAttribute and Get-NtAceConditionData.
179+
* Added Device/User Claims to Token Viewer and Format-NtToken.
180+
* Added many different commands to manipulate Security Descriptors.
181+
* Added Win32 Security Descriptor commands.
182+
* Added filtering for accessible path commands.
183+
* Added Audit support.
184+
* Added basic AuthZ API support.
185+
* Added basic ASN.1 DER parsing and Format-ASN1DER command.
186+
* Added Kerberos Keytab file reading and writing.
178187
'
179188

180189
# 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.27.0")]
36-
[assembly: AssemblyInformationalVersion("1.1.27")]
35+
[assembly: AssemblyFileVersion("1.1.28.0")]
36+
[assembly: AssemblyInformationalVersion("1.1.28")]

0 commit comments

Comments
 (0)