Skip to content

Commit ea13b99

Browse files
author
James Forshaw
committed
Updated to v1.1.11
1 parent 63d1b90 commit ea13b99

File tree

7 files changed

+41
-9
lines changed

7 files changed

+41
-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.10.0</FileVersion>
10+
<FileVersion>1.1.11.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: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,17 @@
1111
<requireLicenseAcceptance>false</requireLicenseAcceptance>
1212
<description>A .NET class library to access native NT API system calls</description>
1313
<releaseNotes>
14+
1.1.11
15+
------
16+
* Improved New-NtToken including adding missing IL
17+
* Added new NTSTATUS codes from 1709
18+
* Changes to native process creation
19+
* Added OverrideChildProcessCreation for Win32 process
20+
* Added display of process trust labels from tokens.
21+
* Fixed IsChildProcessRestricted on 1709 and above (changed structure)
22+
* Fixed named pipe server in TokenViewer
23+
* Added -All parameter to Show-NtToken to display list of tokens.
24+
1425
1.1.10
1526
------
1627
* Added support for extended handle information to allow for PIDs > 64k.

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.10.0")]
37-
[assembly: AssemblyInformationalVersion("1.1.10")]
36+
[assembly: AssemblyFileVersion("1.1.11.0")]
37+
[assembly: AssemblyInformationalVersion("1.1.11")]

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

2323
# Supported PSEditions
2424
# CompatiblePSEditions = @()
@@ -94,7 +94,17 @@ PrivateData = @{
9494
ProjectUri = 'https://github.com/google/sandbox-attacksurface-analysis-tools'
9595

9696
# ReleaseNotes of this module
97-
ReleaseNotes = '1.1.10
97+
ReleaseNotes = '1.1.11
98+
------
99+
* Improved New-NtToken including adding missing IL
100+
* Added new NTSTATUS codes from 1709
101+
* Changes to native process creation
102+
* Added OverrideChildProcessCreation for Win32 process
103+
* Added display of process trust labels from tokens.
104+
* Fixed IsChildProcessRestricted on 1709 and above (changed structure)
105+
* Fixed named pipe server in TokenViewer
106+
* Added -All parameter to Show-NtToken to display list of tokens.
107+
1.1.10
98108
------
99109
* Added support for extended handle information to allow for PIDs > 64k.
100110
* Added basic New-NtToken cmdlet and system call.

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.10.0")]
37-
[assembly: AssemblyInformationalVersion("1.1.10")]
36+
[assembly: AssemblyFileVersion("1.1.11.0")]
37+
[assembly: AssemblyInformationalVersion("1.1.11")]

README.txt

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
sandbox-attacksurface-analysis-tools
22

3-
(c) Google Inc. 2015, 2016, 2017
3+
(c) Google Inc. 2015, 2016, 2017, 2018
44
Developed by James Forshaw
55

66
This is a small suite of tools to test various properties of sandboxes on Windows. Many of the checking
@@ -21,6 +21,17 @@ with .NET Core 2.0 by building the specific project files.
2121

2222
Release Notes:
2323

24+
1.1.11
25+
------
26+
* Improved New-NtToken including adding missing IL
27+
* Added new NTSTATUS codes from 1709
28+
* Changes to native process creation
29+
* Added OverrideChildProcessCreation for Win32 process
30+
* Added display of process trust labels from tokens.
31+
* Fixed IsChildProcessRestricted on 1709 and above (changed structure)
32+
* Fixed named pipe server in TokenViewer
33+
* Added -All parameter to Show-NtToken to display list of tokens.
34+
2435
1.1.10
2536
------
2637
* Added support for extended handle information to allow for PIDs > 64k.

0 commit comments

Comments
 (0)