/* * @Description: 攻击者视角分析 * @Author: tqh * @Date: 2023-6-3 */ import { http } from "@/utils/https"; /** * @description: 获取列表 */ export const getPage = (data) => { return http.get("/analysisCenter/attackerPerspective/page", data); }; /** * @description:事件类型统计TOP10 */ export const getEventCategoryTop10 = (data) => { return http.get("/analysisCenter/attackerPerspective/eventCategoryTop10", data); }; /** * @description:事件名称统计TOP10 */ export const getEventNameTop10 = (data) => { return http.get("/analysisCenter/attackerPerspective/eventNameTop10", data); }; /** * @description:攻击结果分布 */ export const getAttackResults = (data) => { return http.get("/analysisCenter/attackerPerspective/attackResults", data); }; /** * @description:被攻击者TOP10 */ export const getAttackeredTop10 = (data) => { return http.get("/analysisCenter/attackerPerspective/attackeredTop10", data); }; /** * @description: 攻击链阶段分布 */ export const getKillChainDistribution = (data) => { return http.get("/analysisCenter/attackerPerspective/killChainDistribution", data); };