Skip to content

Commit 269f00a

Browse files
author
James Forshaw
committed
Updated to version 1.1.12.
1 parent 97f13c3 commit 269f00a

File tree

7 files changed

+85
-8
lines changed

7 files changed

+85
-8
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.11.0</FileVersion>
10+
<FileVersion>1.1.12.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: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,32 @@
1111
<requireLicenseAcceptance>false</requireLicenseAcceptance>
1212
<description>A .NET class library to access native NT API system calls</description>
1313
<releaseNotes>
14+
1.1.12
15+
------
16+
* Added basic NDR parser.
17+
* Added basic symbol resolver.
18+
* Added method to read a security descriptor from another process.
19+
* Improved process memory read and writing methods.
20+
* Added virtual memory cmdlets to allocate, release and modify memory.
21+
* Added Get-EmbeddedAuthenticodeSignature function.
22+
* Added Get and Set NtSecurityDescriptor functions.
23+
* Added ProcessTrustLabel to basic security information set.
24+
* Added Get-NtFileChild cmdlet.
25+
* Added Get-NtKeyChild cmdlet.
26+
* Added Get-NtDirectoryChild cmdlet.
27+
* Added name lookup to NtIoControlCode.
28+
* Added NtNamedPipeFile type with implementations of basic pipe functions.
29+
* Added ADd-DosDevice and Remove-DosDevice cmdlets.
30+
* Added file directory and stream visitors.
31+
* Merged Get-NtLowBoxToken and Get-NtFilteredToken into Get-NtToken.
32+
* Modified Show-NtSection to also display an arbitrary byte array.
33+
* Added an Invoke-NtToken cmdlet to run a script block under impersonation.
34+
* Added Remove-NtFile cmdlet.
35+
* Added case sensitive property for RS4.
36+
* Added flags for NtCreateDirectoryObjectEx.
37+
* Added pseudo option to Get-NtToken.
38+
* Improved conditional ACE support.
39+
1440
1.1.11
1541
------
1642
* Improved New-NtToken including adding missing IL

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.11.0")]
37-
[assembly: AssemblyInformationalVersion("1.1.11")]
36+
[assembly: AssemblyFileVersion("1.1.12.0")]
37+
[assembly: AssemblyInformationalVersion("1.1.12")]

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.11.0</FileVersion>
10+
<FileVersion>1.1.12.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: 27 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.11'
21+
ModuleVersion = '1.1.12'
2222

2323
# Supported PSEditions
2424
# CompatiblePSEditions = @()
@@ -97,7 +97,32 @@ PrivateData = @{
9797
ProjectUri = 'https://github.com/google/sandbox-attacksurface-analysis-tools'
9898

9999
# ReleaseNotes of this module
100-
ReleaseNotes = '1.1.11
100+
ReleaseNotes = '1.1.12
101+
------
102+
* Added basic NDR parser.
103+
* Added basic symbol resolver.
104+
* Added method to read a security descriptor from another process.
105+
* Improved process memory read and writing methods.
106+
* Added virtual memory cmdlets to allocate, release and modify memory.
107+
* Added Get-EmbeddedAuthenticodeSignature function.
108+
* Added Get and Set NtSecurityDescriptor functions.
109+
* Added ProcessTrustLabel to basic security information set.
110+
* Added Get-NtFileChild cmdlet.
111+
* Added Get-NtKeyChild cmdlet.
112+
* Added Get-NtDirectoryChild cmdlet.
113+
* Added name lookup to NtIoControlCode.
114+
* Added NtNamedPipeFile type with implementations of basic pipe functions.
115+
* Added ADd-DosDevice and Remove-DosDevice cmdlets.
116+
* Added file directory and stream visitors.
117+
* Merged Get-NtLowBoxToken and Get-NtFilteredToken into Get-NtToken.
118+
* Modified Show-NtSection to also display an arbitrary byte array.
119+
* Added an Invoke-NtToken cmdlet to run a script block under impersonation.
120+
* Added Remove-NtFile cmdlet.
121+
* Added case sensitive property for RS4.
122+
* Added flags for NtCreateDirectoryObjectEx.
123+
* Added pseudo option to Get-NtToken.
124+
* Improved conditional ACE support.
125+
1.1.11
101126
------
102127
* Improved New-NtToken including adding missing IL
103128
* Added new NTSTATUS codes from 1709

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.11.0")]
37-
[assembly: AssemblyInformationalVersion("1.1.11")]
36+
[assembly: AssemblyFileVersion("1.1.12.0")]
37+
[assembly: AssemblyInformationalVersion("1.1.12")]

README.txt

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

2222
Release Notes:
2323

24+
1.1.12
25+
------
26+
* Added basic NDR parser.
27+
* Added basic symbol resolver.
28+
* Added method to read a security descriptor from another process.
29+
* Improved process memory read and writing methods.
30+
* Added virtual memory cmdlets to allocate, release and modify memory.
31+
* Added Get-EmbeddedAuthenticodeSignature function.
32+
* Added Get and Set NtSecurityDescriptor functions.
33+
* Added ProcessTrustLabel to basic security information set.
34+
* Added Get-NtFileChild cmdlet.
35+
* Added Get-NtKeyChild cmdlet.
36+
* Added Get-NtDirectoryChild cmdlet.
37+
* Added name lookup to NtIoControlCode.
38+
* Added NtNamedPipeFile type with implementations of basic pipe functions.
39+
* Added ADd-DosDevice and Remove-DosDevice cmdlets.
40+
* Added file directory and stream visitors.
41+
* Merged Get-NtLowBoxToken and Get-NtFilteredToken into Get-NtToken.
42+
* Modified Show-NtSection to also display an arbitrary byte array.
43+
* Added an Invoke-NtToken cmdlet to run a script block under impersonation.
44+
* Added Remove-NtFile cmdlet.
45+
* Added case sensitive property for RS4.
46+
* Added flags for NtCreateDirectoryObjectEx.
47+
* Added pseudo option to Get-NtToken.
48+
* Improved conditional ACE support.
49+
2450
1.1.11
2551
------
2652
* Improved New-NtToken including adding missing IL

0 commit comments

Comments
 (0)