Pre-discovery phase
Summarize
Summary of Pre-discovery phase
The pre-discovery phase in ServiceNow's certificate management involves preparing essential configurations to enable effective certificate discovery. This includes setting scanning parameters and credential details to ensure a smooth start to discovering SSL/TLS certificates across various sources and methods.
Show less
Key Features
- Discovery via Ports: The system uses the
tlssslcertsport probe to automatically scan 14 default preauthorized ports commonly used for SSL/TLS (e.g., 443, 8443, 636, 993). The MID Server collects certificate chain data from these ports during CI Discovery, transforms the data into XML, and the Shazzam sensor records detailed certificate attributes in the Discovered Certificate table. - Discovery via URL: URLs configured in the Certificate URL table are scanned to retrieve certificate chains. The process outputs XML payloads and inserts records in the Discovered Certificate table, linking certificates to their URLs for clear association.
- Discovery via Import Certificates: Certificates can be imported from specific folders on hosts using the Import SSL Certificate pattern. Parameters control host details, folder location, and MID Server temporary storage. Note that the auto-select MID Server option is not supported for Windows/Linux combinations.
- Discovery via Certificate Authority (CA): Integration with major CAs (GoDaddy, DigiCert, Entrust, Sectigo) enables discovery via REST API calls to retrieve certificate inventories. Parameters such as API URLs, versions, and credential aliases configure this process. The system supports scanning Sectigo and Entrust from version 1.2.0 onward and allows control over the number and offset of certificates retrieved.
Important Configuration Considerations
- Certificate state mappings differ between CA raw states and the Unique Certificate table lifecycle states; for example, 'issued' or 'valid' from APIs are stored as "issued" in ServiceNow.
- Setting
TLSkeepOriginalCertificateto true attaches the original certificate file but may cause increased payload size and potential out-of-memory issues. - CredentialAlias is required to link CA credentials securely for serverless execution patterns.
- Certificate statuses discovered vary by CA, with options to include additional states as needed.
Next Steps
After completing the pre-discovery phase configurations and initial scans, proceed to the post-discovery phase to further process and manage the discovered certificates within ServiceNow.
The pre-discovery phase involves preparatory steps, such as defining scanning parameters and configuring credential details, to ensure a smooth initiation of the certificate discovery process.
Discovery via Ports
- Typical ports for SSL: 443, 8443, 9443, 636 (ldaps), 993 (imaps), 995 (popssl), 989, 990
- StartTLS ports: 25 (smtp), 110, 143, 389, 21, 587 (smtp)
As part of the CI Discovery process during Shazzam, the MID Server uses scanners to gather certificate chain information from the IP port number, capturing diverse attributes, including the certificate hierarchy. The MID Server then transforms these certificates into an XML payload, sharing it with the instance. The Shazzam sensor, in turn, detects the ECC queue entry and inserts a new record into the Discovered Certificate table [sn_disco_certmgmt_certificate_history].
The following fields are pulled from the XML payload and verified in java code from the Shazzam TLS port probe for discovered certificates: certificate id, revocation_status, subject, issuer, sans/, is_self_signed, is_ca, valid_from, valid_to, signature_algorithm, fingerprint_algorithm, key_size, serial_number, and version.
Discovery via URL
The Certificate URL [sn_disco_certmgmt_cert_url] table holds a list of URLs to target for certificate discovery. Each record also has an optional reference to the Unique Certificate [cmdb_ci_certificate] table, to see what certificate is related to the given URL definition. The necessary parameters from the Discovery Schedule are combined to create and initialize the Discovery status. The [CertificateDiscoveryFromURLScan] probe discovers the certificate chain for each of the URLs in the batch and outputs an XML payload that contains the certificate chain for each certificate. It also adds a new record into the Discovered Certificate [sn_disco_certmgmt_certificate_history] table.
Discovery via Import Certificates (Version 1.1.7 Certificate Inventory and Management)
- Host name/IP where the certificates are hosted
- Folder where certificates are located
- TLS_keepOriginalCertificate: Setting this parameter to true may lead to increased payload size, potentially causing out-of-memory issues.
- Mid_temp_folder: The temporary folder on the MID Server where files will be temporarily copied.
Discovery via CA authority (Version 1.1.7 Certificate Inventory and Management)
Once the Certificate Inventory and Management credential is set up with either GoDaddy, DigiCert, Entrust, or Sectigo Certificate Authority and the Discovery schedule runs, the specific CA pattern makes REST API calls to (GoDaddy, DigiCert, Entrust, or Sectigo), collects certificate information, retrieves the list of certificates, and stores it in the [cmdb_ci_certificate], [certificate_domain], and [sys_attachment] tables.
- DigiCert - Certificate Management (ca_api_version = v2, ca_api_url = https://www.digicert.com/services/)
- Entrust - Certificate Management (ca_api_version = v2, ca_api_url = https://api.entrust.net/enterprise/)
- GoDaddy - Certificate Management (ca_api_version = v1, ca_api_url = https://api.godaddy.com/)
- Sectigo - Certificate Management (ca_api_version = v1, ca_api_url = https://cert-manager.com/api/ssl/)
- Start_offset: The offset position for reading certificates from CA authorities, with a default value of 0.
- Limit: The number of certificates to be read from the start_offset, with a default value of 1500.
- CredentialAlias: The name of the Credential Alias or Tag linked to the CA credentials, added in the serverless execution pattern configuration.
If the TLS_keepOriginalCertificate parameter is set to true, the certificate file is attached to the Certificate CI. This may increase payload size, potentially causing out-of-memory issues.
- IncludeCertStatus: A parameter for specifying additional certificate states to discover, in addition to the defaults.
You can include multiple certificate statuses by separating each with commas.Table 1. Certificate states by certificate authorities Certificate Authority Default States Discovered Sectigo - Issued
- Expired
DigiCert and GoDaddy - Active
- Expired
- Revoked
- Canceled
Entrust - Active
- Expired
- Revoked
Once the pre-discovery phase is completed, move on to the post-discovery phase.