🗒️
Please read my Intune certificate deployment overview post first. My recommendation is to use PKCS for Intune.

Introduction

This post is intended to give a technical concept guidance with a focus on security about certificate deployment with Intune (cloud-only/Azure AD only clients) and NDES + SCEP. (not PKCS with PFX)

This scenario is applicable, if you run an internal certificate authority in your domain and want to issue internally signed certificates to clients that are in any internal or external network. If you don't require internally signed certificates, you can also consider a cloud certificate authority such as SCEPman.

From an identity security perspective, leveraging certificates, can be used for client authentication or user authentication to distributed resources. This is considered as strong authentication.

Use cases
Certificate-based authentication (CBA) to on-premises resources is the most common use case, such as:

  • Authentication to domain server hosting services
  • Network authentication to WiFi 802.1X / VPN > RADIUS server

The client will send its own signed certificate, requested through NDES & SCEP and issued by your internal CA to any authentication service which trusts your internal root CA.

Technologies

  • SCEP - Simple Certificate Enrollment Protocol: Standardization of certificate management protocol in exchange with certificate authority (CA)
  • NDES - Network Device Enrollment Service: Microsoft service that allows network devices to obtain digital certificates for secure communication with other devices on a network.

Solution concept

This is a best practice SCEP/NDES architecture with Azure AD App Proxy:

a. An Intune SCEP configuration profile is applied to a device. The policy includes information to let the device create a challenge CSR (including public/private key), based on different device/user declarations. The most important information in the profile is the NDES URL.
b. The NDES URL is externally published through Azure AD App Proxy, the device will retrieve the URL and send its challenge CSR request.
c. The internal URL is an IIS server, that runs on the NDES Server. Some NDES components are available through an application pool for the client request.
d. The NDES policy module verifies the request in combination with step e.
e. The certificate connector sends the challenge CSR to Intune to validate it. (signature, payload and integrity-check information) If this is successful, step f. will continue.
f. NDES contacts the CA to issue a certificate.
-> The certificate is now issued to the device.

solutionconcept-3


Components list

Name Use
NDES Server -NDES Server role

-Webserver to provide the NDES URL, where clients will send their request to

-Policy module that verifies valid Intune enrolled client certificate requests

-Intune Certificate Connector, for the communication between on-premises components and Intune
Intune -Trusted root certificate device configuration profile, will be needed in the SCEP profile

-SCEP device configuration profile that forms the subject request on the client
PKI -Certificate issuance and revocation

-Prepare certificate templates that will later be issued to the clients/users from NDES

-There is always a 1:1 relationship between an issuing/subordinate CA and an NDES server
Reverse/Web proxy (Azure AD Application Proxy) -Provide the NDES Webserver service to external networks, so clients can request certificates from any network

Security

PKCS/PFX vs. SCEP

Intune also supports PKCS (public key and private key pair) with PFX (personal information exchange) certificate deployment. This includes no NDES components and the Intune certificate connector directly communicates with the CA and requests certificates on behalf of Intune. Please consider that the private key is in transit and communication could be infiltrated.

Registration authority

A registration authority (RA) validates the requestors identity and puts another digital signature on the certificate and forwards certificate signing requests (CSR) to the CA.

Best practices

  • Two-Tier PKI hierarchy and all the PKI infrastructure should be treated as TIER 0
  • Deploy NDES with a group-managed service account (gMSA)
  • Install the Intune Certificate Connector on the NDES server, which is separate from the CA
  • The private key can not be exported from the device

Default measurements

  • NDES URL can't be directly accessed
  • Intune generates a custom encrypted and signed challenge blob, which is only readable by the policy module, but not by the device. The device blob includes the CSR details
  • A certificate request compares both the challenge blob and the device CSR, only Intune enrolled devices pass the validation and are issued a certificate

More information from the Microsoft Tech Community: NDES Security Best Practices | Enrollment Options for End-Entity Certificates

