| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
A SCEP testing suite of three tools - get a deployable cert or test a SCEP server (scepclient), test a SCEP client (scepca), or validate a server's Intune cloud integration (IntuneSimulator).
scepclient is a SCEP client with two separate jobs. Use it to get a deployable certificate from any SCEP server in a single command. Or test with it - point it at a server and it checks the server's RFC 8894 compliance, sending the malformed requests, wrong keys, and awkward renewals a correct CA must reject and confirming each comes back with the right failInfo, plus leniency findings and CI-ready reports. Post-quantum ready (ML-DSA, SLH-DSA, ML-KEM) and recipient-aware enveloping throughout. Need to test a client instead? scepca stands up a real - deliberately untrusted - CA in one command.
scepwright is an umbrella dispatcher over the first two: scepwright client … / scepwright test … (the scepclient engine) and scepwright server … (scepca). Each tool also runs standalone.
| Algorithm | What it is | scepclient | scepca |
|---|---|---|---|
| RSA | The classic - works with virtually every CA | ✓ | ✓ |
| Elliptic Curve (ECDSA) | Smaller, faster classical keys | ✓ | ✓ |
| ML-DSA · FIPS 204 | Post-quantum signatures (the NIST default) | ✓ | ✓ |
| SLH-DSA · FIPS 205 | Post-quantum signatures (hash-based alternative) | ✓ | ✓ |
| ML-KEM · FIPS 203 | Post-quantum key exchange | ✓ | ✓ |
| AES / 3DES | Encrypts the certificate request | ✓ | ✓ |
| SHA-256 / SHA-512 | The signing hash | ✓ | ✓ |
| Download | Contents | For |
|---|---|---|
| scepwright-<rid>.zip | one folder, three executables - scepwright (dispatcher), scepca (server), scepclient (client) + shared DLLs | testing SCEP from either side |
| IntuneSimulator-<rid>.zip | IntuneSimulator.Host | validating a server's Intune cloud integration |
Both are self-contained folder publishes - never single-file. The BouncyCastle crypto provider (ScepWright.Crypto.BouncyCastle.dll) is loaded by filename from the executable's directory, so it must sit on disk beside the exe. RIDs: win-x64, linux-x64, linux-arm64, osx-x64, osx-arm64.
# Get a cert from / test any SCEP server:
scepclient servers add https://ca.example.com/certsrv/mscep/mscep.dll --name corp
scepclient get corp --subject "CN=device-01" --challenge s3cret
scepclient test full corp --report-format junit
# Stand up a throwaway SCEP server to test a client:
scepca --port 8090 --export-ca ca.der
# One tool, both sides:
scepwright helpdotnet test # full suite (SCEPwright.sln)
dotnet run --project src/ScepWright.Dispatcher -- helpEach tool maps to a project. From source, run a tool with dotnet run --project <project> -- <args> (everything after -- is passed to the tool):
| Tool | Project | Example |
|---|---|---|
| scepwright (dispatcher) | src/ScepWright.Dispatcher | dotnet run --project src/ScepWright.Dispatcher -- help |
| scepclient (client) | src/ScepWright.Client | dotnet run --project src/ScepWright.Client -- get corp --subject "CN=dev" |
| scepca (server) | src/ScepWright.Server.Host | dotnet run --project src/ScepWright.Server.Host -- --port 8090 |
| IntuneSimulator | src/IntuneSimulator.Host | dotnet run --project src/IntuneSimulator.Host |
| Back | FazBrowse Home | New Git URL |