如何使用 C# 验证 Powershell .ps1 脚本的签名?

发布于 2024-09-07 07:41:37 字数 75 浏览 5 评论 0原文

我有一些已签名的 .ps1 脚本,我需要验证它们是否已从 C# 项目正确签名,是否有任何算法或库可以执行此操作?

谢谢!

I have some signed .ps1 script, I need to verify they are properly signed from a C# project, is there any algorithm or library to do this?

Thanks!

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

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

发布评论

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

评论(2

与他有关 2024-09-14 07:41:37

您可以托管 PowerShell 引擎以使用 Get-AuthenticodeSignature cmdlet 进行检查,例如:

using System.Collections.ObjectModel;
using System.Management.Automation;
using System.Management.Automation.Runspaces;

private bool VerifyPowerShellScriptSignature()
{
    using (var runspaceInvoke = new RunspaceInvoke())
    {
        string path = "C:\\Windows\\system32\\WindowsPowerShell\\v1.0\\" +
                      "Modules\\PSDiagnostics\\PSDiagnostics.psm1";
        Collection<PSObject> results =
            runspaceInvoke.Invoke("Get-AuthenticodeSignature " + path);
        Signature signature = results[0].BaseObject as Signature;
        return signature == null ? false : 
                                  (signature.Status == SignatureStatus.Valid);
    }
}

You could host the PowerShell engine to check this using the Get-AuthenticodeSignature cmdlet e.g.:

using System.Collections.ObjectModel;
using System.Management.Automation;
using System.Management.Automation.Runspaces;

private bool VerifyPowerShellScriptSignature()
{
    using (var runspaceInvoke = new RunspaceInvoke())
    {
        string path = "C:\\Windows\\system32\\WindowsPowerShell\\v1.0\\" +
                      "Modules\\PSDiagnostics\\PSDiagnostics.psm1";
        Collection<PSObject> results =
            runspaceInvoke.Invoke("Get-AuthenticodeSignature " + path);
        Signature signature = results[0].BaseObject as Signature;
        return signature == null ? false : 
                                  (signature.Status == SignatureStatus.Valid);
    }
}
热风软妹 2024-09-14 07:41:37

如果 Get-AuthenticodeSignature cmdlet 验证正确(即,如果无效则报告错误)并且 PSH 在目标系统上可用,则可以在 C# 应用程序中运行 PSH。

If the Get-AuthenticodeSignature cmdlet verifies correctly (i.e. it reports an error if not valid) and PSH is available on the target system, you can run PSH within your C# application.

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