File tree Expand file tree Collapse file tree 5 files changed +47
-6
lines changed
Expand file tree Collapse file tree 5 files changed +47
-6
lines changed Original file line number Diff line number Diff line change 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+
14281.1.14
1529------
1630* Added basic support for transaction objects.
Original file line number Diff line number Diff line change 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 " ) ]
Original file line number Diff line number Diff line change 1818RootModule = ' 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.
Original file line number Diff line number Diff line change 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 " ) ]
Original file line number Diff line number Diff line change @@ -21,6 +21,20 @@ with .NET Core 2.0 by building the specific project files.
2121
2222Release 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+
24381.1.14
2539------
2640* Added basic support for transaction objects.
You can’t perform that action at this time.
0 commit comments