请求地址: /open/api/v1/retrieval/getSecurityEventList
    接口类型:HTTP
    请求方法: POST
    请求参数:

    参数 是否必须 说明
    user 第三方系统用户名
    timestamp 请求发起时间戳
    sign md5(timestamp+user+token)
    startEndTime 开始结束事件
    judgeState 验证状态 传对应英文
    未验证:judgeStateNone、
    验证通过:judgeStateTrue、
    误报:judgeStateFalse、
    忽略:judgeStatePass
    noticeState 处置状态 传对应的英文
    未通报noticeStateNone,
    已通报noticeStateDone,
    已完成noticeStateFinished
    pageNo 第几页
    pageSize 每页大小

    注意:pageSize不传时返回10000条

    请求示例:

    1. {
    2. user”: username”,
    3. timestamp”: 1608616211,
    4. sign”: xxxxxx
    5. data”: {
    6. startEndTime”: 2021-09-07 00:00:00”,
    7. judgeState: judgeStateNone”,
    8. noticeState”: noticeStateNone”,
    9. pageNo”: 1,
    10. pageSize”: 100
    11. }
    12. }

    返回参数:

    参数 说明
    errorCode 错误码,当正确时返回null
    errorMessage 错误信息,当正确时返回null
    data.pageNo 当前第几页
    data.pageSize 每页大小
    data.total 总共条数
    data.totalPages 总共页数
    data..result 数组对象具体的对象数据

    data.result对应字段:

    字段名称 字段定义 字段类型
    事件ID incidentID String
    事件名称 incidentName String
    攻击威胁严重程度,分为高、中、低三级 threatSeverity String
    事件等级 eventsThreatSeverity String
    受害者 victim List字符串数组
    攻击者 attacker List字符串数组
    事件标签 incidentTag List字符串数组
    事件类型 eventsType List字符串数组
    举证信息 evidence String
    描述信息 describe String
    IPv4地址 assetIpv4 List字符串数组
    IPv6地址 assetIpv6 List字符串数组
    Mac地址 assetMac List字符串数组
    URL requestUrl String
    起始时间 startTime String
    结束时间 endTime String
    发现厂商 discoverFactory String
    事件来源 eventFrom String
    事件类型 eventsType String
    单位名称 unitName String
    数据来源 dataFrom String
    验证状态 judgeState String
    处置状态 noticeState String
    原始事件 rawEvent String

    返回示例:

    1. {
    2. "success": true,
    3. "errorCode": null,
    4. "errorMessage": null,
    5. "data": {
    6. "pageNo": 1,
    7. "pageSize": 10,
    8. "result": [
    9. {
    10. "incidentID": "3796597f205258537ca1bff2ead2efd34f3b4f81a4bd85c9f10ebcf7142768a6",
    11. "incidentName": "瑞安市唯创品牌策划有限公司cnmeiruhua.com存在不良资产博彩",
    12. "threatSeverity": "Medium",
    13. "eventsThreatSeverity": "largerEvent",
    14. "victim": [
    15. "cnmeiruhua.com"
    16. ],
    17. "attacker": null,
    18. "incidentTag": [
    19. "博彩",
    20. "娱乐城;365bet官网;365bet;体育投注;365bet体育在线;bet365;博彩公司"
    21. ],
    22. "eventsType": [
    23. "不良资产"
    24. ],
    25. "evidence": null,
    26. "describe": "2021-05-15 16:06:07",
    27. "assetIpv4": [
    28. "123.206.200.118"
    29. ],
    30. "assetIpv6": [],
    31. "assetMac": [],
    32. "requestUrl": "http://cnmeiruhua.com",
    33. "startTime": "2021-02-13 12:10:30",
    34. "endTime": "2021-02-13 12:10:30",
    35. "discoverFactory": null,
    36. "eventFrom": null,
    37. "dataFrom": "anHengBrain",
    38. "unitName": "瑞安市唯创品牌策划有限公司",
    39. "judgeState": "judgeStateNone",
    40. "noticeState": "noticeStateNone",
    41. "rawEvent": "{\"headers\":{},\"lastSeenTime\":\"2021-02-13 12:10:30\",\"confidenceLevel\":1,\"poc\":\"365bet官网_365bet体育在线\\t365bet官网,365bet体育在线\\t365bet体育开户,365bet官方体育投注,bet365是世界领先的网络博彩集团之一【6126ok.com】365bet娱乐城是一个覆盖全球的博彩公司,当然做为一个老牌公司也必然有365bet官网,本站提供365bet所有的相关资讯,争取做到,最快、最全的资讯网,您的支持就是我们365bet体育在线的动力,感谢您的\",\"ip\":\"123.206.200.118\",\"eventType\":\"不良资产\",\"title\":\"365bet官网_365bet体育在线\",\"url\":\"http://cnmeiruhua.com\",\"geo\":{\"province\":\"上海\",\"city\":\"上海\",\"latitude\":31.232382,\"countryName\":\"中国\",\"bussFirm\":\"腾讯\",\"longitude\":121.468973},\"unit\":{\"unitName\":\"瑞安市唯创品牌策划有限公司\",\"unitProperty\":\"企业\",\"location\":{\"country\":\"中国\",\"province\":\"浙江\",\"city\":\"温州\",\"district\":\"瑞安\",\"locationCode\":\"330381\"},\"companyLocation\":{\"country\":\"中国\",\"province\":\"浙江\",\"city\":\"温州\",\"district\":\"瑞安\",\"lon\":120.63983,\"locationCode\":\"330381\",\"lat\":27.7875}},\"subEventType\":\"博彩\",\"domain\":\"cnmeiruhua.com\",\"id\":\"3796597f205258537ca1bff2ead2efd34f3b4f81a4bd85c9f10ebcf7142768a6\",\"keyword\":\"娱乐城;365bet官网;365bet;体育投注;365bet体育在线;bet365;博彩公司\"}"
    42. }
    43. ],
    44. "total": 32872,
    45. "totalPages": 32872
    46. }
    47. }