需要管理权限的 Win32 API 列表
我正在尝试查找 Win32 API 函数的列表,这些函数需要使用它们的进程具有更高的管理权限才能使用它们。有谁知道在哪里可以找到这些功能的列表?谢谢!
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!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这样的列表根本不存在也不可能存在。因为 API 本身并不能确定需要什么权限(它可以,但在大多数情况下不能)。
例如,采用最古老且最常用的 API 之一: 创建文件。
允许普通用户创建
全局管道或网络管道
通常不是(取决于进一步
安全设置/组策略)。
还有更多的例子。
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.