Server Certificates discovered but not displayed in the certificate tab (F5 patterns)DescriptionTo display the certificates in the discovery status page, the Business Rule "Persist Cert History for CA, Import Cert" copies the discovered certificates to sn_disco_certmgmt_certificate_history table.In order to skip showing the intermediate certificates, a condition in the Business Rule checks if the certificate name starts with "ServerCertificate_", and only if it does, then copies to sn_disco_certmgmt_certificate_history.For patterns like F5, Windows, those certificates are not displayed in the discovery status page because the name does not start with "ServerCertificate_".Steps to Reproduce Run a certificate discovery and check the certificates in discovery status page.WorkaroundIn the Business Rule "Persist Cert History for CA, Import Cert", remove the following check: if (isServerCertificate) In SSLCertificateUtil Mid Script Include, modify the following line, from: name: isServerCertificate ? fingerprint+'_ServerCertificate' : subjectCommonName.toString(), to name: subjectCommonName.toString(), Related Problem: PRB1502710