mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 08:55:24 +00:00
009a87d33e
Adds the software installed path property to the proper end-points and third party integrations (webhook, Zendesk and Jira).
23 lines
484 B
TypeScript
23 lines
484 B
TypeScript
import PropTypes from "prop-types";
|
|
|
|
export default PropTypes.shape({
|
|
cve: PropTypes.string,
|
|
details_link: PropTypes.string,
|
|
});
|
|
|
|
export interface IHostsAffected {
|
|
id: number;
|
|
display_name: string;
|
|
url: string;
|
|
software_installed_paths?: string[];
|
|
}
|
|
export interface IVulnerability {
|
|
cve: string;
|
|
details_link: string;
|
|
cvss_score?: number;
|
|
epss_probability?: number;
|
|
cisa_known_exploit?: boolean;
|
|
cve_published?: string;
|
|
hosts_affected?: IHostsAffected[];
|
|
}
|