保护数据不被 Windows 中的其他应用程序直接访问

发布于 2024-10-19 06:14:43 字数 221 浏览 5 评论 0原文

有没有办法保护某些加密数据免受 Windows 中除我自己的应用程序之外的应用程序的影响?我不关心保护它免受用户的侵害 - 这显然是不可能的 - 而是保护它免受除我自己的应用程序之外的非提升应用程序的侵害。

我知道我可以简单地将应用程序的核心代码作为服务运行,数据只能由系统帐户访问,但我更希望能够让应用程序在不比用户的普通令牌更宽松的令牌下运行。

此外,如果可能的话,我希望不要依赖 .NET。

Is there a way to protect some cryptographic data from applications other than my own in Windows? I'm not concerned about protecting it from the user - this is obviously impossible - but, rather, from non-elevated applications other than my own.

I'm aware that I could simply run the application's core code as a service, with the data accessible only to system accounts, but I would prefer if I could keep the application running under a token not much more permissive than the user's normal token.

Additionally, I would prefer not to have a dependency on .NET if possible.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

天生の放荡 2024-10-26 06:14:43

CryptProtectData
可以进行每用户加密(如果您不传递 CRYPTPROTECT_LOCAL_MACHINE 标志,则为每用户加密)。但是,如果您选择每用户加密,包括高级管理员在内的其他用户将无法解密。

CryptProtectData
can do per-user encryption (it is per-user if you do not pass CRYPTPROTECT_LOCAL_MACHINE flag). However if you opt for per-user encryption, other users including elevated admins won't decrypt it.

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