Abrufen einer Liste und der Gesamtzahl aller Zertifikate, die durch CertCentral Discovery-Scans gefunden wurden Optional können Sie die Ergebnisse nach Zertifikatsattributen filtern.
curl -X POST \
https://daas.digicert.com/apicontroller/v1/certificate/list \
-H 'Content-Type: application/json' \
-H 'X-DC-DEVKEY: {{api_key}}' \
-d '{
"searchCriteriaList": [
{
"key":"cn",
"operation": "EQUALS",
"value": [
"www.digicert.com","www.cert.com","docs.digicert.com"
]
},
{
"key":"org",
"operation": "EQUALS",
"value": [
"DigiCert Inc"
]
},
{
"key":"status",
"operation": "EQUALS",
"value": [
"VALID"
]
},
{
"key":"serialNum",
"operation": "EQUALS",
"value": [
"0eb6eab418c873d8f3c031dcdddf18b0"
]
},
{
"key":"securityRating",
"operation": "EQUALS",
"value": [
"Not secure","At risk"
]
},
{
"key":"ca",
"operation": "EQUALS",
"value": [
"DigiCert SHA2 Secure Server CA"
]
},
{
"key":"daysToExpire",
"operation": "EQUALS",
"value": [
"90"
]
},
{
"key":"tags",
"operation": "EQUALS",
"value": [
"internal","devbox"
]
}
],
"accountId": "126993",
"divisionIds": [],
"startIndex": 1,
"pageSize": 50,
"sortedColumnId": "cn",
"sortOrder": "ASC"
}'
import requests
url = "https://daas.digicert.com/apicontroller/v1/certificate/list"
payload = "{\n \"searchCriteriaList\": [\n {\n \"key\": \"cn\",\n \"operation\": \"EQUALS\",\n \"value\": [\n \"www.digicert.com\",\"www.cert.com\",\"docs.digicert.com\"\n ]\n },\n {\n \"key\": \"org\",\n \"operation\": \"EQUALS\",\n \"value\": [\n \"DigiCert Inc\"\n ]\n },\n {\n \"key\": \"status\",\n \"operation\": \"EQUALS\",\n \"value\": [\n \"VALID\"\n ]\n },\n {\n \"key\": \"serialNum\",\n \"operation\": \"EQUALS\",\n \"value\": [\n \"0eb6eab418c873d8f3c031dcdddf18b0\"\n ]\n },\n {\n \"key\": \"securityRating\",\n \"operation\": \"EQUALS\",\n \"value\": [\n \"Not secure\",\"At risk\"\n ]\n },\n {\n \"key\": \"ca\",\n \"operation\": \"EQUALS\",\n \"value\": [\n \"DigiCert SHA2 Secure Server CA\"\n ]\n },\n {\n \"key\": \"daysToExpire\",\n \"operation\": \"EQUALS\",\n \"value\": [\n \"90\"\n ]\n },\n {\n \"key\": \"tags\",\n \"operation\": \"EQUALS\",\n \"value\": [\n \"internal\",\"devbox\"\n ]\n }\n ],\n \"accountId\": \"126993\",\n \"divisionIds\": [],\n \"startIndex\": 1,\n \"pageSize\": 50,\n \"sortedColumnId\": \"cn\",\n \"sortOrder\": \"ASC\"\n}"
headers = {
'X-DC-DEVKEY': "{{api_key}}",
'Content-Type': "application/json",
}
response = requests.request("POST", url, data=payload, headers=headers)
print(response.text)
package main
import (
"fmt"
"strings"
"net/http"
"io/ioutil"
)
func main() {
url := "https://daas.digicert.com/apicontroller/v1/certificate/list"
payload := strings.NewReader("{\n \"searchCriteriaList\": [\n {\n \"key\": \"cn\",\n \"operation\": \"EQUALS\",\n \"value\": [\n \"www.digicert.com\",\"www.cert.com\",\"docs.digicert.com\"\n ]\n },\n {\n \"key\": \"org\",\n \"operation\": \"EQUALS\",\n \"value\": [\n \"DigiCert Inc\"\n ]\n },\n {\n \"key\": \"status\",\n \"operation\": \"EQUALS\",\n \"value\": [\n \"VALID\"\n ]\n },\n {\n \"key\": \"serialNum\",\n \"operation\": \"EQUALS\",\n \"value\": [\n \"0eb6eab418c873d8f3c031dcdddf18b0\"\n ]\n },\n {\n \"key\": \"securityRating\",\n \"operation\": \"EQUALS\",\n \"value\": [\n \"Not secure\",\"At risk\"\n ]\n },\n {\n \"key\": \"ca\",\n \"operation\": \"EQUALS\",\n \"value\": [\n \"DigiCert SHA2 Secure Server CA\"\n ]\n },\n {\n \"key\": \"daysToExpire\",\n \"operation\": \"EQUALS\",\n \"value\": [\n \"90\"\n ]\n },\n {\n \"key\": \"tags\",\n \"operation\": \"EQUALS\",\n \"value\": [\n \"internal\",\"devbox\"\n ]\n }\n ],\n \"accountId\": \"126993\",\n \"divisionIds\": [],\n \"startIndex\": 1,\n \"pageSize\": 50,\n \"sortedColumnId\": \"cn\",\n \"sortOrder\": \"ASC\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("X-DC-DEVKEY", "{{api_key}}")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := ioutil.ReadAll(res.Body)
fmt.Println(res)
fmt.Println(string(body))
}
var request = require("request");
var options = { method: 'POST',
url: 'https://daas.digicert.com/apicontroller/v1/certificate/list',
headers:
{ 'Content-Type': 'application/json',
'X-DC-DEVKEY': '{{api_key}}' },
body:
{ searchCriteriaList:
[ { key: 'cn', operation: 'EQUALS', value: [ 'www.digicert.com','www.cert.com','docs.digicert.com' ] },
{ key: 'org', operation: 'EQUALS', value: [ 'DigiCert Inc' ] },
{ key: 'status', operation: 'EQUALS', value: [ 'VALID' ] },
{ key: 'serialNum', operation: 'EQUALS', value: [ '0eb6eab418c873d8f3c031dcdddf18b0' ] },
{ key: 'securityRating', operation: 'EQUALS', value: [ 'Not secure','At risk' ] },
{ key: 'ca', operation: 'EQUALS', value: [ 'DigiCert SHA2 Secure Server CA' ] },
{ key: 'daysToExpire', operation: 'EQUALS', value: [ '90' ] },
{ key: 'tags', operation: 'EQUALS', value: [ 'internal','devbox' ] } ],
accountId: '126993',
divisionIds: [],
startIndex: 1,
pageSize: 50,
sortedColumnId: 'cn',
sortOrder: 'ASC' },
json: true };
request(options, function (error, response, body) {
if (error) throw new Error(error);
console.log(body);
});
{
"data": {
"totalCount": 81,
"currentCount": 50,
"certificateDetailsDTOList": [
{
"certId": "fb92ee3a2fd0cb6549e58c252f8787f467bfbeff",
"serialNum": "2bf1c0d8a20fef721f67011d6231c16e",
"validFrom": 1523318400000,
"expiryDate": 1591660799000,
"subject": "CN=*.aparat.com,OU=EssentialSSL Wildcard,OU=Domain Control Validated",
"issuedBy": "CN=COMODO RSA Domain Validation Secure Server CA, O=COMODO CA Limited, L=Salford, ST=Greater Manchester, C=GB",
"cn": "*.aparat.com",
"ca": "Comodo",
"firstDiscoveredDate": 1561409074447,
"keyLength": 2048,
"algoType": "SHA256withRSA",
"accountId": null,
"certStatusString": "VALID",
"owner": "",
"org": null,
"orgUnit": "Domain Control Validated",
"city": "",
"state": "",
"country": "",
"sanCount": 2,
"publicKeyAlgo": "RSA",
"san": "isBlobUTF8=true;[2, *.aparat.com];[2, aparat.com]",
"certRating": "Secure",
"tags": "",
"certStatusError": null,
"certIssues": "CRLDistributionPoints"
},
{
"certId": "4c5d6a9813d3c858ac1ba279a3dd318460bc9ad7",
"serialNum": "040b914d32914ffc2474a3fdfd892c99",
"validFrom": 1539734400000,
"expiryDate": 1573992000000,
"subject": "CN=espn.com",
"issuedBy": "CN=Amazon, OU=Server CA 1B, O=Amazon, C=US",
"cn": "espn.com",
"ca": "Amazon",
"firstDiscoveredDate": 1563917838074,
"keyLength": 2048,
"algoType": "SHA256withRSA",
"accountId": null,
"certStatusString": "VALID",
"owner": "",
"org": null,
"orgUnit": "",
"city": "",
"state": "",
"country": "",
"sanCount": 6,
"publicKeyAlgo": "RSA",
"san": "isBlobUTF8=true;[2, espn.com];[2, *.espn.com];[2, *.geo.hosted.espn.com];[2, *.us-west-2.aws.hosted.espn.com];[2, *.core.api.espn.com];[2, *.api.espn.com]",
"certRating": "Secure",
"tags": "internal",
"certStatusError": null,
"certIssues": "IsAliasMatchSAN,CRLDistributionPoints"
}
]
}
}
Name | Antr./Opt. | Typ | Beschreibung |
---|---|---|---|
searchCriteriaList | optional | array | Aufzeichnungen der angegebenen Kriterien abrufen. |
.. key | optional | string |
Suchparameter. Zulässige Werte: cn , org , Status , serialNum , securityRating , ca , daysToExpire , tags
|
.. operation | optional | string |
Suchoperation Zulässige Wert: EQUALS
|
.. value | optional | array | Suchwerte |
accountId | erforderlich | string | Konto-ID |
divisionIds | optional | array | Abteilungs-IDs |
startIndex | optional | int |
Beim angegebenen Index beginnen Standard: 1
|
pageSize | optional | int |
Anzahl der Einträge pro Seite Standard: 50
|
sortedColumnId | optional | string |
Ergebnisse nach angegebenem Parameter sortieren Zulässige Werte: cn , org , status , serialNum , securityRating , ca , daysToExpire Standard: cn
|
sortOrder | optional | string |
Sortierrichtung Zulässige Werte: ASC (aufsteigend: 0-9, A-Z), DESC (absteigend: 9-0, Z-A)Standard: ASC
|
Name | Typ | Beschreibung |
---|---|---|
data | object | Container. |
.. totalCount | int | Gesamtzahl der Einträge, die den Suchkriterien entsprechen |
.. currentCount | int | Anzahl der Einträge auf der aktuellen Seite |
.. certificateDetailsDTOList | array | Container für Zertifikatsdetails |
.. .. certId | string | Eindeutige DigiCert-generierte ID für das Zertifikat Für API Anfragen verwenden, die sie benötigen. |
.. .. serialNum | string | Die dem Zertifikat bei Ausstellung zugewiesene Seriennummer |
.. .. validFrom | string | Startdatum der Gültigkeit |
.. .. expiryDate | string | Enddatum der Gültigkeit |
.. .. subject | bool | Voller eindeutiger Name des Zertifikats |
.. .. issuedBy | string | Stammzertifikat, auf dem das ausgestellte Zertifikat basiert |
.. .. cn | string | Allgemeiner Name auf dem Zertifikat |
.. .. ca | string | Zertifizierungsstelle, die das Zertifikat ausgestellt hat |
.. .. firstDiscoveredDate | string | Datum, zu dem das Zertifikat erstmalig vom CertCentral Discovery-Scan gefunden wurde. |
.. .. keyLength | string | Schlüsselgröße für das Zertifikat |
.. .. algoType | string | Verschlüsselungsalgorithmus, den das Zertifikat verwendet |
.. .. accountId | string | Konto-ID |
.. .. certStatusString | string |
Status des Zertifikats.
|
.. .. owner | string | In CertCentral Discovery definierter Besitzer |
.. .. org | string | Organisationsname auf dem Zertifikat |
.. .. orgunit | string | Organisationseinheit auf dem Zertifikat |
.. .. city | string | Stadt auf dem Zertifikat |
.. .. state | string | Bundesland auf dem Zertifikat |
.. .. country | string | Land auf dem Zertifikat |
.. .. sanCount | string | Anzahl der SANs auf dem Zertifikat |
.. .. publicKeyAlgo | string | Verschlüsselungsalgorithmus für den öffentlichen Schlüssel des Zertifikats |
.. .. san | string | SANs auf dem Zertifikat |
.. .. certRating | string |
Sicherheitsbewertung für das Zertifikat , basierend auf Branchenstandards und den Zertifikatseinstellungen.
|
.. .. tags | string | Vom Zertifikatsbesitzer, Abonnenten oder einem anderen Administrator hinzugefügte benutzerdefinierte Tags |
.. .. certStatusError | string | Fehler, die den Zertifikatsstatus abrufen |
.. .. certIssues | string | Planungsdaten für Zertifikatsaussteller |