mareklinka/SafeNetTokenSigner
Fork: 8 Star: 40 (更新于 2024-11-06 15:07:02)
license: MIT
Language: C# .
A SignTool alternative that can automatically unlock SafeNet hardware tokens
最后发布版本: GH-0.2.0 ( 2019-06-06 14:33:05)
Update March 16, 2020
This project is no longer maintained. Instead, you can use a sign-tool compatible approach detailed in this issue.
SafeNetTokenSigner
A SignTool alternative that can unlock SafeNet hardware tokens without user interaction.
What it does
Signing your released code is an important step in ensuring integrity of the code and trust of your users. Unfortunately, some code signing certificates come to you on hardware tokens protected by a PIN and so it's very difficult (or impossible) to use them in any kind of automated manner (such as CI pipelines).
This tools attempts to solve this particular problem by allowing you to code-sign your binaries without user interaction even when the certificate requires a PIN to be unlocked. All this is done with standard Windows APIs and distributed as a dotnet global tool so it should work as long as you have the dotnet CLI installed.
How it works
Usage
To make use of this tool, you either need to install it as a dotnet tool or compile it from source yourself. This tool is x64 WINDOWS ONLY as it uses several Win32 API functions to delegate the actual signing to the OS.
Installing the tool via NuGet
On the machine where you'll be doing your code signing:
- Make sure you have .NET Core runtime installed on the machine (you can get the installer here)
- Run
dotnet tool install --global SafenetSign --version [specific version]
- Run
safenet-sign
- If you installed without
--global
, you will need to navigate to your installation path first - The tool should display a command line parameter help, confirming that it works
- You might need to restart your command line for the changes to take effect
- If you installed without
Compiling from source
- You'll need .NET Core 2.2 SDK
- Clone the repository
- Navigate to
src\SafenetSign
- Run
dotnet publish .\SafenetSignNoTool.csproj -c Release --self-contained false
- or you can use Visual Studio or VS Code to open the solution and look around
- Put the output (in
src\SafenetSign\bin\Release\netcoreapp2.2\win-x64\publish
) wherever you need it - Run
safenetsign.exe
to get the command line parameter help
Comand line options
The tool has several required positional arguments and two optional arguments. You can get the full help by running the tool without any parameters (safenet-sign
).
Required parameters:
- the signing certificate thumbprint (SHA1, e.g.
8cfaa82e5c3842ffee22d82d8ff812b3a1de1ebb
) - private key container name - for SafeNet tokens, you can get this by looking into the SafeNet app (see this SO question)
- the target store that contains the certificate (valid values are
user
andmachine
) - the PIN used to protect the token's private keys
- timestamp URL (the code will perform timestamping automatically, e.g.
http://timestamp.verisign.com/scripts/timstamp.dll
) - mode is either
pe
orappx
, depending on what file you are trying to sign (pe
for normal EXE/DLL etc.,appx
for UWP app bundles) - the path to the file you want to sign (can be relative)
Optional parameters:
-
-v
- switch, enables verbose activity logging for debugging or when you want to report an issue with the tool -
-m [path]
- the tools makes use of Win32 APIs located inMSSign32.dll
. This option allows you to specify a path to the library (useful for non-standard installations and similar but should otherwise not be required)
Schema:
<executable> <cert thumbprint> <private key container name> <target store> <token PIN> <timestamp URL> <mode> <path to file to sign> [-v] [-m path]
Examples:
.NET Core - dotnet tool
safenet-sign 8cfaa82e5c3842ffee22d82d8ff812b3a1de1ebb my-container-name 12345678 user http://timestamp.verisign.com/scripts/timstamp.dll pe Thing.exe -v -m "C:\MSSign32.dll"
.NET Core - binaries or self-compiled
safenetsign.exe 8cfaa82e5c3842ffee22d82d8ff812b3a1de1ebb my-container-name 12345678 user http://timestamp.verisign.com/scripts/timstamp.dll pe Thing.exe -v -m "C:\MSSign32.dll"
Contributing
I wrote the original code to solve a very specific problem I faced in my day-to-day work. Over time, it gathered a small amount of interest so I decided to rewrite the whole thing and make it a little bit more official (and flexible AND user friendly).
I'm open to contributions, be it a PR or an issue and I'll do my best to answer you requests and questions.
C++ version
You can also find the precursor of this tool in this repo, written entirely in C++ (VS 2017 or 2019 with C++ workload required to compile). This version is no longer maintained and does not support all the options of the .NET version.
Limitations
This code is provided without any guuarantees. We use it as part of our production-grade CI pipeline (self-hosted Azure DevOps build agent on a physical Windows 10 machine) and it performs as expected. Your milage may vary but if you give the tool a try and find an issue, please report it and I'll do my best to fix it.
Thanks where it's due
It was only possible to create this tool because of SO users draketb and RbMm (and others). So big thanks to them and the whole SO community!
最近版本更新:(数据更新于 2024-09-25 00:29:45)
2019-06-06 14:33:05 GH-0.2.0
2019-04-12 04:05:15 Release-0.1.2
2019-04-12 03:31:14 Release-0.1.1
2019-04-12 01:33:56 Release-0.1.0
mareklinka/SafeNetTokenSigner同语言 C#最近更新仓库
2024-11-19 11:38:46 jellyfin/jellyfin
2024-11-15 10:33:01 DigitalRuby/IPBan
2024-11-13 04:41:56 dotnet/runtime
2024-11-07 00:43:03 huiyadanli/RevokeMsgPatcher
2024-11-06 13:04:33 Pik-4/HsMod
2024-11-05 02:46:31 microsoft/PowerToys