You need to enable JavaScript to run this app.
导航
DescAttackDstPortTop100-查询攻击事件内目的端口流量占比
最近更新时间:2025.05.28 18:54:51首次发布时间:2024.06.27 22:21:30
我的收藏
有用
有用
无用
无用

查询单个攻击事件内目的端口信息,包括端口号、协议和所收到的攻击流量占比。按占比由高至低排列。

注意事项

  • 最多可查询前 100 个端口信息。
  • 调用时请将{region}替换成实际地域 ID,地域详情参见地域信息

请求说明

  • 请求方式:GET
  • 请求地址:https://origin_defence.{region}.volcengineapi.com/?Action=DescAttackDstPortTop100&Version=2022-01-01

请求参数

Query

参数类型是否必选示例值描述
ActionStringDescAttackDstPortTop100接口名称。当前 API 的名称为 DescAttackDstPortTop100
VersionString2022-01-01接口版本。当前 API 的版本为 2022-01-01
AtkIdInteger907攻击事件的 ID,可调用DescAttackEvent接口获取具体值。

返回参数

参数类型示例值描述
ResultArray of Result

Result

参数类型示例值描述
PercentFloat0.18该端口攻击流量占本次攻击总流量的比例。
PortInteger12345被攻击的端口号。

Protocol

String

TCP

该端口使用的通信协议。

  • TCP
  • UDP

请求示例

GET https://origin_defence.{region}.volcengineapi.com/?Action=DescAttackDstPortTop100&Version=2022-01-01&AtkId=907

返回示例

{
    "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"
        }
    ]
}