action firmalyzer_get_weak_certs { label: "Get certificates with weak fingerprinting algorithms that are mebedded in a device firmware" provider: firmalyzer method: GET path: "/firmware/{firmware_hash}/weak-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" } sign_algorithm: { type: "string" } subject_name: { type: "string" } thumb_print: { type: "string" } valid_from: { type: "string" } valid_to: { type: "string" } } } } }