查询单个攻击事件内目的端口信息,包括端口号、协议和所收到的攻击流量占比。按占比由高至低排列。
最多可查询前 100 个端口信息。
参数 | 类型 | 是否必选 | 示例值 | 描述 |
---|---|---|---|---|
Action | String | 是 | DescAttackDstPortTop100 | 接口名称。当前 API 的名称为 DescAttackDstPortTop100 。 |
Version | String | 是 | 2022-01-01 | 接口版本。当前 API 的版本为 2022-01-01 。 |
AtkId | Integer | 是 | 907 | 攻击事件的 ID,可调用DescAttackEvent接口获取具体值。 |
参数 | 类型 | 示例值 | 描述 |
---|---|---|---|
Result | Array of Result |
参数 | 类型 | 示例值 | 描述 |
---|---|---|---|
Percent | Float | 0.18 | 该端口攻击流量占本次攻击总流量的比例。 |
Port | Integer | 12345 | 被攻击的端口号。 |
Protocol | String |
| 该端口使用的通信协议。
|
GET https://open.volcengineapi.com/?Action=DescAttackDstPortTop100&Version=2022-01-01&AtkId=907 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
{ "ResponseMetadata": { "Action": "DescAttackDstPortTop100", "Region": "cn-beijing", "RequestId": "20230604110420****100232280022D31", "Service": "origin_defence", "Version": "2022-01-01" }, "Result": [ { "Percent": 0.18, "Port": 12345, "Protocol": "TCP" }, { "Percent": 0.17, "Port": 12300, "Protocol": "UDP" }, //此处省略若干端口。 { "Percent": 0.08, "Port": 112, "Protocol": "TCP" } ] }