Skip to content

Commit c654259

Browse files
author
James Forshaw
committed
Updated version to 1.1.15.
1 parent c1c1577 commit c654259

File tree

5 files changed

+47
-6
lines changed

5 files changed

+47
-6
lines changed

NtApiDotNet/NtApiDotNet.nuspec

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,20 @@
1111
<requireLicenseAcceptance>false</requireLicenseAcceptance>
1212
<description>A .NET class library to access native NT API system calls</description>
1313
<releaseNotes>
14+
1.1.15
15+
------
16+
* Convert access exceptions during NDR parsing into an NdrParser exception rather than crashing the process.
17+
* Added function to enumerate running services with PIDs.
18+
* Added methods to load module into a symbol resolver after creation.
19+
* Added basic support for WNF registrations including a Get-NtWnf cmdlet.
20+
* Expose all parameters for section mapping.
21+
* Added a Get-NtMappedSection cmdlet.
22+
* Various fixes to NDR decoding.
23+
* Added method to create an anonymous named pipe pair.
24+
* Rework of cached signing level, including unpacked EA data based on information provided by Alex Ionescu.
25+
* Added protection level to the base New-Win32Process function.
26+
* Added access rights for process creation.
27+
1428
1.1.14
1529
------
1630
* Added basic support for transaction objects.

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.14.0")]
37-
[assembly: AssemblyInformationalVersion("1.1.14")]
36+
[assembly: AssemblyFileVersion("1.1.15.0")]
37+
[assembly: AssemblyInformationalVersion("1.1.15")]

NtObjectManager/NtObjectManager.psd1

Lines changed: 15 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.14'
21+
ModuleVersion = '1.1.15'
2222

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

101101
# ReleaseNotes of this module
102-
ReleaseNotes = '1.1.14
102+
ReleaseNotes = '1.1.15
103+
------
104+
* Convert access exceptions during NDR parsing into an NdrParser exception rather than crashing the process.
105+
* Added function to enumerate running services with PIDs.
106+
* Added methods to load module into a symbol resolver after creation.
107+
* Added basic support for WNF registrations including a Get-NtWnf cmdlet.
108+
* Expose all parameters for section mapping.
109+
* Added a Get-NtMappedSection cmdlet.
110+
* Various fixes to NDR decoding.
111+
* Added method to create an anonymous named pipe pair.
112+
* Rework of cached signing level, including unpacked EA data based on information provided by Alex Ionescu.
113+
* Added protection level to the base New-Win32Process function.
114+
* Added access rights for process creation.
115+
1.1.14
103116
------
104117
* Added basic support for transaction objects.
105118
* Minor fixes for ALPC support.

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.14.0")]
37-
[assembly: AssemblyInformationalVersion("1.1.14")]
36+
[assembly: AssemblyFileVersion("1.1.15.0")]
37+
[assembly: AssemblyInformationalVersion("1.1.15")]

README.txt

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

2222
Release Notes:
2323

24+
1.1.15
25+
------
26+
* Convert access exceptions during NDR parsing into an NdrParser exception rather than crashing the process.
27+
* Added function to enumerate running services with PIDs.
28+
* Added methods to load module into a symbol resolver after creation.
29+
* Added basic support for WNF registrations including a Get-NtWnf cmdlet.
30+
* Expose all parameters for section mapping.
31+
* Added a Get-NtMappedSection cmdlet.
32+
* Various fixes to NDR decoding.
33+
* Added method to create an anonymous named pipe pair.
34+
* Rework of cached signing level, including unpacked EA data based on information provided by Alex Ionescu.
35+
* Added protection level to the base New-Win32Process function.
36+
* Added access rights for process creation.
37+
2438
1.1.14
2539
------
2640
* Added basic support for transaction objects.

0 commit comments

Comments
 (0)