action firmalyzer_get_expired_certs { label: "Get expired digital certificates embedded in a device firmware" provider: firmalyzer method: GET path: "/firmware/{firmware_hash}/expired-certs" encoding: json input: { type: "object" properties: { firmware_hash: { type: "string" description: "SHA2 hash of device firmware" } } required: ["firmware_hash"] additionalProperties: false } output: { type: "array" items: { type: "object" properties: { file_hash: { type: "string" } file_name: { type: "string" } public_key: { type: "object" } subject_name: { type: "string" } thumb_print: { type: "string" } valid_from: { type: "string" } valid_to: { type: "string" } } } } }