Skip to content

Commit 5d3e055

Browse files
committed
Updated to version 1.1.14
1 parent ecf1ab0 commit 5d3e055

File tree

7 files changed

+37
-8
lines changed

7 files changed

+37
-8
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.13.0</FileVersion>
10+
<FileVersion>1.1.14.0</FileVersion>
1111
<Copyright>Copyright © Google Inc. 2016, 2017, 2018</Copyright>
1212
<AssemblyVersion>1.0.0.0</AssemblyVersion>
1313
<PackageLicenseUrl>https://www.apache.org/licenses/LICENSE-2.0</PackageLicenseUrl>

NtApiDotNet/NtApiDotNet.nuspec

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,16 @@
1111
<requireLicenseAcceptance>false</requireLicenseAcceptance>
1212
<description>A .NET class library to access native NT API system calls</description>
1313
<releaseNotes>
14+
1.1.14
15+
------
16+
* Added basic support for transaction objects.
17+
* Minor fixes for ALPC support.
18+
* Implemented OOP NDR parsing.
19+
* Added NDR parsing and formatting powershell functions such as New-NdrParser and Format-NdrComProxy
20+
* Fix for display of NDR arrays from 1orenz0.
21+
* Print NDR correlation descriptors during formatting.
22+
* Added support to read out COM proxies.
23+
1424
1.1.13
1525
------
1626
* Fixed bug in Get-NtToken for sandboxed tokens.

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.13.0")]
37-
[assembly: AssemblyInformationalVersion("1.1.13")]
36+
[assembly: AssemblyFileVersion("1.1.14.0")]
37+
[assembly: AssemblyInformationalVersion("1.1.14")]

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

NtObjectManager/NtObjectManager.psd1

Lines changed: 11 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.13'
21+
ModuleVersion = '1.1.14'
2222

2323
# Supported PSEditions
2424
# CompatiblePSEditions = @()
@@ -98,7 +98,16 @@ PrivateData = @{
9898
ProjectUri = 'https://github.com/google/sandbox-attacksurface-analysis-tools'
9999

100100
# ReleaseNotes of this module
101-
ReleaseNotes = '1.1.13
101+
ReleaseNotes = '1.1.14
102+
------
103+
* Added basic support for transaction objects.
104+
* Minor fixes for ALPC support.
105+
* Implemented OOP NDR parsing.
106+
* Added NDR parsing and formatting powershell functions such as New-NdrParser and Format-NdrComProxy
107+
* Fix for display of NDR arrays from 1orenz0.
108+
* Print NDR correlation descriptors during formatting.
109+
* Added support to read out COM proxies.
110+
1.1.13
102111
------
103112
* Fixed bug in Get-NtToken for sandboxed tokens.
104113
* Extended support for Job objects.

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.13.0")]
37-
[assembly: AssemblyInformationalVersion("1.1.13")]
36+
[assembly: AssemblyFileVersion("1.1.14.0")]
37+
[assembly: AssemblyInformationalVersion("1.1.14")]

README.txt

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,16 @@ with .NET Core 2.0 by building the specific project files.
2121

2222
Release Notes:
2323

24+
1.1.14
25+
------
26+
* Added basic support for transaction objects.
27+
* Minor fixes for ALPC support.
28+
* Implemented OOP NDR parsing.
29+
* Added NDR parsing and formatting powershell functions such as New-NdrParser and Format-NdrComProxy
30+
* Fix for display of NDR arrays from 1orenz0.
31+
* Print NDR correlation descriptors during formatting.
32+
* Added support to read out COM proxies.
33+
2434
1.1.13
2535
------
2636
* Fixed bug in Get-NtToken for sandboxed tokens.

0 commit comments

Comments
 (0)