Help Center/ Host Security Service/ API Reference/ API Description/ Application Protection/ Querying the Application Protection Event List
Updated on 2025-09-08 GMT+08:00

Querying the Application Protection Event List

Function

Querying the application protection event list: Displays the protection event information, including the alarm severity, server name, alarm name, alarm time, attack source IP address, and attack source URL.

Calling Method

For details, see Calling APIs.

URI

GET /v5/{project_id}/rasp/events

Table 1 Path Parameters

Parameter

Mandatory

Type

Description

project_id

Yes

String

Project ID

Table 2 Query Parameters

Parameter

Mandatory

Type

Description

enterprise_project_id

No

String

Definition

Enterprise project ID, which is used to filter assets in different enterprise projects. For details, see Obtaining an Enterprise Project ID.

To query assets in all enterprise projects, set this parameter to all_granted_eps.

Constraints

You need to set this parameter only after the enterprise project function is enabled.

Range

The value can contain 1 to 256 characters.

Default Value

0: default enterprise project.

host_id

Yes

String

Host Id

start_time

Yes

Long

Start time of a segment. The timestamp is accurate to milliseconds.

end_time

Yes

Long

End time of a segment. The timestamp is accurate to milliseconds.

limit

Yes

Integer

The default value is 10.

offset

Yes

Integer

The default value is 0.

app_type

No

String

Application type. The value can be:

  • java: Java application protection.

severity

No

String

Alarm severity

Alarm severity. The options are as follows:

  • 0: Info

  • 1: low-level alarm

  • 2: medium-level alarm

  • 3: high-level alarm

  • 4: Critical

attack_tag

No

String

Attack tag|-

Attack tag. The options are as follows:

  • Attack Success: successful attack

  • Attack Attempt: attack attempt

  • Attack Blocked: attack blocked

  • Abnormal Behavior: abnormal behavior

  • Collapsible Host: server compromised

  • System Vulnerability: system vulnerability

protect_status

No

String

Protection status. It can be:

  • closed

  • opened

Request Parameters

Table 3 Request header parameters

Parameter

Mandatory

Type

Description

x-auth-token

Yes

String

User token.

It can be obtained by calling the IAM API used to obtain a user token. The value of X-Subject-Token in the response header is the user token.

Response Parameters

Status code: 200

Table 4 Response body parameters

Parameter

Type

Description

total_num

Long

total number

data_list

Array of RaspProtectHistoryResponseInfo objects

data list

Table 5 RaspProtectHistoryResponseInfo

Parameter

Type

Description

host_name

String

Server name

private_ip

String

Server private IP address

alarm_time

AnyType

Alarm time (ms)

event_name

String

Alarm name

severity

String

Alarm severity

req_src_ip

String

Source IP address

app_stack

String

Application call stack information

attack_input_name

String

Attack auxiliary field

attack_input_value

String

Attack payload content

query_string

String

Query string

req_headers

String

Web request header

req_method

String

Web request method

req_params

String

Web request parameters

req_path

String

Web request path

req_protocol

String

Web request protocol

req_url

String

Web request URL

attack_tag

String

Attack tag

chk_probe

String

Probe ID

chk_rule

String

Detection rule ID

chk_rule_desc

String

Rule description

exist_bug

String

Whether the application has bugs

Example Requests

None

Example Responses

Status code: 200

Request succeeded.

{
  "total_num" : 21,
  "data_list" : [ {
    "severity" : "High",
    "host_name" : "test-lmh-003",
    "private_ip" : "192.168.0.97",
    "alarm_time" : 1736414463000,
    "event_name" : "ExpressionInject",
    "req_src_ip" : "127.0.0.1",
    "app_stack" : "com.huawei.hisec.secshield.vulnsblock.**********shieldAndEscapeReturn(*******:225)",
    "query_string" : "",
    "req_headers" : "{\"accept\":[\"*/*\"],\"host\":[\"127.0.0.1:8080\"],\"user-agent\":[\"curl/7.81.0\"]}",
    "req_method" : "GET",
    "req_params" : "",
    "req_path" : "",
    "req_protocol" : "HTTP/1.1",
    "req_url" : "/fileless",
    "attack_tag" : "abnormal_behavior",
    "chk_probe" : "EI-TemplateAwareExpressionParser.parseExpression",
    "chk_rule" : "ExpressionInject",
    "chk_rule_desc" : "the length of the expression over max length, length: 2908",
    "exist_bug" : "yes"
  } ]
}

SDK Sample Code

The SDK sample code is as follows.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
package com.huaweicloud.sdk.test;

