Process-Security-and-Access-Rights

From aldeid
Jump to navigation Jump to search

Standard access rights

Value Meaning
DELETE
(0x00010000L)
Required to delete the object.
READ_CONTROL
(0x00020000L)
Required to read information in the security descriptor for the object, not including the information in the SACL. To read or write the SACL, you must request the ACCESS_SYSTEM_SECURITY access right.
SYNCHRONIZE
(0x00100000L)
The right to use the object for synchronization. This enables a thread to wait until the object is in the signaled state.
WRITE_DAC
(0x00040000L)
Required to modify the DACL in the security descriptor for the object.
WRITE_OWNER
(0x00080000L)
Required to change the owner in the security descriptor for the object.

Process-specific access rights

Value Meaning
PROCESS_ALL_ACCESS
(0x1F0FFF)

All possible access rights for a process object.

Windows Server 2003 and Windows XP: The size of the PROCESS_ALL_ACCESS flag increased on Windows Server 2008 and Windows Vista. If an application compiled for Windows Server 2008 and Windows Vista is run on Windows Server 2003 or Windows XP, the PROCESS_ALL_ACCESS flag is too large and the function specifying this flag fails with ERROR_ACCESS_DENIED. To avoid this problem, specify the minimum set of access rights required for the operation. If PROCESS_ALL_ACCESS must be used, set _WIN32_WINNT to the minimum operating system targeted by your application (for example, #define _WIN32_WINNT _WIN32_WINNT_WINXP).

PROCESS_CREATE_PROCESS
(0x0080)
Required to create a process.
PROCESS_CREATE_THREAD
(0x0002)
Required to create a thread.
PROCESS_DUP_HANDLE
(0x0040)
Required to duplicate a handle using DuplicateHandle.
PROCESS_QUERY_INFORMATION
(0x0400)
Required to retrieve certain information about a process, such as its token, exit code, and priority class (see OpenProcessToken).
PROCESS_QUERY_LIMITED_INFORMATION
(0x1000)
Required to retrieve certain information about a process (see GetExitCodeProcess, GetPriorityClass, IsProcessInJob, QueryFullProcessImageName). A handle that has the PROCESS_QUERY_INFORMATION access right is automatically granted PROCESS_QUERY_LIMITED_INFORMATION.

Windows Server 2003 and Windows XP: This access right is not supported.

PROCESS_SET_INFORMATION
(0x0200)
Required to set certain information about a process, such as its priority class (see SetPriorityClass).
PROCESS_SET_QUOTA
(0x0100)
Required to set memory limits using SetProcessWorkingSetSize.
PROCESS_SUSPEND_RESUME
(0x0800)
Required to suspend or resume a process.
PROCESS_TERMINATE
(0x0001)
Required to terminate a process using TerminateProcess.
PROCESS_VM_OPERATION
(0x0008)
Required to perform an operation on the address space of a process (see VirtualProtectEx and WriteProcessMemory).
PROCESS_VM_READ
(0x0010)
Required to read memory in a process using ReadProcessMemory.
PROCESS_VM_WRITE
(0x0020)
Required to write to memory in a process using WriteProcessMemory.
SYNCHRONIZE
(0x00100000L)
Required to wait for the process to terminate using the wait functions.