Skip to content

Commit 9093512

Browse files
author
James Forshaw
committed
Updated to version 1.1.13.
1 parent 89b49e0 commit 9093512

File tree

7 files changed

+46
-8
lines changed

7 files changed

+46
-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.12.0</FileVersion>
10+
<FileVersion>1.1.13.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: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,19 @@
1111
<requireLicenseAcceptance>false</requireLicenseAcceptance>
1212
<description>A .NET class library to access native NT API system calls</description>
1313
<releaseNotes>
14+
1.1.13
15+
------
16+
* Fixed bug in Get-NtToken for sandboxed tokens.
17+
* Extended support for Job objects.
18+
* Added Set-NtFileReparsePoint cmdlet.
19+
* Added support for viewing a file with Show-NtSection
20+
* Added support for DuplicateTo methods from rosalie.lecart.
21+
* Improved support for Win32 Desktop and WindowStation objects.
22+
* ScriptBlock support for the $_ argument.
23+
* Added SID -> Name cache to improve performance.
24+
* Fixed user marshallers in NDR for Windows 7.
25+
* Added internal security descriptor viewer control.
26+
1427
1.1.12
1528
------
1629
* Added basic NDR parser.

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.12.0")]
37-
[assembly: AssemblyInformationalVersion("1.1.12")]
36+
[assembly: AssemblyFileVersion("1.1.13.0")]
37+
[assembly: AssemblyInformationalVersion("1.1.13")]

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.12.0</FileVersion>
10+
<FileVersion>1.1.13.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: 14 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.12'
21+
ModuleVersion = '1.1.13'
2222

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

9999
# ReleaseNotes of this module
100-
ReleaseNotes = '1.1.12
100+
ReleaseNotes = '1.1.13
101+
------
102+
* Fixed bug in Get-NtToken for sandboxed tokens.
103+
* Extended support for Job objects.
104+
* Added Set-NtFileReparsePoint cmdlet.
105+
* Added support for viewing a file with Show-NtSection
106+
* Added support for DuplicateTo methods from rosalie.lecart.
107+
* Improved support for Win32 Desktop and WindowStation objects.
108+
* ScriptBlock support for the $_ argument.
109+
* Added SID -> Name cache to improve performance.
110+
* Fixed user marshallers in NDR for Windows 7.
111+
* Added internal security descriptor viewer control.
112+
1.1.12
101113
------
102114
* Added basic NDR parser.
103115
* Added basic symbol resolver.

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.12.0")]
37-
[assembly: AssemblyInformationalVersion("1.1.12")]
36+
[assembly: AssemblyFileVersion("1.1.13.0")]
37+
[assembly: AssemblyInformationalVersion("1.1.13")]

README.txt

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

2222
Release Notes:
2323

24+
1.1.13
25+
------
26+
* Fixed bug in Get-NtToken for sandboxed tokens.
27+
* Extended support for Job objects.
28+
* Added Set-NtFileReparsePoint cmdlet.
29+
* Added support for viewing a file with Show-NtSection
30+
* Added support for DuplicateTo methods from rosalie.lecart.
31+
* Improved support for Win32 Desktop and WindowStation objects.
32+
* ScriptBlock support for the $_ argument.
33+
* Added SID -> Name cache to improve performance.
34+
* Fixed user marshallers in NDR for Windows 7.
35+
* Added internal security descriptor viewer control.
36+
2437
1.1.12
2538
------
2639
* Added basic NDR parser.

0 commit comments

Comments
 (0)