public static Execute.Native.NTSTATUS RtlCreateUserThread( IntPtr Process, IntPtr ThreadSecurityDescriptor, bool CreateSuspended, IntPtr ZeroBits, IntPtr MaximumStackSize, IntPtr CommittedStackSize, IntPtr StartAddress, IntPtr Parameter, ref IntPtr Thread, IntPtr ClientId) { // Craft an array for the arguments object[] funcargs = { Process, ThreadSecurityDescriptor, CreateSuspended, ZeroBits, MaximumStackSize, CommittedStackSize, StartAddress, Parameter, Thread, ClientId }; Execute.Native.NTSTATUS retValue = (Execute.Native.NTSTATUS)Generic.DynamicAPIInvoke(@"ntdll.dll", @"RtlCreateUserThread", typeof(DELEGATES.RtlCreateUserThread), ref funcargs); // Update the modified variables Thread = (IntPtr)funcargs[8]; return(retValue); }
public static void NtFreeVirtualMemory(IntPtr ProcessHandle, ref IntPtr BaseAddress, ref IntPtr RegionSize, UInt32 FreeType) { // Craft an array for the arguments object[] funcargs = { ProcessHandle, BaseAddress, RegionSize, FreeType }; Execute.Native.NTSTATUS retValue = (Execute.Native.NTSTATUS)Generic.DynamicAPIInvoke(@"ntdll.dll", @"NtFreeVirtualMemory", typeof(DELEGATES.NtFreeVirtualMemory), ref funcargs); if (retValue == Execute.Native.NTSTATUS.AccessDenied) { // STATUS_ACCESS_DENIED throw new UnauthorizedAccessException("Access is denied."); } if (retValue == Execute.Native.NTSTATUS.InvalidHandle) { // STATUS_INVALID_HANDLE throw new InvalidOperationException("An invalid HANDLE was specified."); } if (retValue != Execute.Native.NTSTATUS.Success) { // STATUS_OBJECT_TYPE_MISMATCH == 0xC0000024 throw new InvalidOperationException("There is a mismatch between the type of object that is required by the requested operation and the type of object that is specified in the request."); } }
public static IntPtr NtOpenThread(int TID, Execute.Win32.Kernel32.ThreadAccess DesiredAccess) { // Create OBJECT_ATTRIBUTES & CLIENT_ID ref's IntPtr ThreadHandle = IntPtr.Zero; Execute.Native.OBJECT_ATTRIBUTES oa = new Execute.Native.OBJECT_ATTRIBUTES(); Execute.Native.CLIENT_ID ci = new Execute.Native.CLIENT_ID(); ci.UniqueThread = (IntPtr)TID; // Craft an array for the arguments object[] funcargs = { ThreadHandle, DesiredAccess, oa, ci }; Execute.Native.NTSTATUS retValue = (Execute.Native.NTSTATUS)Generic.DynamicAPIInvoke(@"ntdll.dll", @"NtOpenThread", typeof(DELEGATES.NtOpenProcess), ref funcargs); if (retValue != Execute.Native.NTSTATUS.Success && retValue == Execute.Native.NTSTATUS.InvalidCid) { throw new InvalidOperationException("An invalid client ID was specified."); } if (retValue != Execute.Native.NTSTATUS.Success) { throw new UnauthorizedAccessException("Access is denied."); } // Update the modified variables ThreadHandle = (IntPtr)funcargs[0]; return(ThreadHandle); }
public static Execute.Native.NTSTATUS NtCreateThreadEx( ref IntPtr threadHandle, Execute.Win32.WinNT.ACCESS_MASK desiredAccess, IntPtr objectAttributes, IntPtr processHandle, IntPtr startAddress, IntPtr parameter, bool createSuspended, int stackZeroBits, int sizeOfStack, int maximumStackSize, IntPtr attributeList) { // Craft an array for the arguments object[] funcargs = { threadHandle, desiredAccess, objectAttributes, processHandle, startAddress, parameter, createSuspended, stackZeroBits, sizeOfStack, maximumStackSize, attributeList }; Execute.Native.NTSTATUS retValue = (Execute.Native.NTSTATUS)Generic.DynamicAPIInvoke(@"ntdll.dll", @"NtCreateThreadEx", typeof(DELEGATES.NtCreateThreadEx), ref funcargs); // Update the modified variables threadHandle = (IntPtr)funcargs[0]; return(retValue); }
public static Execute.Native.NTSTATUS NtMapViewOfSection( IntPtr SectionHandle, IntPtr ProcessHandle, ref IntPtr BaseAddress, IntPtr ZeroBits, IntPtr CommitSize, IntPtr SectionOffset, ref ulong ViewSize, uint InheritDisposition, uint AllocationType, uint Win32Protect) { // Craft an array for the arguments object[] funcargs = { SectionHandle, ProcessHandle, BaseAddress, ZeroBits, CommitSize, SectionOffset, ViewSize, InheritDisposition, AllocationType, Win32Protect }; Execute.Native.NTSTATUS retValue = (Execute.Native.NTSTATUS)Generic.DynamicAPIInvoke(@"ntdll.dll", @"NtMapViewOfSection", typeof(DELEGATES.NtMapViewOfSection), ref funcargs); if (retValue != Execute.Native.NTSTATUS.Success && retValue != Execute.Native.NTSTATUS.ImageNotAtBase) { throw new InvalidOperationException("Unable to map view of section, " + retValue); } // Update the modified variables. BaseAddress = (IntPtr)funcargs[2]; ViewSize = (ulong)funcargs[6]; return(retValue); }
public static void RtlZeroMemory(IntPtr Destination, int Length) { // Craft an array for the arguments object[] funcargs = { Destination, Length }; Generic.DynamicAPIInvoke(@"ntdll.dll", @"RtlZeroMemory", typeof(DELEGATES.RtlZeroMemory), ref funcargs); }
public static Execution.Win32.NtDll.NTSTATUS NtUnmapViewOfSection(IntPtr hProc, IntPtr baseAddr) { //Craft an array for the arguments object[] funcargs = { hProc, baseAddr }; return((Execution.Win32.NtDll.NTSTATUS)Generic.DynamicAPIInvoke(@"ntdll.dll", @"NtUnMapViewOfSection", typeof(DELEGATES.NtUnmapViewOfSection), ref funcargs)); }
/// <summary> /// Uses DynamicInvocation to call the OpenProcess Win32 API. https://docs.microsoft.com/en-us/windows/win32/api/processthreadsapi/nf-processthreadsapi-openprocess /// </summary> /// <author>The Wover (@TheRealWover)</author> /// <param name="dwDesiredAccess"></param> /// <param name="bInheritHandle"></param> /// <param name="dwProcessId"></param> /// <returns></returns> public static IntPtr OpenProcess(Execute.Win32.Kernel32.ProcessAccessFlags dwDesiredAccess, bool bInheritHandle, UInt32 dwProcessId) { //Craft an array for the arguments object[] funcargs = { dwDesiredAccess, bInheritHandle, dwProcessId }; return((IntPtr)Generic.DynamicAPIInvoke(@"kernel32.dll", @"OpenProcess", typeof(Delegates.OpenProcess), ref funcargs)); }
public static string GetFilenameFromMemoryPointer(IntPtr hProc, IntPtr pMem) { // Alloc buffer for result struct IntPtr pBase = IntPtr.Zero; IntPtr RegionSize = (IntPtr)0x500; IntPtr pAlloc = NtAllocateVirtualMemory(hProc, ref pBase, IntPtr.Zero, ref RegionSize, Execute.Win32.Kernel32.MEM_COMMIT | Execute.Win32.Kernel32.MEM_RESERVE, Execute.Win32.WinNT.PAGE_READWRITE); // Prepare NtQueryVirtualMemory parameters Execute.Native.MEMORYINFOCLASS memoryInfoClass = Execute.Native.MEMORYINFOCLASS.MemorySectionName; UInt32 MemoryInformationLength = 0x500; UInt32 Retlen = 0; // Craft an array for the arguments object[] funcargs = { hProc, pMem, memoryInfoClass, pAlloc, MemoryInformationLength, Retlen }; Execute.Native.NTSTATUS retValue = (Execute.Native.NTSTATUS)Generic.DynamicAPIInvoke(@"ntdll.dll", @"NtQueryVirtualMemory", typeof(DELEGATES.NtQueryVirtualMemory), ref funcargs); string FilePath = string.Empty; if (retValue == Execute.Native.NTSTATUS.Success) { Execute.Native.UNICODE_STRING sn = (Execute.Native.UNICODE_STRING)Marshal.PtrToStructure(pAlloc, typeof(Execute.Native.UNICODE_STRING)); FilePath = Marshal.PtrToStringUni(sn.Buffer); } // Free allocation NtFreeVirtualMemory(hProc, ref pAlloc, ref RegionSize, Execute.Win32.Kernel32.MEM_RELEASE); if (retValue == Execute.Native.NTSTATUS.AccessDenied) { // STATUS_ACCESS_DENIED throw new UnauthorizedAccessException("Access is denied."); } if (retValue == Execute.Native.NTSTATUS.AccessViolation) { // STATUS_ACCESS_VIOLATION throw new InvalidOperationException("The specified base address is an invalid virtual address."); } if (retValue == Execute.Native.NTSTATUS.InfoLengthMismatch) { // STATUS_INFO_LENGTH_MISMATCH throw new InvalidOperationException("The MemoryInformation buffer is larger than MemoryInformationLength."); } if (retValue == Execute.Native.NTSTATUS.InvalidParameter) { // STATUS_INVALID_PARAMETER throw new InvalidOperationException("The specified base address is outside the range of accessible addresses."); } return(FilePath); }
public static void RtlInitUnicodeString(ref Execute.Native.UNICODE_STRING DestinationString, [MarshalAs(UnmanagedType.LPWStr)] string SourceString) { // Craft an array for the arguments object[] funcargs = { DestinationString, SourceString }; Generic.DynamicAPIInvoke(@"ntdll.dll", @"RtlInitUnicodeString", typeof(DELEGATES.RtlInitUnicodeString), ref funcargs); // Update the modified variables DestinationString = (Execute.Native.UNICODE_STRING)funcargs[0]; }
public static void NtQueueApcThread(IntPtr ThreadHandle, IntPtr ApcRoutine, IntPtr ApcArgument1, IntPtr ApcArgument2, IntPtr ApcArgument3) { // Craft an array for the arguments object[] funcargs = { ThreadHandle, ApcRoutine, ApcArgument1, ApcArgument2, ApcArgument3 }; Execute.Native.NTSTATUS retValue = (Execute.Native.NTSTATUS)Generic.DynamicAPIInvoke(@"ntdll.dll", @"NtQueueApcThread", typeof(DELEGATES.NtQueueApcThread), ref funcargs); if (retValue != Execute.Native.NTSTATUS.Success) { throw new InvalidOperationException("Unable to queue APC, " + retValue); } }
public static IntPtr NtCreateThreadEx(ref IntPtr threadHandle, Execution.Win32.WinNT.ACCESS_MASK desiredAccess, IntPtr objectAttributes, IntPtr processHandle, IntPtr startAddress, IntPtr parameter, Execution.Win32.NtDll.NT_CREATION_FLAGS creationFlags, int stackZeroBits, int sizeOfStack, int maximumStackSize, IntPtr attributeList) { //Craft an array for the arguments object[] funcargs = { threadHandle, desiredAccess, objectAttributes, processHandle, startAddress, parameter, creationFlags, stackZeroBits, sizeOfStack, maximumStackSize, attributeList }; return((IntPtr)Generic.DynamicAPIInvoke(@"ntdll.dll", @"NtCreateThreadEx", typeof(DELEGATES.NtCreateThreadEx), ref funcargs)); }
/// <summary> /// Uses DynamicInvocation to call the IsWow64Process Win32 API. https://docs.microsoft.com/en-us/windows/win32/api/wow64apiset/nf-wow64apiset-iswow64process /// </summary> /// <returns>Returns true if process is WOW64, and false if not (64-bit, or 32-bit on a 32-bit machine).</returns> public static bool IsWow64Process(IntPtr hProcess, ref bool lpSystemInfo) { // Build the set of parameters to pass in to IsWow64Process object[] funcargs = { hProcess, lpSystemInfo }; bool retVal = (bool)Generic.DynamicAPIInvoke(@"kernel32.dll", @"IsWow64Process", typeof(Delegates.IsWow64Process), ref funcargs); lpSystemInfo = (bool)funcargs[1]; // Dynamically load and invoke the API call with out parameters return(retVal); }
public static Execute.Native.NTSTATUS LdrLoadDll(IntPtr PathToFile, UInt32 dwFlags, ref Execute.Native.UNICODE_STRING ModuleFileName, ref IntPtr ModuleHandle) { // Craft an array for the arguments object[] funcargs = { PathToFile, dwFlags, ModuleFileName, ModuleHandle }; Execute.Native.NTSTATUS retValue = (Execute.Native.NTSTATUS)Generic.DynamicAPIInvoke(@"ntdll.dll", @"LdrLoadDll", typeof(DELEGATES.LdrLoadDll), ref funcargs); // Update the modified variables ModuleHandle = (IntPtr)funcargs[3]; return(retValue); }
public static void RtlGetVersion(ref Execute.Native.OSVERSIONINFOEX VersionInformation) { // Craft an array for the arguments object[] funcargs = { VersionInformation }; Execute.Native.NTSTATUS retValue = (Execute.Native.NTSTATUS)Generic.DynamicAPIInvoke(@"ntdll.dll", @"RtlGetVersion", typeof(DELEGATES.RtlGetVersion), ref funcargs); if (retValue != Execute.Native.NTSTATUS.Success) { throw new InvalidOperationException("Failed get procedure address, " + retValue); } VersionInformation = (Execute.Native.OSVERSIONINFOEX)funcargs[0]; }
public static IntPtr LdrGetProcedureAddress(IntPtr hModule, IntPtr FunctionName, IntPtr Ordinal, ref IntPtr FunctionAddress) { // Craft an array for the arguments object[] funcargs = { hModule, FunctionName, Ordinal, FunctionAddress }; Execute.Native.NTSTATUS retValue = (Execute.Native.NTSTATUS)Generic.DynamicAPIInvoke(@"ntdll.dll", @"LdrGetProcedureAddress", typeof(DELEGATES.LdrGetProcedureAddress), ref funcargs); if (retValue != Execute.Native.NTSTATUS.Success) { throw new InvalidOperationException("Failed get procedure address, " + retValue); } FunctionAddress = (IntPtr)funcargs[3]; return(FunctionAddress); }
/// <summary> /// Uses DynamicInvocation to call the VirtualAllocEx Win32 API. https://docs.microsoft.com/en-us/windows/win32/api/memoryapi/nf-memoryapi-virtualallocex /// </summary> /// <returns>Returns the base address of allocated region if successful, otherwise return NULL.</returns> public static IntPtr VirtualAllocEx( IntPtr hProcess, IntPtr lpAddress, uint dwSize, Execute.Win32.Kernel32.AllocationType flAllocationType, Execute.Win32.Kernel32.MemoryProtection flProtect) { // Craft an array for the arguments object[] funcargs = { hProcess, lpAddress, dwSize, flAllocationType, flProtect }; IntPtr retValue = (IntPtr)Generic.DynamicAPIInvoke(@"kernel32.dll", @"VirtualAllocEx", typeof(Delegates.VirtualAllocEx), ref funcargs); return(retValue); }
public static Execution.Win32.NtDll.NTSTATUS NtCreateSection( ref IntPtr SectionHandle, uint DesiredAccess, IntPtr ObjectAttributes, ref ulong MaximumSize, uint SectionPageProtection, uint AllocationAttributes, IntPtr FileHandle) { //Craft an array for the arguments object[] funcargs = { SectionHandle, DesiredAccess, ObjectAttributes, MaximumSize, SectionPageProtection, AllocationAttributes, FileHandle }; return((Execution.Win32.NtDll.NTSTATUS)Generic.DynamicAPIInvoke(@"ntdll.dll", @"NtCreateSection", typeof(DELEGATES.NtCreateSection), ref funcargs)); }
public static IntPtr NtOpenFile(ref IntPtr FileHandle, Execute.Win32.Kernel32.FileAccessFlags DesiredAccess, ref Execute.Native.OBJECT_ATTRIBUTES ObjAttr, ref Execute.Native.IO_STATUS_BLOCK IoStatusBlock, Execute.Win32.Kernel32.FileShareFlags ShareAccess, Execute.Win32.Kernel32.FileOpenFlags OpenOptions) { // Craft an array for the arguments object[] funcargs = { FileHandle, DesiredAccess, ObjAttr, IoStatusBlock, ShareAccess, OpenOptions }; Execute.Native.NTSTATUS retValue = (Execute.Native.NTSTATUS)Generic.DynamicAPIInvoke(@"ntdll.dll", @"NtOpenFile", typeof(DELEGATES.NtOpenFile), ref funcargs); if (retValue != Execute.Native.NTSTATUS.Success) { throw new InvalidOperationException("Failed to open file, " + retValue); } FileHandle = (IntPtr)funcargs[0]; return(FileHandle); }
public static UInt32 NtReadVirtualMemory(IntPtr ProcessHandle, IntPtr BaseAddress, IntPtr Buffer, ref UInt32 NumberOfBytesToRead) { // Craft an array for the arguments UInt32 NumberOfBytesRead = 0; object[] funcargs = { ProcessHandle, BaseAddress, Buffer, NumberOfBytesToRead, NumberOfBytesRead }; Execute.Native.NTSTATUS retValue = (Execute.Native.NTSTATUS)Generic.DynamicAPIInvoke(@"ntdll.dll", @"NtReadVirtualMemory", typeof(DELEGATES.NtReadVirtualMemory), ref funcargs); if (retValue != Execute.Native.NTSTATUS.Success) { throw new InvalidOperationException("Failed to read memory, " + retValue); } NumberOfBytesRead = (UInt32)funcargs[4]; return(NumberOfBytesRead); }
public static UInt32 NtProtectVirtualMemory(IntPtr ProcessHandle, ref IntPtr BaseAddress, ref IntPtr RegionSize, UInt32 NewProtect) { // Craft an array for the arguments UInt32 OldProtect = 0; object[] funcargs = { ProcessHandle, BaseAddress, RegionSize, NewProtect, OldProtect }; Execute.Native.NTSTATUS retValue = (Execute.Native.NTSTATUS)Generic.DynamicAPIInvoke(@"ntdll.dll", @"NtProtectVirtualMemory", typeof(DELEGATES.NtProtectVirtualMemory), ref funcargs); if (retValue != Execute.Native.NTSTATUS.Success) { throw new InvalidOperationException("Failed to change memory protection, " + retValue); } OldProtect = (UInt32)funcargs[4]; return(OldProtect); }
public static UInt32 NtWriteVirtualMemory(IntPtr ProcessHandle, IntPtr BaseAddress, IntPtr Buffer, UInt32 BufferLength) { // Craft an array for the arguments UInt32 BytesWritten = 0; object[] funcargs = { ProcessHandle, BaseAddress, Buffer, BufferLength, BytesWritten }; Execute.Native.NTSTATUS retValue = (Execute.Native.NTSTATUS)Generic.DynamicAPIInvoke(@"ntdll.dll", @"NtWriteVirtualMemory", typeof(DELEGATES.NtWriteVirtualMemory), ref funcargs); if (retValue != Execute.Native.NTSTATUS.Success) { throw new InvalidOperationException("Failed to write memory, " + retValue); } BytesWritten = (UInt32)funcargs[4]; return(BytesWritten); }
public static Execute.Native.NTSTATUS NtQueryInformationProcess(IntPtr hProcess, Execute.Native.PROCESSINFOCLASS processInfoClass, out IntPtr pProcInfo) { int processInformationLength; UInt32 RetLen = 0; switch (processInfoClass) { case Execute.Native.PROCESSINFOCLASS.ProcessWow64Information: pProcInfo = Marshal.AllocHGlobal(IntPtr.Size); RtlZeroMemory(pProcInfo, IntPtr.Size); processInformationLength = IntPtr.Size; break; case Execute.Native.PROCESSINFOCLASS.ProcessBasicInformation: Execute.Native.PROCESS_BASIC_INFORMATION PBI = new Execute.Native.PROCESS_BASIC_INFORMATION(); pProcInfo = Marshal.AllocHGlobal(Marshal.SizeOf(PBI)); RtlZeroMemory(pProcInfo, Marshal.SizeOf(PBI)); Marshal.StructureToPtr(PBI, pProcInfo, true); processInformationLength = Marshal.SizeOf(PBI); break; default: throw new InvalidOperationException($"Invalid ProcessInfoClass: {processInfoClass}"); } object[] funcargs = { hProcess, processInfoClass, pProcInfo, processInformationLength, RetLen }; Execute.Native.NTSTATUS retValue = (Execute.Native.NTSTATUS)Generic.DynamicAPIInvoke(@"ntdll.dll", @"NtQueryInformationProcess", typeof(DELEGATES.NtQueryInformationProcess), ref funcargs); if (retValue != Execute.Native.NTSTATUS.Success) { throw new UnauthorizedAccessException("Access is denied."); } // Update the modified variables pProcInfo = (IntPtr)funcargs[2]; return(retValue); }
/// <summary> /// Uses DynamicInvocation to call the WriteProcessMemory Win32 API. https://docs.microsoft.com/en-us/windows/win32/api/memoryapi/nf-memoryapi-writeprocessmemory /// </summary> /// <returns>Returns true if process memory was written successfully, otherwise return false.</returns> public static bool WriteProcessMemory( IntPtr hProcess, IntPtr lpBaseAddress, byte[] lpBuffer, Int32 nSize, out IntPtr lpNumberOfBytesWritten) { // Craft an array for the arguments object[] funcargs = { hProcess, lpBaseAddress, lpBuffer, nSize, IntPtr.Zero }; bool retValue = (bool)Generic.DynamicAPIInvoke(@"kernel32.dll", @"WriteProcessMemory", typeof(Delegates.WriteProcessMemory), ref funcargs); // Update bytes written lpNumberOfBytesWritten = (IntPtr)funcargs[4]; return(retValue); }
public static Execution.Win32.NtDll.NTSTATUS NtMapViewOfSection( IntPtr SectionHandle, IntPtr ProcessHandle, ref IntPtr BaseAddress, IntPtr ZeroBits, IntPtr CommitSize, IntPtr SectionOffset, ref uint ViewSize, uint InheritDisposition, uint AllocationType, uint Win32Protect) { //Craft an array for the arguments object[] funcargs = { SectionHandle, ProcessHandle, BaseAddress, ZeroBits, CommitSize, SectionOffset, ViewSize, InheritDisposition, AllocationType, Win32Protect }; return((Execution.Win32.NtDll.NTSTATUS)Generic.DynamicAPIInvoke(@"ntdll.dll", @"NtMapViewOfSection", typeof(DELEGATES.NtMapViewOfSection), ref funcargs)); }
public static IntPtr CreateRemoteThread( IntPtr hProcess, IntPtr lpThreadAttributes, uint dwStackSize, IntPtr lpStartAddress, IntPtr lpParameter, uint dwCreationFlags, ref IntPtr lpThreadId) { // Craft an array for the arguments object[] funcargs = { hProcess, lpThreadAttributes, dwStackSize, lpStartAddress, lpParameter, dwCreationFlags, lpThreadId }; IntPtr retValue = (IntPtr)Generic.DynamicAPIInvoke(@"kernel32.dll", @"CreateRemoteThread", typeof(Delegates.CreateRemoteThread), ref funcargs); // Update the modified variables lpThreadId = (IntPtr)funcargs[6]; return(retValue); }
public static Execute.Native.NTSTATUS NtCreateSection( ref IntPtr SectionHandle, uint DesiredAccess, IntPtr ObjectAttributes, ref ulong MaximumSize, uint SectionPageProtection, uint AllocationAttributes, IntPtr FileHandle) { // Craft an array for the arguments object[] funcargs = { SectionHandle, DesiredAccess, ObjectAttributes, MaximumSize, SectionPageProtection, AllocationAttributes, FileHandle }; Execute.Native.NTSTATUS retValue = (Execute.Native.NTSTATUS)Generic.DynamicAPIInvoke(@"ntdll.dll", @"NtCreateSection", typeof(DELEGATES.NtCreateSection), ref funcargs); // Update the modified variables SectionHandle = (IntPtr)funcargs[0]; MaximumSize = (ulong)funcargs[3]; return(retValue); }
public static IntPtr NtAllocateVirtualMemory(IntPtr ProcessHandle, ref IntPtr BaseAddress, IntPtr ZeroBits, ref IntPtr RegionSize, UInt32 AllocationType, UInt32 Protect) { // Craft an array for the arguments object[] funcargs = { ProcessHandle, BaseAddress, ZeroBits, RegionSize, AllocationType, Protect }; Execute.Native.NTSTATUS retValue = (Execute.Native.NTSTATUS)Generic.DynamicAPIInvoke(@"ntdll.dll", @"NtAllocateVirtualMemory", typeof(DELEGATES.NtAllocateVirtualMemory), ref funcargs); if (retValue == Execute.Native.NTSTATUS.AccessDenied) { // STATUS_ACCESS_DENIED throw new UnauthorizedAccessException("Access is denied."); } if (retValue == Execute.Native.NTSTATUS.AlreadyCommitted) { // STATUS_ALREADY_COMMITTED throw new InvalidOperationException("The specified address range is already committed."); } if (retValue == Execute.Native.NTSTATUS.CommitmentLimit) { // STATUS_COMMITMENT_LIMIT throw new InvalidOperationException("Your system is low on virtual memory."); } if (retValue == Execute.Native.NTSTATUS.ConflictingAddresses) { // STATUS_CONFLICTING_ADDRESSES throw new InvalidOperationException("The specified address range conflicts with the address space."); } if (retValue == Execute.Native.NTSTATUS.InsufficientResources) { // STATUS_INSUFFICIENT_RESOURCES throw new InvalidOperationException("Insufficient system resources exist to complete the API call."); } if (retValue == Execute.Native.NTSTATUS.InvalidHandle) { // STATUS_INVALID_HANDLE throw new InvalidOperationException("An invalid HANDLE was specified."); } if (retValue == Execute.Native.NTSTATUS.InvalidPageProtection) { // STATUS_INVALID_PAGE_PROTECTION throw new InvalidOperationException("The specified page protection was not valid."); } if (retValue == Execute.Native.NTSTATUS.NoMemory) { // STATUS_NO_MEMORY throw new InvalidOperationException("Not enough virtual memory or paging file quota is available to complete the specified operation."); } if (retValue == Execute.Native.NTSTATUS.ObjectTypeMismatch) { // STATUS_OBJECT_TYPE_MISMATCH throw new InvalidOperationException("There is a mismatch between the type of object that is required by the requested operation and the type of object that is specified in the request."); } if (retValue != Execute.Native.NTSTATUS.Success) { // STATUS_PROCESS_IS_TERMINATING == 0xC000010A throw new InvalidOperationException("An attempt was made to duplicate an object handle into or out of an exiting process."); } BaseAddress = (IntPtr)funcargs[1]; return(BaseAddress); }