Skip to content

Commit

Permalink
Updated to version 1.1.13.
Browse files Browse the repository at this point in the history
  • Loading branch information
James Forshaw committed Apr 4, 2018
1 parent 89b49e0 commit 9093512
Show file tree
Hide file tree
Showing 7 changed files with 46 additions and 8 deletions.
2 changes: 1 addition & 1 deletion NtApiDotNet/NtApiDotNet.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<Authors>James Forshaw</Authors>
<Company>Google Inc.</Company>
<Product>NtApiDotNet</Product>
<FileVersion>1.1.12.0</FileVersion>
<FileVersion>1.1.13.0</FileVersion>
<Copyright>Copyright © Google Inc. 2016, 2017, 2018</Copyright>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<PackageLicenseUrl>https://www.apache.org/licenses/LICENSE-2.0</PackageLicenseUrl>
Expand Down
13 changes: 13 additions & 0 deletions NtApiDotNet/NtApiDotNet.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,19 @@
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>A .NET class library to access native NT API system calls</description>
<releaseNotes>
1.1.13
------
* Fixed bug in Get-NtToken for sandboxed tokens.
* Extended support for Job objects.
* Added Set-NtFileReparsePoint cmdlet.
* Added support for viewing a file with Show-NtSection
* Added support for DuplicateTo methods from rosalie.lecart.
* Improved support for Win32 Desktop and WindowStation objects.
* ScriptBlock support for the $_ argument.
* Added SID -> Name cache to improve performance.
* Fixed user marshallers in NDR for Windows 7.
* Added internal security descriptor viewer control.

1.1.12
------
* Added basic NDR parser.
Expand Down
4 changes: 2 additions & 2 deletions NtApiDotNet/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,5 @@
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.1.12.0")]
[assembly: AssemblyInformationalVersion("1.1.12")]
[assembly: AssemblyFileVersion("1.1.13.0")]
[assembly: AssemblyInformationalVersion("1.1.13")]
2 changes: 1 addition & 1 deletion NtObjectManager/NtObjectManager.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<Authors>James Forshaw</Authors>
<Company>Google Inc.</Company>
<Product>NtObjectManager</Product>
<FileVersion>1.1.12.0</FileVersion>
<FileVersion>1.1.13.0</FileVersion>
<Copyright>Copyright © Google Inc. 2016, 2017, 2018</Copyright>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<PackageLicenseUrl>https://www.apache.org/licenses/LICENSE-2.0</PackageLicenseUrl>
Expand Down
16 changes: 14 additions & 2 deletions NtObjectManager/NtObjectManager.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
RootModule = 'NtObjectManager.psm1'

# Version number of this module.
ModuleVersion = '1.1.12'
ModuleVersion = '1.1.13'

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

# ReleaseNotes of this module
ReleaseNotes = '1.1.12
ReleaseNotes = '1.1.13
------
* Fixed bug in Get-NtToken for sandboxed tokens.
* Extended support for Job objects.
* Added Set-NtFileReparsePoint cmdlet.
* Added support for viewing a file with Show-NtSection
* Added support for DuplicateTo methods from rosalie.lecart.
* Improved support for Win32 Desktop and WindowStation objects.
* ScriptBlock support for the $_ argument.
* Added SID -> Name cache to improve performance.
* Fixed user marshallers in NDR for Windows 7.
* Added internal security descriptor viewer control.
1.1.12
------
* Added basic NDR parser.
* Added basic symbol resolver.
Expand Down
4 changes: 2 additions & 2 deletions NtObjectManager/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,5 @@
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.1.12.0")]
[assembly: AssemblyInformationalVersion("1.1.12")]
[assembly: AssemblyFileVersion("1.1.13.0")]
[assembly: AssemblyInformationalVersion("1.1.13")]
13 changes: 13 additions & 0 deletions README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,19 @@ with .NET Core 2.0 by building the specific project files.

Release Notes:

1.1.13
------
* Fixed bug in Get-NtToken for sandboxed tokens.
* Extended support for Job objects.
* Added Set-NtFileReparsePoint cmdlet.
* Added support for viewing a file with Show-NtSection
* Added support for DuplicateTo methods from rosalie.lecart.
* Improved support for Win32 Desktop and WindowStation objects.
* ScriptBlock support for the $_ argument.
* Added SID -> Name cache to improve performance.
* Fixed user marshallers in NDR for Windows 7.
* Added internal security descriptor viewer control.

1.1.12
------
* Added basic NDR parser.
Expand Down

0 comments on commit 9093512

Please sign in to comment.