文档首页/ 企业主机安全 HSS/ API参考(吉隆坡区域)/ API说明/ 基线管理/ 查询指定安全配置项的检查项列表
更新时间:2025-09-23 GMT+08:00

查询指定安全配置项的检查项列表

功能介绍

查询指定安全配置项的检查项列表

URI

GET /v5/{project_id}/baseline/risk-config/{check_name}/check-rules

表1 路径参数

参数

是否必选

参数类型

描述

project_id

String

租户项目ID

check_name

String

基线名称

表2 Query参数

参数

是否必选

参数类型

描述

enterprise_project_id

String

企业项目ID,查询所有企业项目时填写:all_granted_eps

standard

String

标准类型,包含如下:

  • cn_standard : 等保合规标准

  • hw_standard : 云安全实践标准

result_type

String

结果类型,包含如下:

  • safe : 已通过

  • unhandled : 未通过,且未忽略的

  • ignored : 未通过,且已忽略的

check_rule_name

String

检查项名称,支持模糊匹配

severity

String

风险等级,包含如下:

  • Security : 安全

  • Low : 低危

  • Medium : 中危

  • High : 高危

  • Critical : 危急

host_id

String

主机ID,不赋值时,查租户所有主机

limit

Integer

每页数量

offset

Integer

偏移量:指定返回记录的开始位置,必须为数字,取值范围为大于或等于0,默认0

请求参数

表3 请求Header参数

参数

是否必选

参数类型

描述

x-auth-token

String

用户Token。通过调用IAM服务获取用户Token接口获取(响应消息头中X-Subject-Token的值)

响应参数

状态码:200

表4 响应Body参数

参数

参数类型

描述

total_num

Long

风险总数

data_list

Array of CheckRuleRiskInfoResponseInfo objects

数据列表

表5 CheckRuleRiskInfoResponseInfo

参数

参数类型

描述

severity

String

风险等级,包含如下:

  • Low : 低危

  • Medium : 中危

  • High : 高危

check_name

String

基线名称

check_type

String

基线类型

standard

String

标准类型,包含如下:

  • cn_standard : 等保合规标准

  • hw_standard : 云安全实践标准

check_rule_name

String

检查项

check_rule_id

String

检查项ID

host_num

Integer

影响服务器数量

scan_result

String

检测结果,包含如下:

  • pass

  • failed

status

String

状态,包含如下:

  • safe : 无需处理

  • ignored : 已忽略

  • unhandled : 未处理

  • fixing : 修复中

  • fix-failed : 修复失败

  • verifying : 验证中

enable_fix

Integer

是否支持一键修复,1:支持一键修复,0:不支持

enable_click

Boolean

该检查项的修复&忽略&验证按钮是否可点击,true:按钮可点击,false:按钮不可点击

rule_params

Array of CheckRuleFixParamInfo objects

支持传递参数修复的检查项可传递参数的范围

表6 CheckRuleFixParamInfo

参数

参数类型

描述

rule_param_id

Integer

检查项参数ID

rule_desc

String

检查项参数描述

default_value

Integer

检查项参数默认值

range_min

Integer

检查项参数可取最小值

range_max

Integer

检查项参数可取最大值

请求示例

查询企业项目id为xxx下的基线名称为SSH、检查标准为“云安全实践”的检查项列表。

GET https://{endpoint}/v5/{project_id}/baseline/risk-config/SSH/check-rules?standard=hw_standard&enterprise_project_id=xxx

{
  "standard" : "hw_standard"
}

响应示例

状态码:200

指定安全配置项的检查项列表

{
  "total_num" : 1,
  "data_list" : [ {
    "check_rule_id" : "1.1",
    "check_rule_name" : "Rule:Ensure that permissions on /etc/ssh/sshd_config are configured.",
    "check_type" : "SSH",
    "host_num" : 2,
    "standard" : "hw_standard",
    "scan_result" : "failed",
    "severity" : "High",
    "status" : "unhandled",
    "enable_fix" : 1,
    "enable_click" : true,
    "rule_params" : [ {
      "rule_param_id" : 1,
      "rule_desc" : "设置超时时间",
      "default_value" : 5,
      "range_min" : 1,
      "range_max" : 10
    }, {
      "rule_param_id" : 2,
      "rule_desc" : "设置重启次数",
      "default_value" : 10,
      "range_min" : 1,
      "range_max" : 20
    } ]
  } ]
}

状态码

状态码

描述

200

指定安全配置项的检查项列表

错误码

请参见错误码