import com.huaweicloud.sdk.core.auth.ICredential;
import com.huaweicloud.sdk.core.auth.BasicCredentials;
import com.huaweicloud.sdk.core.exception.ConnectionException;
import com.huaweicloud.sdk.core.exception.RequestTimeoutException;
import com.huaweicloud.sdk.core.exception.ServiceResponseException;
import com.huaweicloud.sdk.hss.v5.region.HssRegion;
import com.huaweicloud.sdk.hss.v5.*;
import com.huaweicloud.sdk.hss.v5.model.*;


public class ListRaspEventsSolution {

    public static void main(String[] args) {
        // The AK and SK used for authentication are hard-coded or stored in plaintext, which has great security risks. It is recommended that the AK and SK be stored in ciphertext in configuration files or environment variables and decrypted during use to ensure security.
        // In this example, AK and SK are stored in environment variables for authentication. Before running this example, set environment variables CLOUD_SDK_AK and CLOUD_SDK_SK in the local environment
        String ak = System.getenv("CLOUD_SDK_AK");
        String sk = System.getenv("CLOUD_SDK_SK");
        String projectId = "{project_id}";

        ICredential auth = new BasicCredentials()
                .withProjectId(projectId)
                .withAk(ak)
                .withSk(sk);

        HssClient client = HssClient.newBuilder()
                .withCredential(auth)
                .withRegion(HssRegion.valueOf("<YOUR REGION>"))
                .build();
        ListRaspEventsRequest request = new ListRaspEventsRequest();
        try {
            ListRaspEventsResponse response = client.listRaspEvents(request);
            System.out.println(response.toString());
        } catch (ConnectionException e) {
            e.printStackTrace();
        } catch (RequestTimeoutException e) {
            e.printStackTrace();
        } catch (ServiceResponseException e) {
            e.printStackTrace();
            System.out.println(e.getHttpStatusCode());
            System.out.println(e.getRequestId());
            System.out.println(e.getErrorCode());
            System.out.println(e.getErrorMsg());
        }
    }
}
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# coding: utf-8

import os
from huaweicloudsdkcore.auth.credentials import BasicCredentials
from huaweicloudsdkhss.v5.region.hss_region import HssRegion
from huaweicloudsdkcore.exceptions import exceptions
from huaweicloudsdkhss.v5 import *

if __name__ == "__main__":
    # The AK and SK used for authentication are hard-coded or stored in plaintext, which has great security risks. It is recommended that the AK and SK be stored in ciphertext in configuration files or environment variables and decrypted during use to ensure security.
    # In this example, AK and SK are stored in environment variables for authentication. Before running this example, set environment variables CLOUD_SDK_AK and CLOUD_SDK_SK in the local environment
    ak = os.environ["CLOUD_SDK_AK"]
    sk = os.environ["CLOUD_SDK_SK"]
    projectId = "{project_id}"

    credentials = BasicCredentials(ak, sk, projectId)

    client = HssClient.new_builder() \
        .with_credentials(credentials) \
        .with_region(HssRegion.value_of("<YOUR REGION>")) \
        .build()

    try:
        request = ListRaspEventsRequest()
        response = client.list_rasp_events(request)
        print(response)
    except exceptions.ClientRequestException as e:
        print(e.status_code)
        print(e.request_id)
        print(e.error_code)
        print(e.error_msg)
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
package main

import (
	"fmt"
	"github.com/huaweicloud/huaweicloud-sdk-go-v3/core/auth/basic"
    hss "github.com/huaweicloud/huaweicloud-sdk-go-v3/services/hss/v5"
	"github.com/huaweicloud/huaweicloud-sdk-go-v3/services/hss/v5/model"
    region "github.com/huaweicloud/huaweicloud-sdk-go-v3/services/hss/v5/region"
)

func main() {
    // The AK and SK used for authentication are hard-coded or stored in plaintext, which has great security risks. It is recommended that the AK and SK be stored in ciphertext in configuration files or environment variables and decrypted during use to ensure security.
    // In this example, AK and SK are stored in environment variables for authentication. Before running this example, set environment variables CLOUD_SDK_AK and CLOUD_SDK_SK in the local environment
    ak := os.Getenv("CLOUD_SDK_AK")
    sk := os.Getenv("CLOUD_SDK_SK")
    projectId := "{project_id}"

    auth := basic.NewCredentialsBuilder().
        WithAk(ak).
        WithSk(sk).
        WithProjectId(projectId).
        Build()

    client := hss.NewHssClient(
        hss.HssClientBuilder().
            WithRegion(region.ValueOf("<YOUR REGION>")).
            WithCredential(auth).
            Build())

    request := &model.ListRaspEventsRequest{}
	response, err := client.ListRaspEvents(request)
	if err == nil {
        fmt.Printf("%+v\n", response)
    } else {
        fmt.Println(err)
    }
}

For SDK sample code of more programming languages, see the Sample Code tab in API Explorer. SDK sample code can be automatically generated.

Status Codes

Status Code

Description

200

Request succeeded.

Error Codes

See Error Codes.