需要管理权限的 Win32 API 列表

发布于 2024-11-17 13:27:39 字数 82 浏览 1 评论 0原文

我正在尝试查找 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

绝影如岚 2024-11-24 13:27:39

这样的列表根本不存在也不可能存在。因为 API 本身并不能确定需要什么权限(它可以,但在大多数情况下不能)。

例如,采用最古老且最常用的 API 之一: 创建文件

  • 普通用户允许读取 Windows 目录中的文件,但不允许写入/创建文件。
  • 使用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.

  • Reading a file in the windows directory is allowed for normal users, writing/creating one however isn't.
  • Using the API to create a local pipe
    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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文