Skip to content

Commit

Permalink
Updated version to 1.1.15.
Browse files Browse the repository at this point in the history
  • Loading branch information
James Forshaw committed Jun 18, 2018
1 parent c1c1577 commit c654259
Show file tree
Hide file tree
Showing 5 changed files with 47 additions and 6 deletions.
14 changes: 14 additions & 0 deletions NtApiDotNet/NtApiDotNet.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,20 @@
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>A .NET class library to access native NT API system calls</description>
<releaseNotes>
1.1.15
------
* Convert access exceptions during NDR parsing into an NdrParser exception rather than crashing the process.
* Added function to enumerate running services with PIDs.
* Added methods to load module into a symbol resolver after creation.
* Added basic support for WNF registrations including a Get-NtWnf cmdlet.
* Expose all parameters for section mapping.
* Added a Get-NtMappedSection cmdlet.
* Various fixes to NDR decoding.
* Added method to create an anonymous named pipe pair.
* Rework of cached signing level, including unpacked EA data based on information provided by Alex Ionescu.
* Added protection level to the base New-Win32Process function.
* Added access rights for process creation.

1.1.14
------
* Added basic support for transaction objects.
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.14.0")]
[assembly: AssemblyInformationalVersion("1.1.14")]
[assembly: AssemblyFileVersion("1.1.15.0")]
[assembly: AssemblyInformationalVersion("1.1.15")]
17 changes: 15 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.14'
ModuleVersion = '1.1.15'

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

# ReleaseNotes of this module
ReleaseNotes = '1.1.14
ReleaseNotes = '1.1.15
------
* Convert access exceptions during NDR parsing into an NdrParser exception rather than crashing the process.
* Added function to enumerate running services with PIDs.
* Added methods to load module into a symbol resolver after creation.
* Added basic support for WNF registrations including a Get-NtWnf cmdlet.
* Expose all parameters for section mapping.
* Added a Get-NtMappedSection cmdlet.
* Various fixes to NDR decoding.
* Added method to create an anonymous named pipe pair.
* Rework of cached signing level, including unpacked EA data based on information provided by Alex Ionescu.
* Added protection level to the base New-Win32Process function.
* Added access rights for process creation.
1.1.14
------
* Added basic support for transaction objects.
* Minor fixes for ALPC support.
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.14.0")]
[assembly: AssemblyInformationalVersion("1.1.14")]
[assembly: AssemblyFileVersion("1.1.15.0")]
[assembly: AssemblyInformationalVersion("1.1.15")]
14 changes: 14 additions & 0 deletions README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,20 @@ with .NET Core 2.0 by building the specific project files.

Release Notes:

1.1.15
------
* Convert access exceptions during NDR parsing into an NdrParser exception rather than crashing the process.
* Added function to enumerate running services with PIDs.
* Added methods to load module into a symbol resolver after creation.
* Added basic support for WNF registrations including a Get-NtWnf cmdlet.
* Expose all parameters for section mapping.
* Added a Get-NtMappedSection cmdlet.
* Various fixes to NDR decoding.
* Added method to create an anonymous named pipe pair.
* Rework of cached signing level, including unpacked EA data based on information provided by Alex Ionescu.
* Added protection level to the base New-Win32Process function.
* Added access rights for process creation.

1.1.14
------
* Added basic support for transaction objects.
Expand Down

0 comments on commit c654259

Please sign in to comment.