I’m trying to find a list of Win32 API functions that require the process that uses them to have heightened administrative privileges in order to use them. Does anyone know where I could find a list of these functions? Thanks!
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Such a list simply does not and can not exist. Because an API alone does not determine what privileges are required (it can, but in most cases it doesn’t).
For example take one of the oldest and most used APIs there is: CreateFile.
is allowed for normal users, creating
a global pipe or networked pipe
usually isn’t (depends on further
security settings/group policies).
And many more examples.