更新时间:2024-11-13 GMT+08:00
分享

查询攻击事件列表

功能介绍

查询攻击事件列表

调用方法

请参见如何调用API

URI

GET /v2/aad/domains/waf-info/attack/event

表1 Query参数

参数

是否必选

参数类型

描述

domains

String

不传时代表全部域名

start_time

String

开始时间

end_time

String

结束时间

recent

String

枚举值:yesterday,today,3days,1week,1month 与时间戳二选一

overseas_type

Integer

实例类型,0-大陆,1-海外

sip

String

攻击源IP

limit

Integer

limit

offset

Integer

offset

请求参数

表2 请求Header参数

参数

是否必选

参数类型

描述

X-Auth-Token

String

token

Content-Type

String

Content-Type

缺省值:application/json;charset=utf8

响应参数

状态码: 200

表3 响应Body参数

参数

参数类型

描述

total

Integer

total

list

Array of ListWafAttackEventlist objects

list

表4 ListWafAttackEventlist

参数

参数类型

描述

id

String

id

domain

String

攻击目标域名

time

Integer

攻击时间

sip

String

攻击源IP

action

String

防御动作

url

String

攻击url

type

String

攻击类型

backend

Backend object

当前后端

表5 Backend

参数

参数类型

描述

protocol

String

当前后端协议

port

Integer

当前后端端口

host

String

当前后端 Host 值

请求示例

响应示例

状态码: 200

OK

{
  "list" : [ {
    "action" : "block",
    "backend" : {
      "host" : "1.1.1.1",
      "port" : 443,
      "protocol" : "HTTPS"
    },
    "domain" : "www.yangqi-cc.com",
    "id" : "20-4012b40c5dcd424c5488b53aa01ddfe1",
    "sip" : "10.172.190.37",
    "time" : 1726279906000,
    "type" : "cc",
    "url" : "/opt"
  } ],
  "total" : 1
}

状态码

状态码

描述

200

OK

错误码

请参见错误码

相关文档