You need to enable JavaScript to run this app.
导航
DescWebAtkOverview-查询 Web 攻击概览数据
最近更新时间:2024.07.19 19:17:47首次发布时间:2024.07.19 19:17:47

根据域名查询 Web 攻击总览信息,包括攻击次数、攻击源 IP 数量与攻击峰值,支持查询单个或多个域名。

请求说明

  • 请求方式:POST
  • 请求地址:https://open.volcengineapi.com/?Action=DescWebAtkOverview&Version=2021-06-15

调试

请求参数

Query

参数类型是否必选示例值描述
ActionStringDescWebAtkOverview接口名称。当前 API 的名称为 DescWebAtkOverview
VersionString2021-06-15接口版本。当前 API 的版本为 2021-06-15

Body

参数类型是否必选示例值描述

BeginTime

Integer

1716263580

  • 起始时间,秒级时间戳,结束时间应大于起始时间。
  • 若不填,则默认为一小时前。

EndTime

Integer

1718855580

  • 结束时间,秒级时间戳,结束时间应大于起始时间。
  • 若不填,则默认为当前时刻。
HostsArray of String["www.host.com"]域名列表。

返回参数

参数类型示例值描述
AttackCountInteger60对应域名遭受的攻击次数。
AttackIPCountInteger12攻击源 IP 数量。
PeakAttackQpsInteger330攻击请求速率峰值,单位:qps。

请求示例

POST https://open.volcengineapi.com/?Action=DescWebAtkOverview&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/AdvDefence/request, SignedHeaders=host;x-content-sha256;x-date, Signature=47a7d934ff7b37c03938******cd7b8278a40a1057690c401e92246a0e41085f
{
    "BeginTime": 1716263580,
    "EndTime": 1718855580,
    "Hosts": [
        "www.host.com"
    ]
}

返回示例

{
    "ResponseMetadata": {
        "RequestId": "20230604110420****100232280022D31",
        "Action": "DescWebAtkOverview",
        "Version": "2021-06-15",
        "Service": "origin_defence",
        "Region": "cn-beijing"
    },
    "Result": {
        "PageInfo": {
            "Count": -90703783,
            "PageSize": 91396378,
            "TotalCount": -79130056,
            "CurrentPage": 25215967
        },
        "Result": {
            "AttackCount": 60,
            "AttackIPCount": 12,
            "PeakAttackQps": 330
        }
    }
}