aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ReverseEngineering/Get-NtSystemInformation.ps115
1 files changed, 0 insertions, 15 deletions
diff --git a/ReverseEngineering/Get-NtSystemInformation.ps1 b/ReverseEngineering/Get-NtSystemInformation.ps1
index e364492..a8aaabe 100644
--- a/ReverseEngineering/Get-NtSystemInformation.ps1
+++ b/ReverseEngineering/Get-NtSystemInformation.ps1
@@ -2765,21 +2765,6 @@
$PoolTagInfoClass = $TypeBuilder.CreateType()
}
- try { $HandleInfoClass = [_SYSTEM_HANDLE_INFORMATION] } catch [Management.Automation.RuntimeException]
- {
- $TypeBuilder = $ModuleBuilder.DefineType('_SYSTEM_HANDLE_INFORMATION', $StructAttributes, [System.ValueType], 1, $Size_SYSTEM_HANDLE_INFORMATION)
-
- $TypeBuilder.DefineField('UniqueProcessId', [UInt16], 'Public') | Out-Null
- $TypeBuilder.DefineField('CreatorBackTraceIndex', [UInt16], 'Public') | Out-Null
- $TypeBuilder.DefineField('ObjectTypeIndex', [Byte], 'Public') | Out-Null
- $TypeBuilder.DefineField('HandleAttribute', [Byte], 'Public') | Out-Null
- $TypeBuilder.DefineField('HandleValue', [UInt16], 'Public') | Out-Null
- $TypeBuilder.DefineField('Object', [IntPtr], 'Public') | Out-Null
- $TypeBuilder.DefineField('GrantedAccess', [UInt32], 'Public') | Out-Null
-
- $HandleInfoClass = $TypeBuilder.CreateType()
- }
-
try { $ObjectTypeClass = [_SYSTEM_OBJECTTYPE_INFORMATION] } catch [Management.Automation.RuntimeException]
{
$TypeBuilder = $ModuleBuilder.DefineType('_SYSTEM_OBJECTTYPE_INFORMATION', $StructAttributes, [System.ValueType], 1, $Size_SYSTEM_OBJECTTYPE_INFORMATION)