根据域名信息查询被攻击次数最多的前 10 个路径,包括被攻击的域名、路径、攻击次数及其对应百分比。
参数 | 类型 | 是否必选 | 示例值 | 描述 |
---|---|---|---|---|
Action | String | 是 | DescWebAtkTopUrl | 接口名称。当前 API 的名称为 DescWebAtkTopUrl 。 |
Version | String | 是 | 2021-06-15 | 接口版本。当前 API 的版本为 2021-06-15 。 |
参数 | 类型 | 是否必选 | 示例值 | 描述 |
---|---|---|---|---|
BeginTime | Integer | 否 |
|
|
EndTime | Integer | 否 |
|
|
Hosts | Array of String | 是 | ["www.host.com"] | 域名列表。 |
参数 | 类型 | 示例值 | 描述 |
---|---|---|---|
Result | Array of DescWebAtkTopUrlResultItem |
参数 | 类型 | 示例值 | 描述 |
---|---|---|---|
Host | String | www.host.com | 被攻击域名 |
Path | String | /test | 被攻击路径 |
Percentage | Float | 13.57 | 百分比,保留两位小数 |
AttackCount | Integer | 107 | 攻击次数 |
POST https://open.volcengineapi.com/?Action=DescWebAtkTopUrl&Version=2021-06-15 Host: https://open.volcengineapi.com Content-Type: application/json; charset=UTF-8 X-Date: 20240610T082509Z X-content-Sha256: 287e874e******d653b44d21e Authorization: HMAC-SHA256 Credential=Adfks******wekfwe/20240610/cn-beijing/origin_defence/request, SignedHeaders=host;x-content-sha256;x-date, Signature=47a7d934ff7b37c03938******cd7b8278a40a1057690c401e92246a0e41085f { "BeginTime": 1716263580, "EndTime": 1718855580, "Hosts": [ "www.host.com" ] }
{ "ResponseMetadata": { "RequestId": "20240712170930****8FDDE43CDFEC1864", "Action": "DescWebAtkTopUrl", "Version": "2021-06-15", "Service": "AdvDefence", "Region": "cn-beijing" }, "Result": [ { "Host": "www.host.com", "Path": "/", "AttackCount": 870, "Percentage": 96.24 }, { "Host": "www.host.com", "Path": "/block", "AttackCount": 34, "Percentage": 3.76 } ] }