EasyPKIView 1.0.1-beta

This is a prerelease version of EasyPKIView.
There is a newer version of this package available.
See the version list below for details.
dotnet add package EasyPKIView --version 1.0.1-beta
NuGet\Install-Package EasyPKIView -Version 1.0.1-beta
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="EasyPKIView" Version="1.0.1-beta" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add EasyPKIView --version 1.0.1-beta
#r "nuget: EasyPKIView, 1.0.1-beta"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install EasyPKIView as a Cake Addin
#addin nuget:?package=EasyPKIView&version=1.0.1-beta&prerelease

// Install EasyPKIView as a Cake Tool
#tool nuget:?package=EasyPKIView&version=1.0.1-beta&prerelease

Introducing The EasyPKIView Class Library

Managing a Public Key Infrastructure (PKI), especially in a large, complex environment environment can be incredibly hard. Microsoft provides very few native .NET interfaces for working with its PKI implementation (Active Directory Certificate Services).

EasyPKIView provides a simple interface for inspecting components of your Microsoft PKI environment including:

  • Enterprise Certification Authorities registered in Active Directory
  • Certificate Templates registered in Active Directory
  • Certificate Revocation Lists (CRLs)

Working with Issuing CAs

Let's say you want to generate a list of all the Enterprise CAs in your environment:

List<ADCertificationAuthority> MyCAs = ADCertificationAuthority.GetAll();

The MyCAs object will contain just about all the metadata you may need about every Issuing CA including:

  • The DNS host name where the CA is installed
  • The full LDAP Distinguished name of the CA
  • The list of certificate templates advertised on the CA
  • The CA Config string (useful for executing certutil or certreq commands and using the ICertAdmin Win32 interface)

You can also pull up a particular CA if you know it's display name:

var MyCA = new ADCertificationAuthority(@"Vandelay Industries Issuing CA 1");

Or by passing in the CA certificate itself:

X509Certificate2 CACert = new X509Certificate2(@"C:\CA.cer");
var MyCA = new ADCertificationAuthority(CACert);

Working with Certificate Templates

Certificate templates act as the framework for how Microsoft Enterprise CAs generate end-entity certificates. They govern the key strength and the key usages asserted on each certificate they're used to model. Thus, it should come as no surprise that it's important to keep track and control over what certificate templates are being used to model certificates in your environment.

Obtaining information about the certificate templates in your AD forest programmatically can be quite challenging since there's no native .NET interface with which to retreive & inspect them. EasyPKIView makes this a borderline trivial task.

To simply generate a list of all certificate templates in your AD forest:

var MyTemplates = ADCertificateTemplate.LoadAll();

Each ADCertificateTemplate object will contain metadata about a certificate template, including:

  • Name and Display Name
  • Version
  • LDAP Distinguished Name
  • Minimal Allowed key size
  • The template Oid (if version 2 or higher)
  • The list of key usages and extended key usages included on issued certificates

Let's say you're asked to identify any certificate templates that allow for weak key strength. Linq is your friend:

using System.Linq;

var WeakTemplates = ADCertificateTemplate.LoadAll()
                                         .Where(p => p.MinimumKeySize < 2048)
					 .ToList();

You can narrow your work down further by only focusing on certificate templates that are actually assigned to one or more issuing CA in your AD forest:

var WeakTemplates = ADCertificationAuthority.GetAll()
					    .Select(p => p.Templates)
					    .SelectMany(p => p) //flattens the collection
					    .Where(p => p.MinimumKeySize < 2048)
					    .Distinct().ToList();

Working with Certificate Revocation Lists (CRLs)

EasyPKIView leverages the excellent BouncyCastle library to enable you to pull up the most pertinent information about an indicated CRL. In the current version of the library, this includes:

  • The date the CRL expires
  • The list of certificate serial numbers included in the CRL

The returned collection of revoked certificate serial numbers is expressed as a list of strings. This makes it trivial to compare against, for instance, an X509Certificate2 object.

You can use the CrlReader class to inspect a CRL by passing it in as an already-downloaded file:

using System.IO;

var MyCRL = new CrlReader(new FileInfo(@"c:\Vandelay.crl"));

or by passing in the URL of the CRL distribution point:

var MyCRL = new CrlReader(@"http://certificates.vandelay.com/crls/Vandelay Industries CA.crl");
Product Compatible and additional computed target framework versions.
.NET Framework net46 is compatible.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.1.4-beta4 1,440 7/9/2021
1.1.4-beta3 266 7/9/2021
1.1.4-beta2 247 7/9/2021
1.1.4-beta1 250 7/8/2021
1.1.2 1,170 3/5/2021
1.1.0 451 8/18/2020
1.0.5 418 8/5/2020
1.0.5-beta 290 8/4/2020
1.0.3 444 6/22/2020
1.0.3-beta 299 6/16/2020
1.0.2-beta 300 6/12/2020
1.0.1-beta 364 6/12/2020
1.0.0-beta 354 6/12/2020

Intial release