Reviewed-by: Hasko, Vladimir <vladimir.hasko@t-systems.com> Co-authored-by: Li, Qiao <qiaoli@huawei.com> Co-committed-by: Li, Qiao <qiaoli@huawei.com>
13 KiB
Querying Top N Attack Source IP Addresses
Function Description
This API is used to query the top N attack source IP addresses.
URI
- URI format
GET /v1/{project_id}/waf/event/attack/source?top={top}&from={from}&to={to}&hosts={hostids}
- Parameter description
Table 1 Path parameters Parameter
Mandatory
Type
Description
project_id
Yes
String
Specifies the project ID.
top
No
Integer
Specifies the top n attack source IP addresses to be queried. The default value is 5.
from
Yes
Long
Specifies the start time (UTC) in milliseconds. For example, 1548172800000.
to
Yes
Long
Specifies the end time (UTC) in milliseconds. For example, 1548431999000.
hosts
No
Array
Specifies the domain IDs.
Request
Request parameters
None
Response
Response parameters
Parameter |
Type |
Description |
---|---|---|
total |
Integer |
Specifies the total number of attack source IP addresses. |
items |
Specifies the array of items. |
Example
{ "total": 4, "items": [ {"ip": "X.X.1.1", "num": 1000}, {"ip": "X.X.1.2", "num": 1000}, {"ip": "X.X.1.3", "num": 1000}, {"ip": "X.X.1.4", "num": 1000} ] }
Status Code
For details about error status codes, see Status Codes.