Prerequisites

Privileged accounts

  • Application Administrator role for AAD App Proxy and App registration
  • Intune Administrator role, with assigned Intune license to register the Intune Certificate Connector and create certificate profiles
  • Enterprise Administrator (on-prem) to install and configure the NDES AD CS role services
  • Domain account with sufficient permissions to manage the CA, usually Domain Administrator (on-prem)

Official Microsofot prerequisites


Configure infrastructure to support SCEP certificate profiles with Microsoft Intune
To use Simple Certificate Enrollment Protocol (SCEP) with Microsoft Intune, configure your on-premises AD domain, create a certification authority, and set up the NDES server to support use of the Certificate Connector.

Deployment in a nutshell

A straight forward functional tutorial is found on the Tech Community.

Prerequisites

  • Create a service account or gMSA
  • Add the NDES service account to IIS_IUSRS local group on NDES server and make sure the same account can request certificates on the Issuing CA
  • Set the service principal name (SPN) on the NDES server
  • Azure AD App Proxy deployed and functional

Key steps

  1. Create certficate templates

Basically two templates need to be created:

  • Client authentication - this will be later used to issue to the end-entities/devices.
  • Web server - is used for the Web (NDES) server to secure the NDES URL with https.
  1. Install the NDES server and service

Install the NDES roles and configure it: choose an issuing CA and set RA details and cryptography settings.

  1. Configure the Web server

Install the Internet Information Service (IIS) role, request a certificate, based on the Web server template and export it with the private key. (This file needs to be uploaded to the App registration. Also configure the bindings with this certificate. Furthermore adjust the maximum URL length and query string.

  1. Create the App registration

Create an App registration, specify the internal NDES URL, external URL, set the pre-authentication to passthrough and upload the Web server certificate (including the private key). Also create a CNAME to point to the msappproxy-URL.

enterprise-app-ndes

  1. Intune Certificate connector

Download the connector, install it on the NDES server and configure it with SCEP and Certificate revocation the corresponding accounts.

  1. Deploy the trusted certificate

Trusted root/intermediate certificate
Platform: Windows 10 and later
Profile type: Templates
Template name: Trusted certificate

Upload both the Trusted root and intermediate certificate. (two profiles only needed in a two-tier hierarchy PKI)

  1. Intune SCEP profile

SCEP
Platform: Windows 10 and later
Profile type: Templates
Template name: SCEP certificate

Configure the profile (view image for a sample). It is important that you specify the the correct Root Certificate.

intune-scep-profile


Fragments of the device

Certificates

End-entity/device
Open certlm.msc, go to Certificates>Personal to view the requested certificate from your internal issuing CA through NDES. (Root and intermediate trusted certificates are also stored on the machine)

device-cert-1

Issuing certificate authority
From certsrv.msc, you can check the issued certificates. There you can also see that the requestor is the NDES service account, because the request came through NDES.

ica-issued-certificates

Logs

From the event viewer you can find SCEP events under Applications and Services Logs>Microsoft>Windows>DeviceManagement-Enterprise-Diagnostics-Provider>Admin

eventviewer-scep


Notes from the field

  • If you use split-DNS, make sure that you also add the NDES service DNS records internally (ADDS DNS).
  • Certificate chain always must be completely present on the end device.
  • Use an Azure Storage account container to make CRL and public certificates (CRT) available externally.
  • The certificate for the Web server is usually valid for 2 years. Afterwards it must be renewed and newly uploaded to AAD App Proxy.

Endpoint Management with Microsoft Intune
Ever wanted a full tutorial how to deal with Microsoft Autopilot Intune Technology? Well here it is!

Special thanks to Nicola for explaining me these concepts! Visit his blog

You’ve successfully subscribed to Oceanleaf
Welcome back! You’ve successfully signed in.
Great! You’ve successfully signed up.
Your link has expired
Success! Check your email for magic link to sign-in.