misp-objects/objects/x509/definition.json

114 lines
3.1 KiB
JSON
Raw Normal View History

2016-02-16 07:43:17 +01:00
{
2017-08-29 18:36:46 +02:00
"requiredOneOf": [
"x509-fingerprint-md5",
"x509-fingerprint-sha1",
2018-03-26 18:16:29 +02:00
"x509-fingerprint-sha256",
"serial-number"
2017-07-03 12:27:16 +02:00
],
2017-02-13 11:18:42 +01:00
"attributes": {
"subject": {
2017-08-29 18:36:46 +02:00
"description": "Subject of the certificate",
2017-07-03 16:45:54 +02:00
"ui-priority": 1,
2017-07-03 12:27:16 +02:00
"misp-attribute": "text"
2017-02-13 11:18:42 +01:00
},
"pubkey-info-algorithm": {
2017-08-29 18:36:46 +02:00
"description": "Algorithm of the public key",
2017-07-03 16:45:54 +02:00
"ui-priority": 0,
2017-07-03 12:27:16 +02:00
"misp-attribute": "text"
2017-02-13 11:18:42 +01:00
},
"pubkey-info-size": {
2017-08-29 18:36:46 +02:00
"description": "Length of the public key (in bits)",
2017-07-03 16:45:54 +02:00
"ui-priority": 0,
2017-07-03 12:27:16 +02:00
"misp-attribute": "text"
2017-02-13 11:18:42 +01:00
},
"pubkey-info-exponent": {
2017-08-29 18:36:46 +02:00
"description": "Exponent of the public key",
2017-07-03 16:45:54 +02:00
"ui-priority": 0,
2017-07-03 12:27:16 +02:00
"misp-attribute": "text"
},
"pubkey-info-modulus": {
2017-08-29 18:36:46 +02:00
"description": "Modulus of the public key",
2017-07-03 16:45:54 +02:00
"ui-priority": 0,
2017-07-03 12:27:16 +02:00
"misp-attribute": "text"
2017-02-13 11:18:42 +01:00
},
"x509-fingerprint-md5": {
2017-08-29 18:36:46 +02:00
"description": "[Insecure] MD5 hash (128 bits)",
"ui-priority": 1,
"misp-attribute": "x509-fingerprint-md5",
2017-08-29 18:36:46 +02:00
"recommended": false
},
2017-02-13 11:18:42 +01:00
"x509-fingerprint-sha1": {
2017-08-29 18:36:46 +02:00
"description": "[Insecure] Secure Hash Algorithm 1 (160 bits)",
2017-07-03 16:45:54 +02:00
"ui-priority": 1,
"misp-attribute": "x509-fingerprint-sha1",
2017-08-29 18:36:46 +02:00
"recommended": false
2017-02-13 11:18:42 +01:00
},
"x509-fingerprint-sha256": {
2017-08-29 18:36:46 +02:00
"description": "Secure Hash Algorithm 2 (256 bits)",
"ui-priority": 1,
"misp-attribute": "x509-fingerprint-sha256"
},
2017-02-13 11:18:42 +01:00
"raw-base64": {
2018-03-28 15:26:35 +02:00
"description": "Raw certificate base64 encoded (DER format)",
"ui-priority": 0,
"misp-attribute": "text"
},
"pem": {
"description": "Raw certificate in PEM formati (Unix-like newlines)",
2017-07-03 16:45:54 +02:00
"ui-priority": 0,
2017-07-03 12:27:16 +02:00
"misp-attribute": "text"
2017-02-13 11:18:42 +01:00
},
"text": {
2017-08-29 18:36:46 +02:00
"description": "Free text description of hte certificate",
2017-07-03 16:45:54 +02:00
"ui-priority": 1,
2017-07-03 12:27:16 +02:00
"misp-attribute": "text"
},
"validity-not-before": {
2017-08-29 18:36:46 +02:00
"description": "Certificate invalid before that date",
2017-07-03 16:45:54 +02:00
"ui-priority": 0,
2017-07-03 12:27:16 +02:00
"misp-attribute": "datetime"
},
"validity-not-after": {
2017-08-29 18:36:46 +02:00
"description": "Certificate invalid after that date",
2017-07-03 16:45:54 +02:00
"ui-priority": 0,
2017-07-03 12:27:16 +02:00
"misp-attribute": "datetime"
},
"issuer": {
2017-08-29 18:36:46 +02:00
"description": "Issuer of the certificate",
2017-07-03 16:45:54 +02:00
"ui-priority": 0,
2017-07-03 12:27:16 +02:00
"misp-attribute": "text"
},
"serial-number": {
2017-08-29 18:36:46 +02:00
"description": "Serial number of the certificate",
2017-07-03 16:45:54 +02:00
"ui-priority": 0,
2017-07-03 12:27:16 +02:00
"misp-attribute": "text"
},
"version": {
2017-08-29 18:36:46 +02:00
"description": "Version of the certificate",
2017-07-03 16:45:54 +02:00
"ui-priority": 0,
2017-07-03 12:27:16 +02:00
"misp-attribute": "text"
2018-03-28 15:26:35 +02:00
},
"self_signed": {
"description": "Self-signed certificate",
"ui-priority": 0,
"misp-attribute": "boolean"
},
"is_ca": {
"description": "CA certificate",
"ui-priority": 0,
"misp-attribute": "boolean"
},
"dns_names": {
"description": "DNS names",
"multiple": true,
"misp-attribute": "text",
"ui-priority": 0
2017-02-13 11:18:42 +01:00
}
},
2018-03-28 15:26:35 +02:00
"version": 7,
2017-07-03 12:27:16 +02:00
"description": "x509 object describing a X.509 certificate",
"meta-category": "network",
"uuid": "d1ab756a-26b5-4349-9f43-765630f0911c",
"name": "x509"
2016-02-16 07:43:17 +01:00
}