action firmalyzer_get_accounts { label: "Get default accounts and password hashes of a firmware" provider: firmalyzer method: GET path: "/firmware/{firmware_hash}/accounts" 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: { gid: { type: "integer" } hash_algorithm: { type: "string" } home_dir: { type: "string" } name: { type: "string" } pwd_hash: { type: "string" } shell: { type: "string" } uid: { type: "integer" } } } } }