Skip to content

feat: rego rules updates for aliababc cloud#68

Merged
j3ttt merged 1 commit intoantgroup:mainfrom
j3ttt:feat/add-rules
Aug 29, 2025
Merged

feat: rego rules updates for aliababc cloud#68
j3ttt merged 1 commit intoantgroup:mainfrom
j3ttt:feat/add-rules

Conversation

@j3ttt
Copy link
Collaborator

@j3ttt j3ttt commented Aug 28, 2025

Thank you for your contribution to CloudRec!

What About:

  • Server (java)
  • Collector (go)
  • Rule (opa)

Description:

新增:

  1. 阿里云-ACK-Cluster API 公网暴露
  2. 阿里云-NAT-Gateway 配置DNAT规则
  3. 阿里云-CloudFC-未开启日志
  4. 阿里云-CloudFW-云防火墙非 80/443 端口开启
  5. 阿里云-ECI-ContainerGroup 公网暴露
  6. 阿里云-ECS-自定义Image镜像开启共享
  7. 阿里云-ECS-未使用 IMDSv2
  8. 阿里云-ECS-专有网络运行 --
  9. 阿里云-ECS-数据磁盘加密未开启
  10. 阿里云-Elasticsearch-实例数据节点未开启云盘加密
  11. 阿里云-ENS-实例存在任一端口通过安全组对全网开放
  12. 阿里云-ENS NAT Gateway-实例存在任一端口通过 ACL 对全网开放
  13. 阿里云-FC-HTTP Trigger 匿名访问
  14. 阿里云-MongoDB-实例未启用审计日志
  15. 阿里云-MongoDb-专有网络运行
  16. 阿里云-OSS-OSS存储桶未使用服务端加密
  17. 阿里云-PolarDB-实例未启用审计日志
  18. 阿里云-RDS-SSL加密未开启
  19. 阿里云-Redis-专有网络运行
  20. 阿里云-SLS-Project Policy匿名访问

优化:

  1. 阿里云-ECS-实例安全组对公网开放高危端口:错误使用 object.keys 导致的误报
  2. 阿里云-ECS-实例存在任一端口通过安全组对全网开放:优化结果展示,防止 65535行结果输出到output
  3. 阿里云-ECS-安全组入向规则网段掩码设置小于等于8:优化展示结果,输出安全组id便于查找
  4. 阿里云-RAM-RAM用户权限过大:细化需要检测的权限
  5. 阿里云-SLB-非标端口对全网开放:优化了公网SLB的判定。private SLB 挂载 eip的后可以被公网访问。

删除:

  1. 阿里云-RAM-User账号从未使用:与规则 “阿里云-RAM-User 超过一年未使用” 存在重复
  2. 阿里云-RAM-无ACL User AK 超过一年未使用:与规则 “阿里云-RAM-User AK 超过一年未使用” 存在重复
  3. 阿里云-OSS-Bucket 所属账号未禁用公共访问:启用公共访问阻止不在这里判断

Summary by Sourcery

Update and extend Alibaba Cloud OPA rule set by adding support for new services, refining existing checks, and consolidating rule definitions.

New Features:

  • Add rules for ACK Cluster API server exposure and ACL enforcement
  • Introduce NAT Gateway DNAT table entry checks
  • Detect Cloud Function HTTP Trigger anonymous Internet access
  • Flag non-80/443 ports opened by Cloud Firewall
  • Enforce public exposure checks for ECI ContainerGroup and ECS custom images
  • Require ECS IMDSv2, VPC presence, and disk encryption
  • Validate audit log settings for Elasticsearch, PolarDB, RDS, MongoDB, CloudLog Service, and Cloud Firewall
  • Check anonymous access and server-side encryption for OSS buckets
  • Ensure Redis and MongoDB are in VPCs, and SLS project policies are not anonymous

Enhancements:

  • Standardize package names by stripping timestamp suffixes and unify helper functions (string-to-array, port-range splitting)
  • Fix ECS high-risk port false positives and optimize result output and minimal drop-priority detection
  • Refine RAM user/role permission analysis and SLB public/private classification
  • Enrich rule messages with detailed descriptions and contextual risk fields

Chores:

  • Remove duplicate RAM inactivity rules and redundant OSS public-access rule

@gemini-code-assist
Copy link
Contributor

Important

Installation incomplete: to start using Gemini Code Assist, please ask the organization owner(s) to visit the Gemini Code Assist Admin Console and sign the Terms of Services.

@sourcery-ai
Copy link

sourcery-ai bot commented Aug 28, 2025

Reviewer's Guide

This PR extends the Alibaba Cloud compliance suite by adding over a dozen new OPA rego rules for services like ENS, ACK Cluster, ECI, FC, NAT Gateway, SLS and Redis VPC, refactors and optimizes existing ECS, RAM and Role rules (improving port-range logic, full-access detection, message output, priority handling), standardizes package naming (removes timestamp suffixes), and removes redundant or duplicated policies.

Class diagram for new ENS NatGateway rego rule

classDiagram
class cloudrec_11000001 {
  +risk: bool
  +messages: list
  +opened_ports: set
  +port_to_ips: map
  +accept_port_to_priority: map
  +drop_port_to_priority: map
  +get_ports(entry): list
}
class input {
  +ForwardTableEntries: list
  +ENSNetwork: object
}
cloudrec_11000001 --> input: uses
Loading

Class diagram for new ENS Instance rego rule

classDiagram
class cloudrec_10900001 {
  +risk: bool
  +messages: list
  +public_ip_addresses: set
  +exist_port_exposed: set
  +unrestricted_allow_permission: set
  +restricted_deny_permission: set
}
class input {
  +Instance: object
  +SecurityGroups: list
  +EipAddress: object
}
cloudrec_10900001 --> input: uses
Loading

Class diagram for new RAM Role high risk access rego rule

classDiagram
class ram_role_with_high_risk_access_10700002 {
  +risk: bool
  +messages: list
  +exist_Policies: list
  +allow_sts: set
  +deny_sts: set
  +uncovered_by_deny: bool
}
class input {
  +Policies: list
}
ram_role_with_high_risk_access_10700002 --> input: uses
Loading

Class diagram for new ACK Cluster API exposure rego rule

classDiagram
class cloudrec_11200001 {
  +risk: bool
  +messages: list
  +has_internet_endpoint: bool
  +opened_ports: set
}
class input {
  +Cluster: object
  +LoadBalancer: list
}
cloudrec_11200001 --> input: uses
Loading

Class diagram for new ECI ContainerGroup public exposure rego rule

classDiagram
class cloudrec_11900002 {
  +risk: bool
  +messages: list
  +has_internet_ip: bool
  +security_groups_to_all: set
  +min_priority_with_drop: bool
}
class input {
  +ContainerGroup: object
  +SecurityGroup: object
}
cloudrec_11900002 --> input: uses
Loading

Class diagram for new FC HTTP Trigger anonymous access rego rule

classDiagram
class cloudrec_12000002 {
  +risk: bool
  +messages: list
  +http_trigger_internet_anonymous: bool
}
class input {
  +Triggers: list
}
cloudrec_12000002 --> input: uses
Loading

Class diagram for new NAT Gateway DNAT exposure rego rule

classDiagram
class cloudrec_12000001 {
  +risk: bool
  +messages: list
  +is_internet: bool
  +ForwardTableEntry_is_not_null: bool
}
class input {
  +NatGateway: object
  +ForwardTableEntry: object
}
cloudrec_12000001 --> input: uses
Loading

Class diagram for new SLS Project Policy anonymous access rego rule

classDiagram
class cloudrec_11900001 {
  +risk: bool
  +messages: list
  +policy: object
  +risk_statements: set
}
class input {
  +PolicyStatus: object
}
cloudrec_11900001 --> input: uses
Loading

Class diagram for new Redis VPC check rego rule

classDiagram
class redis_vpc_check_12200002 {
  +risk: bool
  +instances_without_vpc: set
  +instances_with_empty_vpc: set
}
class input {
  +DBInstanceAttribute: list
}
redis_vpc_check_12200002 --> input: uses
Loading

Class diagram for new ECS Image public share rego rule

classDiagram
class cloudrec_11800001 {
  +risk: bool
  +messages: list
  +isPublic: bool
}
class input {
  +Image: object
}
cloudrec_11800001 --> input: uses
Loading

Class diagram for new CloudFW open unstandard port rego rule

classDiagram
class cloudfw_open_unstandard_port_12200004 {
  +risk: bool
  +open_unstandard_port: set
}
class input {
  +Policy: object
}
cloudfw_open_unstandard_port_12200004 --> input: uses
Loading

Class diagram for new ECS VPC check rego rule

classDiagram
class ecs_instance_vpc_check_12200001 {
  +risk: bool
  +VpcId: string
}
class input {
  +Instance: object
}
ecs_instance_vpc_check_12200001 --> input: uses
Loading

Class diagram for new MongoDB VPC check rego rule

classDiagram
class mongodb_vpc_check_12200003 {
  +risk: bool
  +VpcId: string
}
class input {
  +DBInstanceAttribute: object
}
mongodb_vpc_check_12200003 --> input: uses
Loading

Class diagram for new ECS IMDSv2 check rego rule

classDiagram
class cloudrec_10700001 {
  +risk: bool
}
class input {
  +Instance: object
}
cloudrec_10700001 --> input: uses
Loading

Class diagram for new OSS bucket SSE algorithm check rego rule

classDiagram
class oss_sse_algorithm_check_12100001 {
  +risk: bool
  +bucket_name: string
  +sse_algorithm: string
  +acl: string
}
class input {
  +BucketInfo: object
}
oss_sse_algorithm_check_12100001 --> input: uses
Loading

Class diagram for new ECS disk encryption check rego rule

classDiagram
class ecs_disk_encryption_check_12200006 {
  +risk: bool
  +instance_id: string
}
class input {
  +Disks: list
  +Instance: object
}
ecs_disk_encryption_check_12200006 --> input: uses
Loading

Class diagram for new RDS SSL encryption check rego rule

classDiagram
class rds_ssl_encryption_12200005 {
  +risk: bool
  +DBInstanceID: string
  +SSLStatus: string
}
class input {
  +DBInstanceAttribute: object
  +DBInstanceSSL: object
}
rds_ssl_encryption_12200005 --> input: uses
Loading

Class diagram for new Elasticsearch disk encryption check rego rule

classDiagram
class elasticsearch_disk_encryption_check_12200007 {
  +risk: bool
  +instanceId: string
}
class input {
  +InstanceDetail: object
}
elasticsearch_disk_encryption_check_12200007 --> input: uses
Loading

Class diagram for new CloudFW config log check rego rule

classDiagram
class example_12300001 {
  +risk: bool
}
class input {
  +CloudfwVersionInfo: object
}
example_12300001 --> input: uses
Loading

Class diagram for new MongoDB audit log enable rego rule

classDiagram
class mongodb_enable_audit_log_9500002 {
  +risk: bool
}
class input {
  +LogAuditStatus: string
}
mongodb_enable_audit_log_9500002 --> input: uses
Loading

Class diagram for new PolarDB audit log enable rego rule

classDiagram
class polardb_enable_audit_log_9500001 {
  +risk: bool
}
class input {
  +DBClusterAuditLogCollector: object
}
polardb_enable_audit_log_9500001 --> input: uses
Loading

File-Level Changes

Change Details Files
Added new rego policies for additional Alibaba Cloud services
  • Introduce ENS NatGateway exposure rule with DNAT and ACL checks
  • Add ENS Instance exposure rule covering security group and EIP cases
  • Implement ACK Cluster API internet exposure rule with load-balancer ACL
  • Create ECI ContainerGroup public network exposure rule with drop-priority logic
  • Add FC HTTP Trigger anonymous-access detection
  • Add NAT Gateway DNAT rule exposure detection
  • Add SLS project policy anonymous access rule
  • Add Redis VPC connectivity check rule
  • Add ECS Image public share rule
  • Add various data-encryption and audit-logging checks (ECS disks, RDS SSL, ES disk encryption, Cloudfw log status)
rules/ALI_CLOUD/ALI_CLOUD_ENS NatGateway_*/policy.rego
rules/ALI_CLOUD/ALI_CLOUD_ENS Instance_*/policy.rego
rules/ALI_CLOUD/ALI_CLOUD_ACK Cluster_*/policy.rego
rules/ALI_CLOUD/ALI_CLOUD_ECI ContainerGroup_*/policy.rego
rules/ALI_CLOUD/ALI_CLOUD_FC_*/policy.rego
rules/ALI_CLOUD/ALI_CLOUD_NAT_*/policy.rego
rules/ALI_CLOUD/ALI_CLOUD_SLS_*/policy.rego
rules/ALI_CLOUD/ALI_CLOUD_Redis_202508221135_782313/policy.rego
rules/ALI_CLOUD/ALI_CLOUD_ECS Image_*/policy.rego
rules/ALI_CLOUD/**_202508**/policy.rego
Refactored and optimized existing ECS, RAM, Role and SLB rules
  • Replaced object.keys range with explicit port comparisons for ECS high-risk ports
  • Unified helper functions (explode_port_range, get_str_to_array) and enriched message outputs
  • Enhanced RAM/Role full-access detection by parsing policy statements and checking deny coverage
  • Optimized SLB and ALB internet detection (is_internet flag, EIP fallback)
  • Improved priority extraction logic to prevent excessive result output
rules/ALI_CLOUD/ALI_CLOUD_ECS_202501081111_432000/policy.rego
rules/ALI_CLOUD/ALI_CLOUD_ECS_202503071706_485785/policy.rego
rules/ALI_CLOUD/ALI_CLOUD_RAMUser_*/policy.rego
rules/ALI_CLOUD/ALI_CLOUD_RAM Role_*/policy.rego
rules/ALI_CLOUD/ALI_CLOUD_SLB_*/policy.rego
rules/ALI_CLOUD/ALI_CLOUD_ALB_*/policy.rego
Standardized package naming and removed redundant policies
  • Dropped timestamp suffixes from rule package names for consistency
  • Deleted duplicate RAM user inactivity and OSS public access rules
  • Cleaned up stale input.json and metadata.json files associated with removed policies
rules/ALI_CLOUD/*_*/policy.rego (package renaming)
rules/ALI_CLOUD/ALI_CLOUD_OSS_202501131436_812211/*
rules/ALI_CLOUD/ALI_CLOUD_RAM User_202503041521_446436/*
rules/ALI_CLOUD/ALI_CLOUD_RAMUser_202502061738_161373/*
Unified and enriched messages output across rules
  • Added messages block with structured description and contextual fields in many rules
  • Standardized the shape of output messages for risk statements, access keys lists, security group details
rules/ALI_CLOUD/**/policy.rego (multiple existing and new rules)

Tips and commands

Interacting with Sourcery

  • Trigger a new review: Comment @sourcery-ai review on the pull request.
  • Continue discussions: Reply directly to Sourcery's review comments.
  • Generate a GitHub issue from a review comment: Ask Sourcery to create an
    issue from a review comment by replying to it. You can also reply to a
    review comment with @sourcery-ai issue to create an issue from it.
  • Generate a pull request title: Write @sourcery-ai anywhere in the pull
    request title to generate a title at any time. You can also comment
    @sourcery-ai title on the pull request to (re-)generate the title at any time.
  • Generate a pull request summary: Write @sourcery-ai summary anywhere in
    the pull request body to generate a PR summary at any time exactly where you
    want it. You can also comment @sourcery-ai summary on the pull request to
    (re-)generate the summary at any time.
  • Generate reviewer's guide: Comment @sourcery-ai guide on the pull
    request to (re-)generate the reviewer's guide at any time.
  • Resolve all Sourcery comments: Comment @sourcery-ai resolve on the
    pull request to resolve all Sourcery comments. Useful if you've already
    addressed all the comments and don't want to see them anymore.
  • Dismiss all Sourcery reviews: Comment @sourcery-ai dismiss on the pull
    request to dismiss all existing Sourcery reviews. Especially useful if you
    want to start fresh with a new review - don't forget to comment
    @sourcery-ai review to trigger a new review!

Customizing Your Experience

Access your dashboard to:

  • Enable or disable review features such as the Sourcery-generated pull request
    summary, the reviewer's guide, and others.
  • Change the review language.
  • Add, remove or edit custom review instructions.
  • Adjust other review settings.

Getting Help

Copy link

@sourcery-ai sourcery-ai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hey there - I've reviewed your changes - here's some feedback:

Blocking issues:

  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)
  • Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (link)

General comments:

  • Consider refactoring repeated helper functions (e.g. get_str_to_array, full access logic) into a shared module to reduce duplication and ease maintenance.
  • There are typos and inconsistent field names in message outputs (e.g. “Decription” vs “Description”, “RiskStatment” vs “RiskStatement”)—please unify naming for clarity.
  • Some variables (like read_only_actions) are never used; cleaning up unused code and enforcing consistent naming conventions across packages will improve readability.
Prompt for AI Agents
Please address the comments from this code review:
## Overall Comments
- Consider refactoring repeated helper functions (e.g. get_str_to_array, full access logic) into a shared module to reduce duplication and ease maintenance.
- There are typos and inconsistent field names in message outputs (e.g. “Decription” vs “Description”, “RiskStatment” vs “RiskStatement”)—please unify naming for clarity.
- Some variables (like read_only_actions) are never used; cleaning up unused code and enforcing consistent naming conventions across packages will improve readability.

## Individual Comments

### Comment 1
<location> `rules/ALI_CLOUD/ALI_CLOUD_Cloudfw_202508221407_633031/policy.rego:11` </location>
<code_context>
+
+standard_ports := {"80","443"}
+AclUuid := input.Policy.AclUuid
+open_unstandard_port contains port if {
+    input.Policy.AclAction == "accept"
+    input.Policy.Proto != "ICMP"
+    port := input.Policy.DestPort
+    not port in standard_ports
+}
+
</code_context>

<issue_to_address>
Standard ports are defined as strings, but port may be an integer.

Normalize port to a string before checking membership in standard_ports to ensure correct comparison.
</issue_to_address>

### Comment 2
<location> `rules/ALI_CLOUD/ALI_CLOUD_SLS_202508181708_1003938/policy.rego:17` </location>
<code_context>
+	}
+}
+
+policy := json.unmarshal(input.PolicyStatus.body)
+risk_statements contains statement if {
+	some statement in policy
</code_context>

<issue_to_address>
No error handling for json.unmarshal failures.

Add error handling to manage cases where input.PolicyStatus.body is not valid JSON, ensuring the function does not fail unexpectedly.
</issue_to_address>

## Security Issues

### Issue 1
<location> `rules/ALI_CLOUD/ALI_CLOUD_ACK Cluster_202507301744_640069/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 2
<location> `rules/ALI_CLOUD/ALI_CLOUD_ACK Cluster_202507301744_640069/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 3
<location> `rules/ALI_CLOUD/ALI_CLOUD_AnalyticDB PostgreSQL_202501081111_294684/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 4
<location> `rules/ALI_CLOUD/ALI_CLOUD_AnalyticDB PostgreSQL_202501081111_294684/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 5
<location> `rules/ALI_CLOUD/ALI_CLOUD_ACK Cluster_202504011757_921292/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 6
<location> `rules/ALI_CLOUD/ALI_CLOUD_NAS_202503062119_948181/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 7
<location> `rules/ALI_CLOUD/ALI_CLOUD_NAS_202503062119_948181/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 8
<location> `rules/ALI_CLOUD/ALI_CLOUD_NAS_202503062114_370131/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 9
<location> `rules/ALI_CLOUD/ALI_CLOUD_NAT_202508191105_542880/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 10
<location> `rules/ALI_CLOUD/ALI_CLOUD_NAS_202501081111_655917/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 11
<location> `rules/ALI_CLOUD/ALI_CLOUD_NAS_202501081111_655917/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 12
<location> `rules/ALI_CLOUD/ALI_CLOUD_ALB_202501081111_769125/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 13
<location> `rules/ALI_CLOUD/ALI_CLOUD_ALB_202501081111_769125/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 14
<location> `rules/ALI_CLOUD/ALI_CLOUD_ALB_202501081111_769125/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 15
<location> `rules/ALI_CLOUD/ALI_CLOUD_ALB_202501081111_769125/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 16
<location> `rules/ALI_CLOUD/ALI_CLOUD_ALB_202501081111_769125/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 17
<location> `rules/ALI_CLOUD/ALI_CLOUD_NLB_202501081111_1042010/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 18
<location> `rules/ALI_CLOUD/ALI_CLOUD_NLB_202501081111_1042010/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 19
<location> `rules/ALI_CLOUD/ALI_CLOUD_NLB_202501081111_1042010/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 20
<location> `rules/ALI_CLOUD/ALI_CLOUD_NLB_202501081111_1042010/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 21
<location> `rules/ALI_CLOUD/ALI_CLOUD_NLB_202501081111_1042010/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 22
<location> `rules/ALI_CLOUD/ALI_CLOUD_NLB_202501081111_1042010/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 23
<location> `rules/ALI_CLOUD/ALI_CLOUD_NLB_202501081111_1042010/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 24
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECI ContainerGroup_202508182013_976553/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 25
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECI ContainerGroup_202508182013_976553/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 26
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECI ContainerGroup_202508182013_976553/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 27
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECI ContainerGroup_202508182013_976553/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 28
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECI ContainerGroup_202508182013_976553/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 29
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECI ContainerGroup_202508182013_976553/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 30
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECI ContainerGroup_202508182013_976553/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 31
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECI ContainerGroup_202508182013_976553/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 32
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECI ContainerGroup_202508182013_976553/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 33
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECI ContainerGroup_202508182013_976553/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 34
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECI ContainerGroup_202508182013_976553/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 35
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202508221039_1003499/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 36
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202508221039_1003499/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 37
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202508221039_1003499/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 38
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202508221039_1003499/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 39
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202508221039_1003499/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 40
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202508221039_1003499/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 41
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202508221039_1003499/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 42
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202508221039_1003499/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 43
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202508221039_1003499/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 44
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202508221039_1003499/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 45
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202508221039_1003499/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 46
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202508221039_1003499/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 47
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202508221039_1003499/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 48
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202508221039_1003499/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 49
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202508221039_1003499/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 50
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202508221039_1003499/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 51
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202508221039_1003499/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 52
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202508221039_1003499/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 53
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202508221039_1003499/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 54
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202508221039_1003499/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 55
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202508221039_1003499/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 56
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202508221039_1003499/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 57
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202508221039_1003499/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 58
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202508221039_1003499/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 59
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202508221039_1003499/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 60
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202508221039_1003499/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 61
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202508221039_1003499/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 62
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202508221039_1003499/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 63
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202508221039_1003499/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 64
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202508221039_1003499/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 65
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202508221039_1003499/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 66
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202503131624_634803/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 67
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202503131624_634803/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 68
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202503131624_634803/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 69
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202503131624_634803/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 70
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202503131624_634803/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 71
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202503131624_634803/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 72
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202503131624_634803/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 73
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202503131624_634803/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 74
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202503131624_634803/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 75
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202503131624_634803/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 76
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202503131624_634803/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 77
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202503131624_634803/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 78
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202503131624_634803/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 79
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202503131624_634803/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 80
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202503131624_634803/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 81
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202503131624_634803/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 82
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202503131624_634803/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 83
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202503131624_634803/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 84
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202503131624_634803/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 85
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202503131624_634803/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 86
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202503131624_634803/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 87
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202503131624_634803/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 88
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202503131624_634803/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 89
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202503131624_634803/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 90
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202503131624_634803/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 91
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202503131624_634803/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 92
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202503131624_634803/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 93
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202503131624_634803/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 94
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202503131624_634803/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 95
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202503131624_634803/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 96
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202503131624_634803/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 97
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202503131624_634803/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 98
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202503131624_634803/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 99
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202501081111_432000/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 100
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202501081111_432000/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 101
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202501081111_432000/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 102
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202501081111_432000/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 103
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202501081111_432000/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 104
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202501081111_432000/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 105
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202501081111_432000/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 106
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202501081111_432000/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 107
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202501081111_432000/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 108
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202501081111_432000/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 109
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202501081111_432000/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 110
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202501081111_432000/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 111
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202501081111_432000/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 112
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202501081111_432000/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 113
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202501081111_432000/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 114
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202501081111_432000/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 115
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202501081111_432000/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 116
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202501081111_432000/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 117
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202501081111_432000/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 118
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202501081111_432000/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 119
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202501081111_432000/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 120
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202501081111_432000/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 121
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202501081111_432000/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 122
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202501081111_432000/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 123
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202501081111_432000/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 124
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202501081111_432000/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 125
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202501081111_432000/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 126
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202501081111_432000/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 127
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202501081111_432000/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 128
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202501081111_432000/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 129
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202501081111_432000/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 130
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202501081111_432000/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 131
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202501081111_432000/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 132
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202501081111_432000/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 133
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202501081111_432000/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 134
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202501081111_432000/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 135
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202507101730_155868/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 136
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202507101730_155868/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 137
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202507101730_155868/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 138
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202507101730_155868/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 139
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202507101730_155868/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 140
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202507101730_155868/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 141
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202507101730_155868/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 142
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202507101730_155868/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 143
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202507101730_155868/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 144
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202507101730_155868/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 145
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202507101730_155868/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 146
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202507101730_155868/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 147
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202507101730_155868/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 148
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202507101730_155868/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 149
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202507101730_155868/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 150
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202507101730_155868/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 151
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202507101730_155868/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 152
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202507101730_155868/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 153
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202507101730_155868/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 154
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202507101730_155868/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 155
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202507101730_155868/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 156
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202507101730_155868/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 157
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202507101730_155868/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 158
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202507101730_155868/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 159
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202507101730_155868/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 160
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202507101730_155868/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 161
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202507101730_155868/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 162
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202507101730_155868/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 163
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202507101730_155868/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 164
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202507101730_155868/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 165
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202507101730_155868/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 166
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202507101730_155868/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 167
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202507101730_155868/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 168
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202507101730_155868/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 169
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202503071738_195973/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 170
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202503071738_195973/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 171
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202503071738_195973/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 172
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202503071738_195973/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 173
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202503071738_195973/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 174
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202503071738_195973/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 175
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202503071738_195973/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 176
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202503071738_195973/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 177
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202503071738_195973/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 178
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202503071738_195973/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 179
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202503071738_195973/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 180
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202503071738_195973/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 181
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202503071738_195973/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 182
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202503071738_195973/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 183
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202503071738_195973/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 184
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202503071738_195973/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 185
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202503071738_195973/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 186
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202503071738_195973/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 187
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202503071738_195973/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 188
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202503071738_195973/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 189
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202503071738_195973/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 190
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202503071738_195973/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 191
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202503071738_195973/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 192
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202503071738_195973/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 193
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202503071738_195973/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 194
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202503071738_195973/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 195
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202503071738_195973/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 196
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202503071738_195973/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 197
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202503071738_195973/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 198
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202503071738_195973/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 199
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202503071738_195973/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 200
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202503071738_195973/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 201
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202503071738_195973/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 202
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202501081111_712494/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 203
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202501081111_712494/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 204
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202501081111_712494/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 205
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202501081111_712494/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 206
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202501081111_712494/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 207
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202501081111_712494/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 208
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202501081111_712494/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 209
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202501081111_712494/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 210
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202501081111_712494/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 211
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202501081111_712494/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 212
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202501081111_712494/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 213
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202501081111_712494/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 214
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202501081111_712494/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 215
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202501081111_712494/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 216
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202501081111_712494/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 217
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202501081111_712494/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 218
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202501081111_712494/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 219
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202501081111_712494/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 220
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202501081111_712494/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 221
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202501081111_712494/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 222
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202501081111_712494/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 223
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202501081111_712494/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 224
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202501081111_712494/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 225
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202501081111_712494/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 226
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202501081111_712494/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 227
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202501081111_712494/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 228
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202501081111_712494/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 229
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202501081111_712494/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 230
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202501081111_712494/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 231
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202501081111_712494/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 232
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202501081111_712494/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 233
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202501081111_712494/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 234
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202501081111_712494/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 235
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202508221532_537058/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 236
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202508221532_537058/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 237
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202508221532_537058/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 238
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202508221532_537058/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 239
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202508221532_537058/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 240
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202508221532_537058/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 241
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202508221532_537058/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 242
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202508221532_537058/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 243
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202508221532_537058/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 244
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202508221532_537058/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 245
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202508221532_537058/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 246
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202508221532_537058/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 247
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202508221532_537058/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 248
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202508221532_537058/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 249
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202508221532_537058/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 250
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202508221532_537058/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 251
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202508221532_537058/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 252
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202508221532_537058/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 253
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202508221532_537058/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 254
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202508221532_537058/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 255
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202508221532_537058/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 256
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202508221532_537058/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 257
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202508221532_537058/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 258
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202508221532_537058/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 259
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202508221532_537058/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 260
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202508221532_537058/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 261
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202508221532_537058/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 262
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202508221532_537058/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 263
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202508221532_537058/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 264
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202508221532_537058/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 265
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202508221532_537058/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 266
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202508221532_537058/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 267
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202508221532_537058/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 268
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202508221532_537058/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 269
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202503071706_485785/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 270
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202503071706_485785/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 271
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202503071706_485785/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 272
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202503071706_485785/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 273
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202503071706_485785/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 274
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202503071706_485785/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 275
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202503071706_485785/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 276
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202503071706_485785/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 277
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202503071706_485785/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 278
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202503071706_485785/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 279
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202503071706_485785/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 280
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202503071706_485785/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 281
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202503071706_485785/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 282
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202503071706_485785/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 283
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202503071706_485785/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 284
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202503071706_485785/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 285
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202503071706_485785/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 286
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202503071706_485785/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 287
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202503071706_485785/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 288
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202503071706_485785/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 289
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202503071706_485785/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 290
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202503071706_485785/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 291
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202503071706_485785/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 292
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202503071706_485785/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 293
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202503071706_485785/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 294
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202503071706_485785/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 295
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202503071706_485785/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 296
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202503071706_485785/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 297
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202503071706_485785/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 298
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202503071706_485785/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 299
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202503071706_485785/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 300
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202503071706_485785/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 301
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202503071706_485785/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 302
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202501081111_949294/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 303
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202501081111_949294/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 304
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202501081111_949294/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 305
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202501081111_949294/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 306
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202501081111_949294/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 307
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202501081111_949294/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 308
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202501081111_949294/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 309
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202501081111_949294/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 310
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202501081111_949294/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 311
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202501081111_949294/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 312
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202501081111_949294/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 313
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202501081111_949294/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 314
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202501081111_949294/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 315
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202501081111_949294/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 316
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202501081111_949294/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 317
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202501081111_949294/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 318
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202501081111_949294/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 319
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202501081111_949294/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 320
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202501081111_949294/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 321
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202501081111_949294/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 322
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202501081111_949294/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 323
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202501081111_949294/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 324
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202501081111_949294/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 325
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202501081111_949294/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 326
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202501081111_949294/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 327
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202501081111_949294/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 328
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202501081111_949294/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 329
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202501081111_949294/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 330
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202501081111_949294/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 331
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202501081111_949294/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 332
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202501081111_949294/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 333
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202501081111_949294/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

### Issue 334
<location> `rules/ALI_CLOUD/ALI_CLOUD_ECS_202501081111_949294/input.json:1` </location>

<issue_to_address>
**security (generic-api-key):** Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

*Source: gitleaks*
</issue_to_address>

Sourcery is free for open source - if you like our reviews please consider sharing them ✨
Help me be more useful! Please click 👍 or 👎 on each comment and I'll use the feedback to improve your reviews.

Comment on lines +11 to +15
open_unstandard_port contains port if {
input.Policy.AclAction == "accept"
input.Policy.Proto != "ICMP"
port := input.Policy.DestPort
not port in standard_ports
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

issue (bug_risk): Standard ports are defined as strings, but port may be an integer.

Normalize port to a string before checking membership in standard_ports to ensure correct comparison.

}
}

policy := json.unmarshal(input.PolicyStatus.body)
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

suggestion: No error handling for json.unmarshal failures.

Add error handling to manage cases where input.PolicyStatus.body is not valid JSON, ensuring the function does not fail unexpectedly.

@@ -0,0 +1 @@
{"AssociatedResource":[{"resource_info":"","cluster_id":"NLTq8Rj7yHy4AQsCUJF5VeezutqImbcUt","instance_id":"PJBhQuJZngZyujxDBcGdgbM","creator_type":"Afny","created":"dXJEvHtRHDzgxjOF5sN9QXJoq","delete_behavior":{"delete_by_default":false,"changeable":false},"resource_type":"BHjNa9rifMzuFAt3DYLiUc1JgR","state":"","auto_create":0},{"resource_info":"","cluster_id":"s1t6gh1SzKphbdxOB6G059R7425cmoTik","instance_id":"ENonvzAW00TMvLswvAKAbGQDc","creator_type":"aA8Z","created":"ZYl3k6KZXwG67bfoKNSXzAcTv","delete_behavior":{"delete_by_default":false,"changeable":false},"resource_type":"Q9MnvJSq3QsuxsiW","state":"","auto_create":0},{"resource_info":"8SrtJhxFAZNCcKJqDyw95Q4rmjtCPBSPjCNgJnpgsTwr9pp1i7Q3lasbPmmqZsNHwmZKUecEjTCVROnReQEovgZPspro46eJLjmmfesigoO6xSmx0VLLEseVNbtkBq0PVEFmAmYyeUSsQOdvdu9aAjKwD5XHHo3BCtXezcT1Yujwb8SydUn185g1C2WONGiUEX4ttNPfEavdiBRPxMjafWZdFyGfZl951LpC4h6p3cAxNG7LQyo95HZb2","cluster_id":"FKror4SGJStmULITBAaO49hZ14iUwnLiD","instance_id":"fWqRmdQj2WI2NAS1hb4C3OS5L9kmL936sdp3tSU3Ar4BG7l0Qd5S1rh2N","creator_type":"1GR4qF","created":"TUyprp38IldfqqhcvKABd3OjX","delete_behavior":{"delete_by_default":true,"changeable":true},"resource_type":"9LNCclyvMoZD6BigR","state":"Ae0j0HSDbsEqJ5B","auto_create":1},{"resource_info":"","cluster_id":"RvmMQJNxtKfa6UZvYh801Jiv5bAP9SxsI","instance_id":"","creator_type":"7qq1rn","created":"Vb979xmQDk7Q3kPlZy6R20R4b","delete_behavior":{"delete_by_default":true,"changeable":true},"resource_type":"5fM","state":"","auto_create":1},{"resource_info":"","cluster_id":"S15DTVoCYBUQvj3Q5jJOmf9UVt2lSNGVe","instance_id":"2IhLFKITuAHShqBg2ptM5Ms","creator_type":"xw5f","created":"jhYSDOyzUyEGLywXhoVUPJN0V","delete_behavior":{"delete_by_default":false,"changeable":false},"resource_type":"jV","state":"","auto_create":0},{"resource_info":"","cluster_id":"9o9yngJL02RyxxzxvhwkU6BVxEH9laxTg","instance_id":"cFtCf9OKJQCzKoY4PYowxWlb","creator_type":"YbXbty","created":"cGJmWnn5jBDOdeffDcxOHvhsX","delete_behavior":{"delete_by_default":true,"changeable":true},"resource_type":"Jzn","state":"","auto_create":1},{"resource_info":"","cluster_id":"DbUjM5v4HJu5WcBEQjhFjhXaVvpNsqFmo","instance_id":"4EguNWw0FXAyB7Cw37q8NYn8o","creator_type":"4RqF","created":"VP8vfmtHuVM74bsBMI8OBn26D","delete_behavior":{"delete_by_default":false,"changeable":false},"resource_type":"bRu","state":"","auto_create":0},{"resource_info":"","cluster_id":"3mXC3cqqTJ24fwOqjDx4ll0tTmJO6GDBf","instance_id":"VOTuJ5mEMpABYuxvN23Cm3ufs","creator_type":"NBjm","created":"CVqc9DaaRxY07Mrof12yl42QB","delete_behavior":{"delete_by_default":false,"changeable":false},"resource_type":"BHePzHm","state":"","auto_create":0},{"resource_info":"","cluster_id":"lSnK2i0mr6uyCPXAIhphFxpEQ17PVf1da","instance_id":"VZuMD9DTPWo5b3wLcmp2FuAI4","creator_type":"evLV","created":"RXZVwZreh9PFZufe5mASaUzbA","delete_behavior":{"delete_by_default":false,"changeable":false},"resource_type":"CjDz3ud","state":"","auto_create":0},{"resource_info":"","cluster_id":"fxZmw3TTF9oz8GGdJkY4rs9CfANEzp2Lo","extra_info":{"type":"DFsKYagX"},"instance_id":"ruyQxF0ucPUsPqZWNCNLZzdZoEuIWO08AN5L2APf0","associated_object":{"kind":"sI4YTU3li","name":"5IutfwBJbkyjFjbcmtL9QKp6I","namespace":"ibRE6SMrvTB"},"creator_type":"IqReG","created":"CnpPUGRkdxFfUGnLsDu7","delete_behavior":{"delete_by_default":false,"changeable":true},"resource_type":"HPIKwGqU","state":"","auto_create":1}],"Cluster":{"resource_group_id":"z8z13yd60KKNGtB8TN","proxy_mode":"WuuS","vpc_id":"07AFmL2JoeGryxYRFhz6NmvMP","timezone":"CyVo6wgpKM2nW","maintenance_window":{"weekly_period":"","enable":false},"network_mode":"MR5","security_group_id":"PuROR4Q0ajAL8vAy0h39RtF","container_cidr":"R9jVJuEeuwOl","cluster_type":"IB7Adial1A5nwLUiq","ip_stack":"WgG1","service_cidr":"HA7RPTXmuzCy","zone_id":"v7yUAFe97p9TD","cluster_id":"ggBGVVkyQSRxbMugpZqLk4NXyxryFQNSR","external_loadbalancer_id":"iCkOTqg3tFhTizlBEq5nbucm","meta_data":"vlsozoe6zCUsabej3lYmCaDYZywBtEWbvPhzOljV0IrPC4DiKOOmUnc6NKbJ4YuXnB2xZeTD28S9x9iM2ZgztirYQXKLSsbeLOVNvmNsuP6ZvMrffzT0badBUVPN9udtSbnKZR19AR0YxMSRLGusPsOIFmUaxoYKQg3AXp21Cm5Ydpl7haGE7PMZq1e2kdkSEbDj0yUvJi9rceKeZUJQOuhmxC54CWtxETewRfCrVGFHu5fQn3lPCIQuRBVHGXZHj0sJzzySq8wXBViyz9xQHRDJCletYvPFhCK6o3uKcALutRSs5hTJPZncvvotEtJ61ef1zcW7J5az6OFmMKLniiQfbA6JtKRpektEKhnSvqg24VNrklCkHzWKODEkAsFbpUbo6X2tWw3T0IE4ZlNnylrGWTVorIszMtBKNoWiEdPGmhn5fmyBC05wr3F5Ai1R84u757QSSbudWU7ofYfajF9UEPFiwfHKBZqydC8WNvNWPBfddqiZQX5arQX9gjXB2xJmuSbrDquoV2Itjxm94Bsy6m0htlBWpuSXhyULohJPO8qEVTTqcevXDtMsAxUzU71p23ZYcPFO9wlBzAIF4cvpCZRSVGQBuIRS4RRh1zxWQsa83G9YKQSK4uOSwP7EZzruaJxyXwcm5fKzq1iHOq96CFmczyKirbbMmwCHL1xGQ4QeTzWADazVurpNs3zVE16yUswilPqC7xiDa2IuVLEKuBbUPHV4Z1Kzhf602zkCut6ZuB9cqK6wWbr8TCVvkdfKU9Ct6N8bEG00f43r5my7dCTENXmhH4IAC4vB9LUplQZTCuQEtxsZszNczQQCwXD5qqxXBnbaYNDMKMWFYuJ0pjzeMV79XErtPdZyK7HjKKZEaQCWsmIVY5VrNXPNLlGBq3T4s79ogQ4XpKlvlndhBQFIF1O1sfWsoj5N3fGMBSFP5DbdEgcGBk9z5wQfOcKbhDcgnHkwVKCxBWE5j6XNYs3sTLpv7rkRclZK1SQQgqb0n3cGaCnr68AUx61ahdUo2fEykBB0Di2m2PYArIZSbHSPFIl8eWTTIniJMix6kyFAGRSU1y3xN30UZHt6hzvkZX5mYSpHn2F4345HxEvqc9vXYAKTBKWgEqfvzoQ8eFrGqp0tiwzrVCC02ths9YDRVMdEa3U4qv7JKkmmgLqNl6Q7nh81AaGk0xVakHJnGcLxpK4XVGvdJGji52IJKiGN7DHyMq92eyuxgZmlLbBw2D9coifJ5HNlgnkbjEALTNEVSg73UFhWIqbwE5rsjkO7ufOZj6CB8kLenRMZ4CBjB07XmCSJdI249ESv4WYJFfKBOYm4h0jGLxcS7uJZMU6nBRZt5pBHVXpAvlUgjyY8jy4HvFlAnFJCJsp62qcElDL1fw8DOpGTGnB1zflvCpm3EnZ07RnBpB3ZZkMivcts0MruMR1MSjb6nvx5N5l2nHdWyRDywUqsO7JNavPv5fpekoeukFKSpcIa2jXhMcOXoeasfXghkcHpt9b02LiYOIWcXWmn4dR0Rq6yp5GwG8pMctQqeNZwKukeDx96leJ4BRLjNiQeZIDcKTv7eXezwy8JWHavk56mLu6knUaROxSvIxCY0DmBUH4IBn3XcsWABp5syB4wLay8kg9vAWA9xhRlPSTa63LdcMiAdS5KaLkYNbuXRmOYXCjnbmUpzufRWgolEO2sDaVRYy2tGkxKsBOtq9NmzILsXaX5tE3nr1piGwGDRpQr0b0lYvU5sddiUkFQaW5TeO8VKKRUR2WM5Hci5XeUenhLlsXoSpeIXyu4AQMV57iacHTKcw7zCDHYf37QqUuLZ5gaWdtmoWurscwxsfERihhFtpE6vadxuZjB97M88AVto2PeZSkavrS2bj6luECRZRu6MOAx4ubUrXMRAoDZKADs0dGL2KrVkO78X96HLYXRym2feExdVwr7BDr7ZEBgEvtPAk4tWdwUuHTULAEjJoTgnxAMoAwhX1a45wumQGxE2JUDVF4GYziGVReYfdTTqYNSp0rLwd1rW2gS0C8nN4UGt7fv4xUQuZdTfk9kbdjfWzCP7hRmPyyLfupVCjI0OI81bop0bfM1RJTUQ7RqLjjnEOI7k0p7MVE7yypR2WSNjUO9KS05fR7yS6SvJrRyuU3pPWeOi61LTElukVxT9jxCQUj2kVvmwHCZvedbXd3vBuLr9Zj5endnkHzrjP5nR1b4pbfFZluT8qOAfQwYfSxjxUDgSn6VETpuEt9cSr5OaPOPjfoGNic6OES7HCqg9fily3MdEspcujTVwdpvc8a0y38iA9rNpljHOvNlDBXeQepGAD6RbbTTJ1l5o3q0iVBuUCk2Q53gr1ukqSfim58NTQlFzX3KTCLT6ziQLVeVGNzxDcahAfz0KKPDW3zOoBCgArSItTmCyObT7IUXH7TRE6mW44TvPp983SkK34QR9DV2JKa68e5roQMlXmq3Vm4oNJJHlh5DSYzVwDD6yu0yMy7Jssihrk1YH312gCDhw9QuyH6tzH0MMa8V7I2mSs5WhND0NawVMTF4nxlYIIE5YOD9s6LNJZJaxjMiulOqCxBpWCzb5lINEjdwIZgxKBXlJSPaGf6OnBQuJuHzPJZphyg9JVa2mN5Ll7xHp9VCeON46OxNU4YQctN1qROtG1TYEDVKBVI09WCTCfNz52LMDGkQNuCMa21ZlnERi3uQSdNxvD9MR30IDsTScTES7B2WXpiIEVdRRYvd3OrB8xV9esmPBUYotmgOXKg8mKuJ87n7PS8uGVPpSLdgQAkM83dc0ZXNhBISqjpPWgcsLLMaZjpcDvd39hhy4qwp6v9BiBFWH7UCaNsJTFy0Ral3nSoCLFX5jP7xZ","vswitch_id":"nTxNskTmxOW6J2a69EjSCzZfn","state":"CUFvWSB","vswitch_ids":["lgWsdbiKgW4A5DUwcTb8G5EOp","mWOO5kOTUmLEo5B5QryRHLPoy"],"init_version":"x7s3nEeOYJE5js9","created":"bbCjKK5C2cHccnx7uDGHa9PUO","deletion_protection":true,"profile":"zdmNqj3","subnet_cidr":"zBV1AyFHGrL5","master_url":"mwNgpwH15C8ZyKgAICiNvVg6jNLMCHrfDGTVtcMQatx6GLwJoJw2wqqU0hHFos3DBH4QGVuszHI1dZE3LofKm","region_id":"rn6aImqicJ9U","current_version":"xouPhSO6Hbiwcpx","tags":[{"value":"Ks9","key":"xZwqQv4"},{"value":"pHsJkPZE5VIQ83Gm","key":"ttJ"},{"value":"HpQx","key":"wXZ"},{"value":"ZIDISAzmrDVuZaGw","key":"S3lRkTnkFhUyWWwy8"},{"value":"txXnONI7YP2rFco","key":"2o8zZoJd"},{"value":"VQyHNdKsj7idgFK2N","key":"i6F"},{"value":"GDV6LjzS97CaM","key":"E7B"},{"value":"WhjrXokoRZ2lDz9A","key":"IGMNnSbg"},{"value":"ttgTTodsDk86KJ0irFRk3QMoZp51q4Snj","key":"wkDhSCYUf0e9PK"}],"cluster_spec":"l2lB55Gzqpovu","size":2,"name":"malbQAUeqwfkfuKIezX6Zu","operation_policy":{},"updated":"iUOB1ENN9urbtQ7f5ocGFmwQf"}} No newline at end of file
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

security (generic-api-key): Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

Source: gitleaks

@@ -0,0 +1 @@
{"AssociatedResource":[{"resource_info":"","cluster_id":"NLTq8Rj7yHy4AQsCUJF5VeezutqImbcUt","instance_id":"PJBhQuJZngZyujxDBcGdgbM","creator_type":"Afny","created":"dXJEvHtRHDzgxjOF5sN9QXJoq","delete_behavior":{"delete_by_default":false,"changeable":false},"resource_type":"BHjNa9rifMzuFAt3DYLiUc1JgR","state":"","auto_create":0},{"resource_info":"","cluster_id":"s1t6gh1SzKphbdxOB6G059R7425cmoTik","instance_id":"ENonvzAW00TMvLswvAKAbGQDc","creator_type":"aA8Z","created":"ZYl3k6KZXwG67bfoKNSXzAcTv","delete_behavior":{"delete_by_default":false,"changeable":false},"resource_type":"Q9MnvJSq3QsuxsiW","state":"","auto_create":0},{"resource_info":"8SrtJhxFAZNCcKJqDyw95Q4rmjtCPBSPjCNgJnpgsTwr9pp1i7Q3lasbPmmqZsNHwmZKUecEjTCVROnReQEovgZPspro46eJLjmmfesigoO6xSmx0VLLEseVNbtkBq0PVEFmAmYyeUSsQOdvdu9aAjKwD5XHHo3BCtXezcT1Yujwb8SydUn185g1C2WONGiUEX4ttNPfEavdiBRPxMjafWZdFyGfZl951LpC4h6p3cAxNG7LQyo95HZb2","cluster_id":"FKror4SGJStmULITBAaO49hZ14iUwnLiD","instance_id":"fWqRmdQj2WI2NAS1hb4C3OS5L9kmL936sdp3tSU3Ar4BG7l0Qd5S1rh2N","creator_type":"1GR4qF","created":"TUyprp38IldfqqhcvKABd3OjX","delete_behavior":{"delete_by_default":true,"changeable":true},"resource_type":"9LNCclyvMoZD6BigR","state":"Ae0j0HSDbsEqJ5B","auto_create":1},{"resource_info":"","cluster_id":"RvmMQJNxtKfa6UZvYh801Jiv5bAP9SxsI","instance_id":"","creator_type":"7qq1rn","created":"Vb979xmQDk7Q3kPlZy6R20R4b","delete_behavior":{"delete_by_default":true,"changeable":true},"resource_type":"5fM","state":"","auto_create":1},{"resource_info":"","cluster_id":"S15DTVoCYBUQvj3Q5jJOmf9UVt2lSNGVe","instance_id":"2IhLFKITuAHShqBg2ptM5Ms","creator_type":"xw5f","created":"jhYSDOyzUyEGLywXhoVUPJN0V","delete_behavior":{"delete_by_default":false,"changeable":false},"resource_type":"jV","state":"","auto_create":0},{"resource_info":"","cluster_id":"9o9yngJL02RyxxzxvhwkU6BVxEH9laxTg","instance_id":"cFtCf9OKJQCzKoY4PYowxWlb","creator_type":"YbXbty","created":"cGJmWnn5jBDOdeffDcxOHvhsX","delete_behavior":{"delete_by_default":true,"changeable":true},"resource_type":"Jzn","state":"","auto_create":1},{"resource_info":"","cluster_id":"DbUjM5v4HJu5WcBEQjhFjhXaVvpNsqFmo","instance_id":"4EguNWw0FXAyB7Cw37q8NYn8o","creator_type":"4RqF","created":"VP8vfmtHuVM74bsBMI8OBn26D","delete_behavior":{"delete_by_default":false,"changeable":false},"resource_type":"bRu","state":"","auto_create":0},{"resource_info":"","cluster_id":"3mXC3cqqTJ24fwOqjDx4ll0tTmJO6GDBf","instance_id":"VOTuJ5mEMpABYuxvN23Cm3ufs","creator_type":"NBjm","created":"CVqc9DaaRxY07Mrof12yl42QB","delete_behavior":{"delete_by_default":false,"changeable":false},"resource_type":"BHePzHm","state":"","auto_create":0},{"resource_info":"","cluster_id":"lSnK2i0mr6uyCPXAIhphFxpEQ17PVf1da","instance_id":"VZuMD9DTPWo5b3wLcmp2FuAI4","creator_type":"evLV","created":"RXZVwZreh9PFZufe5mASaUzbA","delete_behavior":{"delete_by_default":false,"changeable":false},"resource_type":"CjDz3ud","state":"","auto_create":0},{"resource_info":"","cluster_id":"fxZmw3TTF9oz8GGdJkY4rs9CfANEzp2Lo","extra_info":{"type":"DFsKYagX"},"instance_id":"ruyQxF0ucPUsPqZWNCNLZzdZoEuIWO08AN5L2APf0","associated_object":{"kind":"sI4YTU3li","name":"5IutfwBJbkyjFjbcmtL9QKp6I","namespace":"ibRE6SMrvTB"},"creator_type":"IqReG","created":"CnpPUGRkdxFfUGnLsDu7","delete_behavior":{"delete_by_default":false,"changeable":true},"resource_type":"HPIKwGqU","state":"","auto_create":1}],"Cluster":{"resource_group_id":"z8z13yd60KKNGtB8TN","proxy_mode":"WuuS","vpc_id":"07AFmL2JoeGryxYRFhz6NmvMP","timezone":"CyVo6wgpKM2nW","maintenance_window":{"weekly_period":"","enable":false},"network_mode":"MR5","security_group_id":"PuROR4Q0ajAL8vAy0h39RtF","container_cidr":"R9jVJuEeuwOl","cluster_type":"IB7Adial1A5nwLUiq","ip_stack":"WgG1","service_cidr":"HA7RPTXmuzCy","zone_id":"v7yUAFe97p9TD","cluster_id":"ggBGVVkyQSRxbMugpZqLk4NXyxryFQNSR","external_loadbalancer_id":"iCkOTqg3tFhTizlBEq5nbucm","meta_data":"vlsozoe6zCUsabej3lYmCaDYZywBtEWbvPhzOljV0IrPC4DiKOOmUnc6NKbJ4YuXnB2xZeTD28S9x9iM2ZgztirYQXKLSsbeLOVNvmNsuP6ZvMrffzT0badBUVPN9udtSbnKZR19AR0YxMSRLGusPsOIFmUaxoYKQg3AXp21Cm5Ydpl7haGE7PMZq1e2kdkSEbDj0yUvJi9rceKeZUJQOuhmxC54CWtxETewRfCrVGFHu5fQn3lPCIQuRBVHGXZHj0sJzzySq8wXBViyz9xQHRDJCletYvPFhCK6o3uKcALutRSs5hTJPZncvvotEtJ61ef1zcW7J5az6OFmMKLniiQfbA6JtKRpektEKhnSvqg24VNrklCkHzWKODEkAsFbpUbo6X2tWw3T0IE4ZlNnylrGWTVorIszMtBKNoWiEdPGmhn5fmyBC05wr3F5Ai1R84u757QSSbudWU7ofYfajF9UEPFiwfHKBZqydC8WNvNWPBfddqiZQX5arQX9gjXB2xJmuSbrDquoV2Itjxm94Bsy6m0htlBWpuSXhyULohJPO8qEVTTqcevXDtMsAxUzU71p23ZYcPFO9wlBzAIF4cvpCZRSVGQBuIRS4RRh1zxWQsa83G9YKQSK4uOSwP7EZzruaJxyXwcm5fKzq1iHOq96CFmczyKirbbMmwCHL1xGQ4QeTzWADazVurpNs3zVE16yUswilPqC7xiDa2IuVLEKuBbUPHV4Z1Kzhf602zkCut6ZuB9cqK6wWbr8TCVvkdfKU9Ct6N8bEG00f43r5my7dCTENXmhH4IAC4vB9LUplQZTCuQEtxsZszNczQQCwXD5qqxXBnbaYNDMKMWFYuJ0pjzeMV79XErtPdZyK7HjKKZEaQCWsmIVY5VrNXPNLlGBq3T4s79ogQ4XpKlvlndhBQFIF1O1sfWsoj5N3fGMBSFP5DbdEgcGBk9z5wQfOcKbhDcgnHkwVKCxBWE5j6XNYs3sTLpv7rkRclZK1SQQgqb0n3cGaCnr68AUx61ahdUo2fEykBB0Di2m2PYArIZSbHSPFIl8eWTTIniJMix6kyFAGRSU1y3xN30UZHt6hzvkZX5mYSpHn2F4345HxEvqc9vXYAKTBKWgEqfvzoQ8eFrGqp0tiwzrVCC02ths9YDRVMdEa3U4qv7JKkmmgLqNl6Q7nh81AaGk0xVakHJnGcLxpK4XVGvdJGji52IJKiGN7DHyMq92eyuxgZmlLbBw2D9coifJ5HNlgnkbjEALTNEVSg73UFhWIqbwE5rsjkO7ufOZj6CB8kLenRMZ4CBjB07XmCSJdI249ESv4WYJFfKBOYm4h0jGLxcS7uJZMU6nBRZt5pBHVXpAvlUgjyY8jy4HvFlAnFJCJsp62qcElDL1fw8DOpGTGnB1zflvCpm3EnZ07RnBpB3ZZkMivcts0MruMR1MSjb6nvx5N5l2nHdWyRDywUqsO7JNavPv5fpekoeukFKSpcIa2jXhMcOXoeasfXghkcHpt9b02LiYOIWcXWmn4dR0Rq6yp5GwG8pMctQqeNZwKukeDx96leJ4BRLjNiQeZIDcKTv7eXezwy8JWHavk56mLu6knUaROxSvIxCY0DmBUH4IBn3XcsWABp5syB4wLay8kg9vAWA9xhRlPSTa63LdcMiAdS5KaLkYNbuXRmOYXCjnbmUpzufRWgolEO2sDaVRYy2tGkxKsBOtq9NmzILsXaX5tE3nr1piGwGDRpQr0b0lYvU5sddiUkFQaW5TeO8VKKRUR2WM5Hci5XeUenhLlsXoSpeIXyu4AQMV57iacHTKcw7zCDHYf37QqUuLZ5gaWdtmoWurscwxsfERihhFtpE6vadxuZjB97M88AVto2PeZSkavrS2bj6luECRZRu6MOAx4ubUrXMRAoDZKADs0dGL2KrVkO78X96HLYXRym2feExdVwr7BDr7ZEBgEvtPAk4tWdwUuHTULAEjJoTgnxAMoAwhX1a45wumQGxE2JUDVF4GYziGVReYfdTTqYNSp0rLwd1rW2gS0C8nN4UGt7fv4xUQuZdTfk9kbdjfWzCP7hRmPyyLfupVCjI0OI81bop0bfM1RJTUQ7RqLjjnEOI7k0p7MVE7yypR2WSNjUO9KS05fR7yS6SvJrRyuU3pPWeOi61LTElukVxT9jxCQUj2kVvmwHCZvedbXd3vBuLr9Zj5endnkHzrjP5nR1b4pbfFZluT8qOAfQwYfSxjxUDgSn6VETpuEt9cSr5OaPOPjfoGNic6OES7HCqg9fily3MdEspcujTVwdpvc8a0y38iA9rNpljHOvNlDBXeQepGAD6RbbTTJ1l5o3q0iVBuUCk2Q53gr1ukqSfim58NTQlFzX3KTCLT6ziQLVeVGNzxDcahAfz0KKPDW3zOoBCgArSItTmCyObT7IUXH7TRE6mW44TvPp983SkK34QR9DV2JKa68e5roQMlXmq3Vm4oNJJHlh5DSYzVwDD6yu0yMy7Jssihrk1YH312gCDhw9QuyH6tzH0MMa8V7I2mSs5WhND0NawVMTF4nxlYIIE5YOD9s6LNJZJaxjMiulOqCxBpWCzb5lINEjdwIZgxKBXlJSPaGf6OnBQuJuHzPJZphyg9JVa2mN5Ll7xHp9VCeON46OxNU4YQctN1qROtG1TYEDVKBVI09WCTCfNz52LMDGkQNuCMa21ZlnERi3uQSdNxvD9MR30IDsTScTES7B2WXpiIEVdRRYvd3OrB8xV9esmPBUYotmgOXKg8mKuJ87n7PS8uGVPpSLdgQAkM83dc0ZXNhBISqjpPWgcsLLMaZjpcDvd39hhy4qwp6v9BiBFWH7UCaNsJTFy0Ral3nSoCLFX5jP7xZ","vswitch_id":"nTxNskTmxOW6J2a69EjSCzZfn","state":"CUFvWSB","vswitch_ids":["lgWsdbiKgW4A5DUwcTb8G5EOp","mWOO5kOTUmLEo5B5QryRHLPoy"],"init_version":"x7s3nEeOYJE5js9","created":"bbCjKK5C2cHccnx7uDGHa9PUO","deletion_protection":true,"profile":"zdmNqj3","subnet_cidr":"zBV1AyFHGrL5","master_url":"mwNgpwH15C8ZyKgAICiNvVg6jNLMCHrfDGTVtcMQatx6GLwJoJw2wqqU0hHFos3DBH4QGVuszHI1dZE3LofKm","region_id":"rn6aImqicJ9U","current_version":"xouPhSO6Hbiwcpx","tags":[{"value":"Ks9","key":"xZwqQv4"},{"value":"pHsJkPZE5VIQ83Gm","key":"ttJ"},{"value":"HpQx","key":"wXZ"},{"value":"ZIDISAzmrDVuZaGw","key":"S3lRkTnkFhUyWWwy8"},{"value":"txXnONI7YP2rFco","key":"2o8zZoJd"},{"value":"VQyHNdKsj7idgFK2N","key":"i6F"},{"value":"GDV6LjzS97CaM","key":"E7B"},{"value":"WhjrXokoRZ2lDz9A","key":"IGMNnSbg"},{"value":"ttgTTodsDk86KJ0irFRk3QMoZp51q4Snj","key":"wkDhSCYUf0e9PK"}],"cluster_spec":"l2lB55Gzqpovu","size":2,"name":"malbQAUeqwfkfuKIezX6Zu","operation_policy":{},"updated":"iUOB1ENN9urbtQ7f5ocGFmwQf"}} No newline at end of file
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

security (generic-api-key): Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

Source: gitleaks

@@ -1 +1 @@
{"DBInstanceAttribute":{"MasterNodeNum":1,"DBInstanceMemory":16,"ResourceGroupId":"cY6O3VNva9NxCt6xWu","Port":"94sT","SegNodeNum":2,"InstanceNetworkType":"7NB","DBInstanceClassType":"x","SupportRestore":false,"DBInstanceCategory":"uu9R1OiZnXcJ79U9","MaintainEndTime":"VY3QXd","VectorConfigurationStatus":"o8wENW0b","DBInstanceId":"HfWqcNwXPlsUFnuSyKzN","DBInstanceStorage":2,"DBInstanceDescription":"UfMEvuSnfc10TmgREvGX","Engine":"nYua","MaintainStartTime":"oNWcnq","Tags":{},"MemorySize":16,"MemoryUnit":"","ServerlessMode":"ITVfBw","EngineVersion":"JKI","StorageType":"Pkd","DBInstanceStatus":"tEXCCxn","ZoneId":"pKaJbpZzxzHnY","DBInstanceCpuCores":4,"ProdType":"I8UCQhyX","VSwitchId":"q8LYbmwEuQ5yis2Mwzt18XReJ","StartTime":"","CoreVersion":"eMS0Wyjzk9LUnB3kct1GprmS","MinorVersion":"k5vmLw2DZF5eLD57P3IO","StorageSize":2,"StorageUnit":"","LockMode":"QfpviB","PayType":"m0G1kDek","MasterCU":4,"VpcId":"HlihBTUTG3w12D7PLumHF1vCj","DBInstanceMode":"mQErUNiBy6","ConnectionMode":"aNa","CpuCores":4,"CreationTime":"VpScPyruzCXGc6MPsaj7","RegionId":"geNb0rn43CM","ConnectionString":"3eOH9SprNkFU0bRuvcSWGCxnOBulHRlomWneMTSUXSwDQNzjq","ExpireTime":"fC3rZyHx4Q4xLg5mmUIe","RunningTime":"","SegDiskPerformanceLevel":"dTL"},"DBInstance":{"MasterNodeNum":1,"ResourceGroupId":"as59mPDYFJFXu99XUL","DBInstanceNetType":"U","SegNodeNum":"W","InstanceNetworkType":"dqR","DBInstanceCategory":"IKJopb72LxXynrJo","DBInstanceId":"crK4CSt33R1RKvAfkNjZ","LockReason":"R","DBInstanceDescription":"SakRIX2VYkgusaPjP1gd","Engine":"wW0S","Tags":{},"ServerlessMode":"irmaIz","EngineVersion":"X01","StorageType":"","DBInstanceStatus":"0alyuOQ","ZoneId":"nVqhcDRUHCAtO","ProdType":"8oKp2Eji","CreateTime":"27RAMKX2xUchT9jGmvU0","VSwitchId":"Yl48x1g65kg4LeeH0DFISRtye","StorageSize":"","LockMode":"tiijxd","PayType":"wBpaX9SQ","VpcId":"1Rzt8sr6LuFPjOCJZXq4255kw","DBInstanceMode":"KXR8P3zYib","InstanceDeployType":"7nYksDg","RegionId":"1hfnj1PjUMz","ExpireTime":"o1H16NaXq86gB2nqktQP"},"DBInstanceIPArray":[{"DBInstanceIPArrayAttribute":"","SecurityIPList":"JbsY5ZGQJ","DBInstanceIPArrayName":"oMrhpbR"},{"DBInstanceIPArrayAttribute":"","SecurityIPList":"nEqNGZqqRPSv1Q","DBInstanceIPArrayName":"zPQc"}],"DBInstanceNetInfos":{"DBInstanceNetInfo":[{"IPType":"u38qejT","VPCId":"PLCxoFQIBFeo8dDHIwaCXxdl1","Port":"tDiI","VSwitchId":"Vzk1mMtV8uda93MUwJuLVnqID","VpcInstanceId":"bqF5QyFqrtB4qlSLCyqfi15yA4a","AddressType":"tnliZc8","ConnectionString":"MjjUggBbe9BYU8ImZHvt6Vt7oW1qWmxk7Oeqj3Pcoc6OcFSLG","IPAddress":"yAhr5PeeObhJ"},{"IPType":"j4IueR","Port":"OnLp","AddressType":"7AmoaCY","ConnectionString":"dbi3oxvoftzsI0qX1sVbSpsys6DmAY0w3anp48sFcNCKcfYK1d","IPAddress":"NBXGt8QUiLvq1Zc"}]}} No newline at end of file
{"DBInstanceAttribute":{"MasterNodeNum":1,"DBInstanceMemory":8,"ResourceGroupId":"FKzCW9RHErlRLDI4xd","Port":"ic7w","SegNodeNum":2,"InstanceNetworkType":"uEb","DBInstanceClassType":"U","SupportRestore":true,"DBInstanceCategory":"dRvWc","MaintainEndTime":"Hk52C4","VectorConfigurationStatus":"iv88NKvB","DBInstanceId":"MXYeVriyEnkNSGyDVIw4","DBInstanceStorage":50,"DBInstanceDescription":"yJSJj7KUhKlmw9ttvujw","Engine":"Nemm","MaintainStartTime":"hqfBiN","Tags":{"Tag":[{"Value":"ZJfQyC8YSnSMAI0nfktbxSEIqaqa2MlgSfVTTTzIQHwWke80q","Key":"zjrfi0alc1z3q5siN"}]},"MemorySize":8,"MemoryUnit":"","EngineVersion":"Juc","StorageType":"dNPITjbQla","DBInstanceStatus":"veXj0cj","ZoneId":"Es2pWcUJcWKsW","DBInstanceCpuCores":2,"ProdType":"o7gkqSkE","VSwitchId":"83kELRwtwF1KOvTkskkq9qudS","StartTime":"","CoreVersion":"kJ6LCsPTGu58HPF6Snqoe4SB","MinorVersion":"MeAT31NmjClfdXd03LhO","StorageSize":50,"StorageUnit":"","LockMode":"QymvWZ","PayType":"JN99Xhfd","MasterCU":8,"VpcId":"XOgbLy3Wn9XSUys1m3suUKDej","DBInstanceMode":"yg3KQOiCcdn1mX","ConnectionMode":"HdP","CpuCores":2,"CreationTime":"PjWGAeY3zMCwEMx0ZUOl","RegionId":"ERUMoOgpi7O","ConnectionString":"ZVdWiXzWPUfk2yAoRX8xz0nCdFyJrp7ZpzgU6q67R2dFWUIf9","ExpireTime":"cpgBlDMcVwGQFw9If8Gl","RunningTime":"","SegDiskPerformanceLevel":"xwQ"},"DBInstance":{"MasterNodeNum":1,"ResourceGroupId":"eukZtG8G5EvaapljgO","DBInstanceNetType":"a","SegNodeNum":"B","InstanceNetworkType":"7Qn","DBInstanceCategory":"E3Xrk","DBInstanceId":"0nmXlK8EJiUes3bWUgpi","LockReason":"y","DBInstanceDescription":"5RqnSv7TvycPpZHtrSd7","Engine":"Utqk","Tags":{"Tag":[{"Value":"F5fDRyMkr4D3uuLrDd7Gtmd8tysziY8IqFQXMUhF7h6vQHh7R","Key":"AP6CfqRVlz5WawptQ"}]},"EngineVersion":"KI4","StorageType":"3Dj86qeIej","DBInstanceStatus":"yRAjE5B","ZoneId":"qwfouiGYzjtQI","ProdType":"Wko4KBxu","CreateTime":"3fMNjRrDcBgUTaJ6VFe1","VSwitchId":"fiN6pgGRN7LSQ2BHMPhckaTRK","StorageSize":"8c","LockMode":"Ce10DN","PayType":"jOUpcXUr","VpcId":"F8Jiwa9j2XbzodJGY0daKeqiH","DBInstanceMode":"FRxX9bs4cZdIZN","InstanceDeployType":"AOodCiV","RegionId":"yPNxEbMBFSk","ExpireTime":"eYLuDbQT2HGSFn7sPMXM"},"DBInstanceIPArray":[{"DBInstanceIPArrayAttribute":"","SecurityIPList":"yWJHogOtI","DBInstanceIPArrayName":"Qftay0u"}],"DBInstanceNetInfos":{"DBInstanceNetInfo":[{"IPType":"4qPNL2r","VPCId":"m0wrslxOgIUKj5Qw9sEGv9Wxe","Port":"tgvV","VSwitchId":"R6gs5uPln1v9UhbfVFGcowOr0","VpcInstanceId":"UcpzZrxx7mDP08M5zjfyvyBvQo5","AddressType":"mj5jqCK","ConnectionString":"nVJCW65W7tk15jCV1JbDoqHguDpGiOpaOBGm0eGAbNLHsvM7q","IPAddress":"mli23TsrGe"}]}} No newline at end of file
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

security (generic-api-key): Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

Source: gitleaks

@@ -0,0 +1 @@
{"ContainerGroup":{"Discount":0,"ResourceGroupId":"yeGiuPEQRJic3uCMd5","Memory":4,"Containers":[{"EnvironmentVars":[{"ValueFrom":{"FieldRef":{"FieldPath":""}},"Value":"etMBnAP1tmSkfwtYAI2elk43t6UVye60XLUYUFS3rrwaRiTwY5","Key":"MYJR57Oli"},{"ValueFrom":{"FieldRef":{"FieldPath":""}},"Value":"X7CDhMWflFPyu3oAKixmx5lxqvPAinBMoh68IBXQciK8AeoekoepyCX5GjIxcTqflb59C2ROaWxrrEdb8XgmBpyVkh6tua1Oj3FLhg9HAfPnLuAJUnx6CoQaTXEvZS4PIoEdDHB0HrtGL3iQIIus15nngr55CbiJ6UXuOM4zDqdnCzve5cCRmDCCR85cbZbBn0QRqhkpyvSgO4hqpYAuTCS70jd1xIUZ4TG1jB24Mh1MrKCxbIMlv0uthKulqxjnx6ICzcNat4cvzY5TT7gKNfViif6rGcd4","Key":"oMSl"},{"ValueFrom":{"FieldRef":{"FieldPath":""}},"Value":"Pf","Key":"YrZM"},{"ValueFrom":{"FieldRef":{"FieldPath":""}},"Value":"aE","Key":"EnysmFJB"},{"ValueFrom":{"FieldRef":{"FieldPath":""}},"Value":"k","Key":"E7h"},{"ValueFrom":{"FieldRef":{"FieldPath":""}},"Value":"X","Key":"bDM"},{"ValueFrom":{"FieldRef":{"FieldPath":""}},"Value":"N5ZdeNhkdOUv4","Key":"Zb5RTqrrscisRfzyC0w5AZE"},{"ValueFrom":{"FieldRef":{"FieldPath":""}},"Value":"hcwr","Key":"HIryIdgM9RaFoPYU7KUVrZN"},{"ValueFrom":{"FieldRef":{"FieldPath":""}},"Value":"GOul","Key":"mBM28VZ8odiwCSKV6Udn0xhS7xO7d"},{"ValueFrom":{"FieldRef":{"FieldPath":""}},"Value":"EY1fpLJ1nQ5xUHJuqIRfx","Key":"PCEM2bIN8M2iKnJ"},{"ValueFrom":{"FieldRef":{"FieldPath":""}},"Value":"t4bZni90nIHXNzkUiBQU6","Key":"5SGPtK8FUJm3LtfoN64ajiD"},{"ValueFrom":{"FieldRef":{"FieldPath":""}},"Value":"DhQ","Key":"oZoYuFtcKKmWS8BmsQiegRtBMtvZD"},{"ValueFrom":{"FieldRef":{"FieldPath":""}},"Value":"sAa","Key":"AlznwuUvekhh7JqqC6mIB46yvYdW"},{"ValueFrom":{"FieldRef":{"FieldPath":""}},"Value":"DeGxhLr2eSz","Key":"PHhhWmacvg7tFGQgcjwJGuKF3vzh"}],"ReadinessProbe":{"InitialDelaySeconds":0,"TimeoutSeconds":0,"Execs":null,"HttpGet":{"Path":"","Scheme":"","Port":0},"PeriodSeconds":0,"FailureThreshold":0,"TcpSocket":{"Port":0,"Host":""},"SuccessThreshold":0},"Args":null,"LivenessProbe":{"InitialDelaySeconds":0,"TimeoutSeconds":0,"Execs":null,"HttpGet":{"Path":"","Scheme":"","Port":0},"PeriodSeconds":0,"FailureThreshold":0,"TcpSocket":{"Port":0,"Host":""},"SuccessThreshold":0},"Memory":3,"Cpu":2,"Ports":null,"Image":"f3Vvoe2xPFxw6kUSJGHXeXk7Ob7WzgArfjQhvNDid2n6jw4RgLNBDm","Gpu":0,"PreviousState":{"Signal":0,"FinishTime":"","Message":"","State":"","ExitCode":0,"StartTime":"","DetailStatus":"","Reason":""},"StdinOnce":false,"Name":"FMmVAOJOizREv","Stdin":false,"RestartCount":0,"Ready":true,"WorkingDir":"","VolumeMounts":[{"MountPath":"mQ04r4IIq1kTBOPytVYjA4WUtQmFFw54LiGLT8WAHYPz3","ReadOnly":true,"Name":"jRWqTyH3ISam9nUFVhL8o"}],"ImagePullPolicy":"TKki5J","CurrentState":{"Signal":0,"FinishTime":"","Message":"","State":"Msvz6kI","ExitCode":0,"StartTime":"dwCO4ihBcT8c1CK4Ut6j","DetailStatus":"","Reason":""},"Commands":null,"SecurityContext":{"RunAsUser":0,"Capability":{"Adds":null},"ReadOnlyRootFilesystem":false},"Tty":false}],"Cpu":2,"EciSecurityContext":{"Sysctls":null},"FailedTime":"","ContainerGroupName":"Hp1OD86HMRPSzcDzSy0eM7ZDgpdFfa","IntranetIp":"cVdg1njZsdBdv","RamRoleName":"","Volumes":[],"DnsConfig":{"Options":[{"Value":"w","Name":"mQGgZ"}],"Searches":null,"NameServers":null},"InternetIp":"nTigSXlgBypZl","Events":[{"Type":"N1PpnE","LastTimestamp":"f9piCXoznvcMzoeV7A4t","Message":"kUIqXTYYjmaPrPhHxYgmZhaWQ8kkKp7","Count":1,"FirstTimestamp":"H2nbvqR7cTOGczNndJM6","Reason":"cQkyyOs","Name":"YPZA5DAFLy8hY73XCVWsBcUs9m267CXh0lVsgWx4GIVtO34"},{"Type":"9WhhWy","LastTimestamp":"6pV8E42TmN8iZQyX67qa","Message":"px0Btzwe8TEbt5iqwWOzTjayuRBsiFju","Count":1,"FirstTimestamp":"LHweqUCZdhNHEu5IMVY2","Reason":"22Jei8J","Name":"tfSfr0jFSvKLh5Ts7dvHBG0IZEQdsXrjRgrZTkegRyOlHuw"},{"Type":"UajRcf","LastTimestamp":"hbT5Q7SFtNT8JnEb86tI","Message":"xRP04UumozEp9jRT9DU4U1cCuLuhJqQApzcKdMr2fKtSrCZ1GE5Bkj2tlDHkkCP9yFniD0E7KxPex6YR9bioARAZAnGEcS8Fm7oI4io6lcSGsF4Qn4q3X9WNJnR0RGKorfnFmAIhOgu7BTulbnNt","Count":1,"FirstTimestamp":"ayqwfL7OlUllsO3qwpVh","Reason":"kzWreU","Name":"7vks9aFUghSwASm4ZMqHSZiFAm6vxY5EXiFMJXCtDWmOTBz"},{"Type":"zuRsMt","LastTimestamp":"meCx0elkG2BfIsGfcewm","Message":"b1yeyIlF8Nju6CjxXIqIlE6eNZLOMOH8mkiBqq1yNfQxzQmIiMfOCe4qp716W0YpBzYcdl","Count":1,"FirstTimestamp":"63sU9IaNPD89U1WHm1U3","Reason":"NBLNACN","Name":"YIPX87tMDPdDl0Tf9kxMye9JZ6WEcGJ9Bz91DT2QaTPXxPr"},{"Type":"b4hI63","LastTimestamp":"gDHccfUUJt0PPX4IJWW7","Message":"mHr0dnL2OB7BlPJG3iIZcwKDUGltWh6yAT8n7HdUBU11KsghkfHieePoC9kZJzMzVLJtd18gzUz0vyjTFvC6mB01FruwkxZPn4sqDzZPEUKAT4OqMgx","Count":1,"FirstTimestamp":"pbxtHK5UFNMvjGsn7pLr","Reason":"Pk2zKTKsP0SFdZYfdEBqaUB","Name":"Qdxdnd7bhdjomfkTjZYQNq9Dz6Y04kQmzU4i5C8ydhhdem2"},{"Type":"nr7tGh","LastTimestamp":"KyTBLzkD80MizLfVI6DJ","Message":"wbCNgIeR1rCSoX0riSlYj2env6SzTVMaIcX5nuPXgHuMiGT8jfR9Pfx3zqy8eR7XA8bL4wpcFVuVjlk3jozE8kD","Count":1,"FirstTimestamp":"81dgcsjbtEQiGhQP9H63","Reason":"DP23if7ox5NVlDENJjgFR","Name":"rw6QkC0PBTOY1xQkEKOpkwxaPg9AOqgTemCDNuxuFOsYKvP"},{"Type":"h92FkY","LastTimestamp":"MpvbIEmILECs0TuT24L2","Message":"6gHr9VLQuhRVGaidsd8YcCXB5nh8IM9lqwvbo6Kh6aROtUOnrFnu9xnnRmbpM3cxJYE15audif2ZP162KDhFewAS5","Count":1,"FirstTimestamp":"vhxxp3yI3NGQ9QzN02xA","Reason":"eIt1jqD3COAL0tEcr88I","Name":"idZToZqIrIS9st4cx7uVa6lEI1USwFOv7vXVd5IY8w8FCNa"}],"ExpiredTime":"","InstanceType":"","Ipv6Address":"","Tags":[{"Value":"HB0EVrXv9lIfrf4XuIn6sOFtOuw5aSnqwPse","Key":"iAg"},{"Value":"W85m","Key":"oy7qRRCP6RlCdb"},{"Value":"eQo3OqXHpfzE73VhooiRUtAAkqpBqD","Key":"Lbk7wHx"},{"Value":"tbp","Key":"keNTTRdCo"},{"Value":"40fdhykeP6hTK0V3RqEaYNkeA3YCNnXzi","Key":"IBVZYBmqYIKMY4"},{"Value":"XgXqnpAXcDs7o53QrqEsfEtQ14KUSbI9N","Key":"fxVMbDjBN"},{"Value":"LklWm4dZ2HRSh","Key":"QqX6DN4nWVUI0DMr7U"},{"Value":"plorhGxJiB","Key":"Qnr8MFHH3dfv7hcxBV"},{"Value":"0oLUPpQ","Key":"GkO6IPyl9"},{"Value":"wtlIKzlcqywI7Ix","Key":"XsouskIXFHRjq71wG9SceQT3SN3bVo"}],"Status":"TWdGd3B","InitContainers":[],"ZoneId":"1TdWD9f3qOX1A","SucceededTime":"","SecurityGroupId":"Osd53eTtIzHxfDfm84iyU3j","VSwitchId":"0OfQai3RbOAebfXkmihojOknm","RestartPolicy":"2E6Ql4","HostAliases":[{"Ip":"EKcuue8DKSE","Hostnames":["nkR8WTxfYALasdBiiB","jkkwAaFvZrZpIXNyiGSKNw"]}],"VpcId":"GcGfdtZo27hbNsNKh1wc0bPm8","CreationTime":"RlKrP4NQktWYvu3opN9u","EniInstanceId":"3WCmzLWsTvOlRGFDmKcTOUg2","ContainerGroupId":"7FmaZamhSeGFQmVqfK4pB1BL","RegionId":"0Xiquz8Bwdq"}} No newline at end of file
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

security (generic-api-key): Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

Source: gitleaks

@@ -0,0 +1 @@
{"ContainerGroup":{"Discount":0,"ResourceGroupId":"yeGiuPEQRJic3uCMd5","Memory":4,"Containers":[{"EnvironmentVars":[{"ValueFrom":{"FieldRef":{"FieldPath":""}},"Value":"etMBnAP1tmSkfwtYAI2elk43t6UVye60XLUYUFS3rrwaRiTwY5","Key":"MYJR57Oli"},{"ValueFrom":{"FieldRef":{"FieldPath":""}},"Value":"X7CDhMWflFPyu3oAKixmx5lxqvPAinBMoh68IBXQciK8AeoekoepyCX5GjIxcTqflb59C2ROaWxrrEdb8XgmBpyVkh6tua1Oj3FLhg9HAfPnLuAJUnx6CoQaTXEvZS4PIoEdDHB0HrtGL3iQIIus15nngr55CbiJ6UXuOM4zDqdnCzve5cCRmDCCR85cbZbBn0QRqhkpyvSgO4hqpYAuTCS70jd1xIUZ4TG1jB24Mh1MrKCxbIMlv0uthKulqxjnx6ICzcNat4cvzY5TT7gKNfViif6rGcd4","Key":"oMSl"},{"ValueFrom":{"FieldRef":{"FieldPath":""}},"Value":"Pf","Key":"YrZM"},{"ValueFrom":{"FieldRef":{"FieldPath":""}},"Value":"aE","Key":"EnysmFJB"},{"ValueFrom":{"FieldRef":{"FieldPath":""}},"Value":"k","Key":"E7h"},{"ValueFrom":{"FieldRef":{"FieldPath":""}},"Value":"X","Key":"bDM"},{"ValueFrom":{"FieldRef":{"FieldPath":""}},"Value":"N5ZdeNhkdOUv4","Key":"Zb5RTqrrscisRfzyC0w5AZE"},{"ValueFrom":{"FieldRef":{"FieldPath":""}},"Value":"hcwr","Key":"HIryIdgM9RaFoPYU7KUVrZN"},{"ValueFrom":{"FieldRef":{"FieldPath":""}},"Value":"GOul","Key":"mBM28VZ8odiwCSKV6Udn0xhS7xO7d"},{"ValueFrom":{"FieldRef":{"FieldPath":""}},"Value":"EY1fpLJ1nQ5xUHJuqIRfx","Key":"PCEM2bIN8M2iKnJ"},{"ValueFrom":{"FieldRef":{"FieldPath":""}},"Value":"t4bZni90nIHXNzkUiBQU6","Key":"5SGPtK8FUJm3LtfoN64ajiD"},{"ValueFrom":{"FieldRef":{"FieldPath":""}},"Value":"DhQ","Key":"oZoYuFtcKKmWS8BmsQiegRtBMtvZD"},{"ValueFrom":{"FieldRef":{"FieldPath":""}},"Value":"sAa","Key":"AlznwuUvekhh7JqqC6mIB46yvYdW"},{"ValueFrom":{"FieldRef":{"FieldPath":""}},"Value":"DeGxhLr2eSz","Key":"PHhhWmacvg7tFGQgcjwJGuKF3vzh"}],"ReadinessProbe":{"InitialDelaySeconds":0,"TimeoutSeconds":0,"Execs":null,"HttpGet":{"Path":"","Scheme":"","Port":0},"PeriodSeconds":0,"FailureThreshold":0,"TcpSocket":{"Port":0,"Host":""},"SuccessThreshold":0},"Args":null,"LivenessProbe":{"InitialDelaySeconds":0,"TimeoutSeconds":0,"Execs":null,"HttpGet":{"Path":"","Scheme":"","Port":0},"PeriodSeconds":0,"FailureThreshold":0,"TcpSocket":{"Port":0,"Host":""},"SuccessThreshold":0},"Memory":3,"Cpu":2,"Ports":null,"Image":"f3Vvoe2xPFxw6kUSJGHXeXk7Ob7WzgArfjQhvNDid2n6jw4RgLNBDm","Gpu":0,"PreviousState":{"Signal":0,"FinishTime":"","Message":"","State":"","ExitCode":0,"StartTime":"","DetailStatus":"","Reason":""},"StdinOnce":false,"Name":"FMmVAOJOizREv","Stdin":false,"RestartCount":0,"Ready":true,"WorkingDir":"","VolumeMounts":[{"MountPath":"mQ04r4IIq1kTBOPytVYjA4WUtQmFFw54LiGLT8WAHYPz3","ReadOnly":true,"Name":"jRWqTyH3ISam9nUFVhL8o"}],"ImagePullPolicy":"TKki5J","CurrentState":{"Signal":0,"FinishTime":"","Message":"","State":"Msvz6kI","ExitCode":0,"StartTime":"dwCO4ihBcT8c1CK4Ut6j","DetailStatus":"","Reason":""},"Commands":null,"SecurityContext":{"RunAsUser":0,"Capability":{"Adds":null},"ReadOnlyRootFilesystem":false},"Tty":false}],"Cpu":2,"EciSecurityContext":{"Sysctls":null},"FailedTime":"","ContainerGroupName":"Hp1OD86HMRPSzcDzSy0eM7ZDgpdFfa","IntranetIp":"cVdg1njZsdBdv","RamRoleName":"","Volumes":[],"DnsConfig":{"Options":[{"Value":"w","Name":"mQGgZ"}],"Searches":null,"NameServers":null},"InternetIp":"nTigSXlgBypZl","Events":[{"Type":"N1PpnE","LastTimestamp":"f9piCXoznvcMzoeV7A4t","Message":"kUIqXTYYjmaPrPhHxYgmZhaWQ8kkKp7","Count":1,"FirstTimestamp":"H2nbvqR7cTOGczNndJM6","Reason":"cQkyyOs","Name":"YPZA5DAFLy8hY73XCVWsBcUs9m267CXh0lVsgWx4GIVtO34"},{"Type":"9WhhWy","LastTimestamp":"6pV8E42TmN8iZQyX67qa","Message":"px0Btzwe8TEbt5iqwWOzTjayuRBsiFju","Count":1,"FirstTimestamp":"LHweqUCZdhNHEu5IMVY2","Reason":"22Jei8J","Name":"tfSfr0jFSvKLh5Ts7dvHBG0IZEQdsXrjRgrZTkegRyOlHuw"},{"Type":"UajRcf","LastTimestamp":"hbT5Q7SFtNT8JnEb86tI","Message":"xRP04UumozEp9jRT9DU4U1cCuLuhJqQApzcKdMr2fKtSrCZ1GE5Bkj2tlDHkkCP9yFniD0E7KxPex6YR9bioARAZAnGEcS8Fm7oI4io6lcSGsF4Qn4q3X9WNJnR0RGKorfnFmAIhOgu7BTulbnNt","Count":1,"FirstTimestamp":"ayqwfL7OlUllsO3qwpVh","Reason":"kzWreU","Name":"7vks9aFUghSwASm4ZMqHSZiFAm6vxY5EXiFMJXCtDWmOTBz"},{"Type":"zuRsMt","LastTimestamp":"meCx0elkG2BfIsGfcewm","Message":"b1yeyIlF8Nju6CjxXIqIlE6eNZLOMOH8mkiBqq1yNfQxzQmIiMfOCe4qp716W0YpBzYcdl","Count":1,"FirstTimestamp":"63sU9IaNPD89U1WHm1U3","Reason":"NBLNACN","Name":"YIPX87tMDPdDl0Tf9kxMye9JZ6WEcGJ9Bz91DT2QaTPXxPr"},{"Type":"b4hI63","LastTimestamp":"gDHccfUUJt0PPX4IJWW7","Message":"mHr0dnL2OB7BlPJG3iIZcwKDUGltWh6yAT8n7HdUBU11KsghkfHieePoC9kZJzMzVLJtd18gzUz0vyjTFvC6mB01FruwkxZPn4sqDzZPEUKAT4OqMgx","Count":1,"FirstTimestamp":"pbxtHK5UFNMvjGsn7pLr","Reason":"Pk2zKTKsP0SFdZYfdEBqaUB","Name":"Qdxdnd7bhdjomfkTjZYQNq9Dz6Y04kQmzU4i5C8ydhhdem2"},{"Type":"nr7tGh","LastTimestamp":"KyTBLzkD80MizLfVI6DJ","Message":"wbCNgIeR1rCSoX0riSlYj2env6SzTVMaIcX5nuPXgHuMiGT8jfR9Pfx3zqy8eR7XA8bL4wpcFVuVjlk3jozE8kD","Count":1,"FirstTimestamp":"81dgcsjbtEQiGhQP9H63","Reason":"DP23if7ox5NVlDENJjgFR","Name":"rw6QkC0PBTOY1xQkEKOpkwxaPg9AOqgTemCDNuxuFOsYKvP"},{"Type":"h92FkY","LastTimestamp":"MpvbIEmILECs0TuT24L2","Message":"6gHr9VLQuhRVGaidsd8YcCXB5nh8IM9lqwvbo6Kh6aROtUOnrFnu9xnnRmbpM3cxJYE15audif2ZP162KDhFewAS5","Count":1,"FirstTimestamp":"vhxxp3yI3NGQ9QzN02xA","Reason":"eIt1jqD3COAL0tEcr88I","Name":"idZToZqIrIS9st4cx7uVa6lEI1USwFOv7vXVd5IY8w8FCNa"}],"ExpiredTime":"","InstanceType":"","Ipv6Address":"","Tags":[{"Value":"HB0EVrXv9lIfrf4XuIn6sOFtOuw5aSnqwPse","Key":"iAg"},{"Value":"W85m","Key":"oy7qRRCP6RlCdb"},{"Value":"eQo3OqXHpfzE73VhooiRUtAAkqpBqD","Key":"Lbk7wHx"},{"Value":"tbp","Key":"keNTTRdCo"},{"Value":"40fdhykeP6hTK0V3RqEaYNkeA3YCNnXzi","Key":"IBVZYBmqYIKMY4"},{"Value":"XgXqnpAXcDs7o53QrqEsfEtQ14KUSbI9N","Key":"fxVMbDjBN"},{"Value":"LklWm4dZ2HRSh","Key":"QqX6DN4nWVUI0DMr7U"},{"Value":"plorhGxJiB","Key":"Qnr8MFHH3dfv7hcxBV"},{"Value":"0oLUPpQ","Key":"GkO6IPyl9"},{"Value":"wtlIKzlcqywI7Ix","Key":"XsouskIXFHRjq71wG9SceQT3SN3bVo"}],"Status":"TWdGd3B","InitContainers":[],"ZoneId":"1TdWD9f3qOX1A","SucceededTime":"","SecurityGroupId":"Osd53eTtIzHxfDfm84iyU3j","VSwitchId":"0OfQai3RbOAebfXkmihojOknm","RestartPolicy":"2E6Ql4","HostAliases":[{"Ip":"EKcuue8DKSE","Hostnames":["nkR8WTxfYALasdBiiB","jkkwAaFvZrZpIXNyiGSKNw"]}],"VpcId":"GcGfdtZo27hbNsNKh1wc0bPm8","CreationTime":"RlKrP4NQktWYvu3opN9u","EniInstanceId":"3WCmzLWsTvOlRGFDmKcTOUg2","ContainerGroupId":"7FmaZamhSeGFQmVqfK4pB1BL","RegionId":"0Xiquz8Bwdq"}} No newline at end of file
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

security (generic-api-key): Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

Source: gitleaks

@@ -0,0 +1 @@
{"ContainerGroup":{"Discount":0,"ResourceGroupId":"yeGiuPEQRJic3uCMd5","Memory":4,"Containers":[{"EnvironmentVars":[{"ValueFrom":{"FieldRef":{"FieldPath":""}},"Value":"etMBnAP1tmSkfwtYAI2elk43t6UVye60XLUYUFS3rrwaRiTwY5","Key":"MYJR57Oli"},{"ValueFrom":{"FieldRef":{"FieldPath":""}},"Value":"X7CDhMWflFPyu3oAKixmx5lxqvPAinBMoh68IBXQciK8AeoekoepyCX5GjIxcTqflb59C2ROaWxrrEdb8XgmBpyVkh6tua1Oj3FLhg9HAfPnLuAJUnx6CoQaTXEvZS4PIoEdDHB0HrtGL3iQIIus15nngr55CbiJ6UXuOM4zDqdnCzve5cCRmDCCR85cbZbBn0QRqhkpyvSgO4hqpYAuTCS70jd1xIUZ4TG1jB24Mh1MrKCxbIMlv0uthKulqxjnx6ICzcNat4cvzY5TT7gKNfViif6rGcd4","Key":"oMSl"},{"ValueFrom":{"FieldRef":{"FieldPath":""}},"Value":"Pf","Key":"YrZM"},{"ValueFrom":{"FieldRef":{"FieldPath":""}},"Value":"aE","Key":"EnysmFJB"},{"ValueFrom":{"FieldRef":{"FieldPath":""}},"Value":"k","Key":"E7h"},{"ValueFrom":{"FieldRef":{"FieldPath":""}},"Value":"X","Key":"bDM"},{"ValueFrom":{"FieldRef":{"FieldPath":""}},"Value":"N5ZdeNhkdOUv4","Key":"Zb5RTqrrscisRfzyC0w5AZE"},{"ValueFrom":{"FieldRef":{"FieldPath":""}},"Value":"hcwr","Key":"HIryIdgM9RaFoPYU7KUVrZN"},{"ValueFrom":{"FieldRef":{"FieldPath":""}},"Value":"GOul","Key":"mBM28VZ8odiwCSKV6Udn0xhS7xO7d"},{"ValueFrom":{"FieldRef":{"FieldPath":""}},"Value":"EY1fpLJ1nQ5xUHJuqIRfx","Key":"PCEM2bIN8M2iKnJ"},{"ValueFrom":{"FieldRef":{"FieldPath":""}},"Value":"t4bZni90nIHXNzkUiBQU6","Key":"5SGPtK8FUJm3LtfoN64ajiD"},{"ValueFrom":{"FieldRef":{"FieldPath":""}},"Value":"DhQ","Key":"oZoYuFtcKKmWS8BmsQiegRtBMtvZD"},{"ValueFrom":{"FieldRef":{"FieldPath":""}},"Value":"sAa","Key":"AlznwuUvekhh7JqqC6mIB46yvYdW"},{"ValueFrom":{"FieldRef":{"FieldPath":""}},"Value":"DeGxhLr2eSz","Key":"PHhhWmacvg7tFGQgcjwJGuKF3vzh"}],"ReadinessProbe":{"InitialDelaySeconds":0,"TimeoutSeconds":0,"Execs":null,"HttpGet":{"Path":"","Scheme":"","Port":0},"PeriodSeconds":0,"FailureThreshold":0,"TcpSocket":{"Port":0,"Host":""},"SuccessThreshold":0},"Args":null,"LivenessProbe":{"InitialDelaySeconds":0,"TimeoutSeconds":0,"Execs":null,"HttpGet":{"Path":"","Scheme":"","Port":0},"PeriodSeconds":0,"FailureThreshold":0,"TcpSocket":{"Port":0,"Host":""},"SuccessThreshold":0},"Memory":3,"Cpu":2,"Ports":null,"Image":"f3Vvoe2xPFxw6kUSJGHXeXk7Ob7WzgArfjQhvNDid2n6jw4RgLNBDm","Gpu":0,"PreviousState":{"Signal":0,"FinishTime":"","Message":"","State":"","ExitCode":0,"StartTime":"","DetailStatus":"","Reason":""},"StdinOnce":false,"Name":"FMmVAOJOizREv","Stdin":false,"RestartCount":0,"Ready":true,"WorkingDir":"","VolumeMounts":[{"MountPath":"mQ04r4IIq1kTBOPytVYjA4WUtQmFFw54LiGLT8WAHYPz3","ReadOnly":true,"Name":"jRWqTyH3ISam9nUFVhL8o"}],"ImagePullPolicy":"TKki5J","CurrentState":{"Signal":0,"FinishTime":"","Message":"","State":"Msvz6kI","ExitCode":0,"StartTime":"dwCO4ihBcT8c1CK4Ut6j","DetailStatus":"","Reason":""},"Commands":null,"SecurityContext":{"RunAsUser":0,"Capability":{"Adds":null},"ReadOnlyRootFilesystem":false},"Tty":false}],"Cpu":2,"EciSecurityContext":{"Sysctls":null},"FailedTime":"","ContainerGroupName":"Hp1OD86HMRPSzcDzSy0eM7ZDgpdFfa","IntranetIp":"cVdg1njZsdBdv","RamRoleName":"","Volumes":[],"DnsConfig":{"Options":[{"Value":"w","Name":"mQGgZ"}],"Searches":null,"NameServers":null},"InternetIp":"nTigSXlgBypZl","Events":[{"Type":"N1PpnE","LastTimestamp":"f9piCXoznvcMzoeV7A4t","Message":"kUIqXTYYjmaPrPhHxYgmZhaWQ8kkKp7","Count":1,"FirstTimestamp":"H2nbvqR7cTOGczNndJM6","Reason":"cQkyyOs","Name":"YPZA5DAFLy8hY73XCVWsBcUs9m267CXh0lVsgWx4GIVtO34"},{"Type":"9WhhWy","LastTimestamp":"6pV8E42TmN8iZQyX67qa","Message":"px0Btzwe8TEbt5iqwWOzTjayuRBsiFju","Count":1,"FirstTimestamp":"LHweqUCZdhNHEu5IMVY2","Reason":"22Jei8J","Name":"tfSfr0jFSvKLh5Ts7dvHBG0IZEQdsXrjRgrZTkegRyOlHuw"},{"Type":"UajRcf","LastTimestamp":"hbT5Q7SFtNT8JnEb86tI","Message":"xRP04UumozEp9jRT9DU4U1cCuLuhJqQApzcKdMr2fKtSrCZ1GE5Bkj2tlDHkkCP9yFniD0E7KxPex6YR9bioARAZAnGEcS8Fm7oI4io6lcSGsF4Qn4q3X9WNJnR0RGKorfnFmAIhOgu7BTulbnNt","Count":1,"FirstTimestamp":"ayqwfL7OlUllsO3qwpVh","Reason":"kzWreU","Name":"7vks9aFUghSwASm4ZMqHSZiFAm6vxY5EXiFMJXCtDWmOTBz"},{"Type":"zuRsMt","LastTimestamp":"meCx0elkG2BfIsGfcewm","Message":"b1yeyIlF8Nju6CjxXIqIlE6eNZLOMOH8mkiBqq1yNfQxzQmIiMfOCe4qp716W0YpBzYcdl","Count":1,"FirstTimestamp":"63sU9IaNPD89U1WHm1U3","Reason":"NBLNACN","Name":"YIPX87tMDPdDl0Tf9kxMye9JZ6WEcGJ9Bz91DT2QaTPXxPr"},{"Type":"b4hI63","LastTimestamp":"gDHccfUUJt0PPX4IJWW7","Message":"mHr0dnL2OB7BlPJG3iIZcwKDUGltWh6yAT8n7HdUBU11KsghkfHieePoC9kZJzMzVLJtd18gzUz0vyjTFvC6mB01FruwkxZPn4sqDzZPEUKAT4OqMgx","Count":1,"FirstTimestamp":"pbxtHK5UFNMvjGsn7pLr","Reason":"Pk2zKTKsP0SFdZYfdEBqaUB","Name":"Qdxdnd7bhdjomfkTjZYQNq9Dz6Y04kQmzU4i5C8ydhhdem2"},{"Type":"nr7tGh","LastTimestamp":"KyTBLzkD80MizLfVI6DJ","Message":"wbCNgIeR1rCSoX0riSlYj2env6SzTVMaIcX5nuPXgHuMiGT8jfR9Pfx3zqy8eR7XA8bL4wpcFVuVjlk3jozE8kD","Count":1,"FirstTimestamp":"81dgcsjbtEQiGhQP9H63","Reason":"DP23if7ox5NVlDENJjgFR","Name":"rw6QkC0PBTOY1xQkEKOpkwxaPg9AOqgTemCDNuxuFOsYKvP"},{"Type":"h92FkY","LastTimestamp":"MpvbIEmILECs0TuT24L2","Message":"6gHr9VLQuhRVGaidsd8YcCXB5nh8IM9lqwvbo6Kh6aROtUOnrFnu9xnnRmbpM3cxJYE15audif2ZP162KDhFewAS5","Count":1,"FirstTimestamp":"vhxxp3yI3NGQ9QzN02xA","Reason":"eIt1jqD3COAL0tEcr88I","Name":"idZToZqIrIS9st4cx7uVa6lEI1USwFOv7vXVd5IY8w8FCNa"}],"ExpiredTime":"","InstanceType":"","Ipv6Address":"","Tags":[{"Value":"HB0EVrXv9lIfrf4XuIn6sOFtOuw5aSnqwPse","Key":"iAg"},{"Value":"W85m","Key":"oy7qRRCP6RlCdb"},{"Value":"eQo3OqXHpfzE73VhooiRUtAAkqpBqD","Key":"Lbk7wHx"},{"Value":"tbp","Key":"keNTTRdCo"},{"Value":"40fdhykeP6hTK0V3RqEaYNkeA3YCNnXzi","Key":"IBVZYBmqYIKMY4"},{"Value":"XgXqnpAXcDs7o53QrqEsfEtQ14KUSbI9N","Key":"fxVMbDjBN"},{"Value":"LklWm4dZ2HRSh","Key":"QqX6DN4nWVUI0DMr7U"},{"Value":"plorhGxJiB","Key":"Qnr8MFHH3dfv7hcxBV"},{"Value":"0oLUPpQ","Key":"GkO6IPyl9"},{"Value":"wtlIKzlcqywI7Ix","Key":"XsouskIXFHRjq71wG9SceQT3SN3bVo"}],"Status":"TWdGd3B","InitContainers":[],"ZoneId":"1TdWD9f3qOX1A","SucceededTime":"","SecurityGroupId":"Osd53eTtIzHxfDfm84iyU3j","VSwitchId":"0OfQai3RbOAebfXkmihojOknm","RestartPolicy":"2E6Ql4","HostAliases":[{"Ip":"EKcuue8DKSE","Hostnames":["nkR8WTxfYALasdBiiB","jkkwAaFvZrZpIXNyiGSKNw"]}],"VpcId":"GcGfdtZo27hbNsNKh1wc0bPm8","CreationTime":"RlKrP4NQktWYvu3opN9u","EniInstanceId":"3WCmzLWsTvOlRGFDmKcTOUg2","ContainerGroupId":"7FmaZamhSeGFQmVqfK4pB1BL","RegionId":"0Xiquz8Bwdq"}} No newline at end of file
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

security (generic-api-key): Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

Source: gitleaks

@@ -0,0 +1 @@
{"ContainerGroup":{"Discount":0,"ResourceGroupId":"yeGiuPEQRJic3uCMd5","Memory":4,"Containers":[{"EnvironmentVars":[{"ValueFrom":{"FieldRef":{"FieldPath":""}},"Value":"etMBnAP1tmSkfwtYAI2elk43t6UVye60XLUYUFS3rrwaRiTwY5","Key":"MYJR57Oli"},{"ValueFrom":{"FieldRef":{"FieldPath":""}},"Value":"X7CDhMWflFPyu3oAKixmx5lxqvPAinBMoh68IBXQciK8AeoekoepyCX5GjIxcTqflb59C2ROaWxrrEdb8XgmBpyVkh6tua1Oj3FLhg9HAfPnLuAJUnx6CoQaTXEvZS4PIoEdDHB0HrtGL3iQIIus15nngr55CbiJ6UXuOM4zDqdnCzve5cCRmDCCR85cbZbBn0QRqhkpyvSgO4hqpYAuTCS70jd1xIUZ4TG1jB24Mh1MrKCxbIMlv0uthKulqxjnx6ICzcNat4cvzY5TT7gKNfViif6rGcd4","Key":"oMSl"},{"ValueFrom":{"FieldRef":{"FieldPath":""}},"Value":"Pf","Key":"YrZM"},{"ValueFrom":{"FieldRef":{"FieldPath":""}},"Value":"aE","Key":"EnysmFJB"},{"ValueFrom":{"FieldRef":{"FieldPath":""}},"Value":"k","Key":"E7h"},{"ValueFrom":{"FieldRef":{"FieldPath":""}},"Value":"X","Key":"bDM"},{"ValueFrom":{"FieldRef":{"FieldPath":""}},"Value":"N5ZdeNhkdOUv4","Key":"Zb5RTqrrscisRfzyC0w5AZE"},{"ValueFrom":{"FieldRef":{"FieldPath":""}},"Value":"hcwr","Key":"HIryIdgM9RaFoPYU7KUVrZN"},{"ValueFrom":{"FieldRef":{"FieldPath":""}},"Value":"GOul","Key":"mBM28VZ8odiwCSKV6Udn0xhS7xO7d"},{"ValueFrom":{"FieldRef":{"FieldPath":""}},"Value":"EY1fpLJ1nQ5xUHJuqIRfx","Key":"PCEM2bIN8M2iKnJ"},{"ValueFrom":{"FieldRef":{"FieldPath":""}},"Value":"t4bZni90nIHXNzkUiBQU6","Key":"5SGPtK8FUJm3LtfoN64ajiD"},{"ValueFrom":{"FieldRef":{"FieldPath":""}},"Value":"DhQ","Key":"oZoYuFtcKKmWS8BmsQiegRtBMtvZD"},{"ValueFrom":{"FieldRef":{"FieldPath":""}},"Value":"sAa","Key":"AlznwuUvekhh7JqqC6mIB46yvYdW"},{"ValueFrom":{"FieldRef":{"FieldPath":""}},"Value":"DeGxhLr2eSz","Key":"PHhhWmacvg7tFGQgcjwJGuKF3vzh"}],"ReadinessProbe":{"InitialDelaySeconds":0,"TimeoutSeconds":0,"Execs":null,"HttpGet":{"Path":"","Scheme":"","Port":0},"PeriodSeconds":0,"FailureThreshold":0,"TcpSocket":{"Port":0,"Host":""},"SuccessThreshold":0},"Args":null,"LivenessProbe":{"InitialDelaySeconds":0,"TimeoutSeconds":0,"Execs":null,"HttpGet":{"Path":"","Scheme":"","Port":0},"PeriodSeconds":0,"FailureThreshold":0,"TcpSocket":{"Port":0,"Host":""},"SuccessThreshold":0},"Memory":3,"Cpu":2,"Ports":null,"Image":"f3Vvoe2xPFxw6kUSJGHXeXk7Ob7WzgArfjQhvNDid2n6jw4RgLNBDm","Gpu":0,"PreviousState":{"Signal":0,"FinishTime":"","Message":"","State":"","ExitCode":0,"StartTime":"","DetailStatus":"","Reason":""},"StdinOnce":false,"Name":"FMmVAOJOizREv","Stdin":false,"RestartCount":0,"Ready":true,"WorkingDir":"","VolumeMounts":[{"MountPath":"mQ04r4IIq1kTBOPytVYjA4WUtQmFFw54LiGLT8WAHYPz3","ReadOnly":true,"Name":"jRWqTyH3ISam9nUFVhL8o"}],"ImagePullPolicy":"TKki5J","CurrentState":{"Signal":0,"FinishTime":"","Message":"","State":"Msvz6kI","ExitCode":0,"StartTime":"dwCO4ihBcT8c1CK4Ut6j","DetailStatus":"","Reason":""},"Commands":null,"SecurityContext":{"RunAsUser":0,"Capability":{"Adds":null},"ReadOnlyRootFilesystem":false},"Tty":false}],"Cpu":2,"EciSecurityContext":{"Sysctls":null},"FailedTime":"","ContainerGroupName":"Hp1OD86HMRPSzcDzSy0eM7ZDgpdFfa","IntranetIp":"cVdg1njZsdBdv","RamRoleName":"","Volumes":[],"DnsConfig":{"Options":[{"Value":"w","Name":"mQGgZ"}],"Searches":null,"NameServers":null},"InternetIp":"nTigSXlgBypZl","Events":[{"Type":"N1PpnE","LastTimestamp":"f9piCXoznvcMzoeV7A4t","Message":"kUIqXTYYjmaPrPhHxYgmZhaWQ8kkKp7","Count":1,"FirstTimestamp":"H2nbvqR7cTOGczNndJM6","Reason":"cQkyyOs","Name":"YPZA5DAFLy8hY73XCVWsBcUs9m267CXh0lVsgWx4GIVtO34"},{"Type":"9WhhWy","LastTimestamp":"6pV8E42TmN8iZQyX67qa","Message":"px0Btzwe8TEbt5iqwWOzTjayuRBsiFju","Count":1,"FirstTimestamp":"LHweqUCZdhNHEu5IMVY2","Reason":"22Jei8J","Name":"tfSfr0jFSvKLh5Ts7dvHBG0IZEQdsXrjRgrZTkegRyOlHuw"},{"Type":"UajRcf","LastTimestamp":"hbT5Q7SFtNT8JnEb86tI","Message":"xRP04UumozEp9jRT9DU4U1cCuLuhJqQApzcKdMr2fKtSrCZ1GE5Bkj2tlDHkkCP9yFniD0E7KxPex6YR9bioARAZAnGEcS8Fm7oI4io6lcSGsF4Qn4q3X9WNJnR0RGKorfnFmAIhOgu7BTulbnNt","Count":1,"FirstTimestamp":"ayqwfL7OlUllsO3qwpVh","Reason":"kzWreU","Name":"7vks9aFUghSwASm4ZMqHSZiFAm6vxY5EXiFMJXCtDWmOTBz"},{"Type":"zuRsMt","LastTimestamp":"meCx0elkG2BfIsGfcewm","Message":"b1yeyIlF8Nju6CjxXIqIlE6eNZLOMOH8mkiBqq1yNfQxzQmIiMfOCe4qp716W0YpBzYcdl","Count":1,"FirstTimestamp":"63sU9IaNPD89U1WHm1U3","Reason":"NBLNACN","Name":"YIPX87tMDPdDl0Tf9kxMye9JZ6WEcGJ9Bz91DT2QaTPXxPr"},{"Type":"b4hI63","LastTimestamp":"gDHccfUUJt0PPX4IJWW7","Message":"mHr0dnL2OB7BlPJG3iIZcwKDUGltWh6yAT8n7HdUBU11KsghkfHieePoC9kZJzMzVLJtd18gzUz0vyjTFvC6mB01FruwkxZPn4sqDzZPEUKAT4OqMgx","Count":1,"FirstTimestamp":"pbxtHK5UFNMvjGsn7pLr","Reason":"Pk2zKTKsP0SFdZYfdEBqaUB","Name":"Qdxdnd7bhdjomfkTjZYQNq9Dz6Y04kQmzU4i5C8ydhhdem2"},{"Type":"nr7tGh","LastTimestamp":"KyTBLzkD80MizLfVI6DJ","Message":"wbCNgIeR1rCSoX0riSlYj2env6SzTVMaIcX5nuPXgHuMiGT8jfR9Pfx3zqy8eR7XA8bL4wpcFVuVjlk3jozE8kD","Count":1,"FirstTimestamp":"81dgcsjbtEQiGhQP9H63","Reason":"DP23if7ox5NVlDENJjgFR","Name":"rw6QkC0PBTOY1xQkEKOpkwxaPg9AOqgTemCDNuxuFOsYKvP"},{"Type":"h92FkY","LastTimestamp":"MpvbIEmILECs0TuT24L2","Message":"6gHr9VLQuhRVGaidsd8YcCXB5nh8IM9lqwvbo6Kh6aROtUOnrFnu9xnnRmbpM3cxJYE15audif2ZP162KDhFewAS5","Count":1,"FirstTimestamp":"vhxxp3yI3NGQ9QzN02xA","Reason":"eIt1jqD3COAL0tEcr88I","Name":"idZToZqIrIS9st4cx7uVa6lEI1USwFOv7vXVd5IY8w8FCNa"}],"ExpiredTime":"","InstanceType":"","Ipv6Address":"","Tags":[{"Value":"HB0EVrXv9lIfrf4XuIn6sOFtOuw5aSnqwPse","Key":"iAg"},{"Value":"W85m","Key":"oy7qRRCP6RlCdb"},{"Value":"eQo3OqXHpfzE73VhooiRUtAAkqpBqD","Key":"Lbk7wHx"},{"Value":"tbp","Key":"keNTTRdCo"},{"Value":"40fdhykeP6hTK0V3RqEaYNkeA3YCNnXzi","Key":"IBVZYBmqYIKMY4"},{"Value":"XgXqnpAXcDs7o53QrqEsfEtQ14KUSbI9N","Key":"fxVMbDjBN"},{"Value":"LklWm4dZ2HRSh","Key":"QqX6DN4nWVUI0DMr7U"},{"Value":"plorhGxJiB","Key":"Qnr8MFHH3dfv7hcxBV"},{"Value":"0oLUPpQ","Key":"GkO6IPyl9"},{"Value":"wtlIKzlcqywI7Ix","Key":"XsouskIXFHRjq71wG9SceQT3SN3bVo"}],"Status":"TWdGd3B","InitContainers":[],"ZoneId":"1TdWD9f3qOX1A","SucceededTime":"","SecurityGroupId":"Osd53eTtIzHxfDfm84iyU3j","VSwitchId":"0OfQai3RbOAebfXkmihojOknm","RestartPolicy":"2E6Ql4","HostAliases":[{"Ip":"EKcuue8DKSE","Hostnames":["nkR8WTxfYALasdBiiB","jkkwAaFvZrZpIXNyiGSKNw"]}],"VpcId":"GcGfdtZo27hbNsNKh1wc0bPm8","CreationTime":"RlKrP4NQktWYvu3opN9u","EniInstanceId":"3WCmzLWsTvOlRGFDmKcTOUg2","ContainerGroupId":"7FmaZamhSeGFQmVqfK4pB1BL","RegionId":"0Xiquz8Bwdq"}} No newline at end of file
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

security (generic-api-key): Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

Source: gitleaks

@@ -0,0 +1 @@
{"ContainerGroup":{"Discount":0,"ResourceGroupId":"yeGiuPEQRJic3uCMd5","Memory":4,"Containers":[{"EnvironmentVars":[{"ValueFrom":{"FieldRef":{"FieldPath":""}},"Value":"etMBnAP1tmSkfwtYAI2elk43t6UVye60XLUYUFS3rrwaRiTwY5","Key":"MYJR57Oli"},{"ValueFrom":{"FieldRef":{"FieldPath":""}},"Value":"X7CDhMWflFPyu3oAKixmx5lxqvPAinBMoh68IBXQciK8AeoekoepyCX5GjIxcTqflb59C2ROaWxrrEdb8XgmBpyVkh6tua1Oj3FLhg9HAfPnLuAJUnx6CoQaTXEvZS4PIoEdDHB0HrtGL3iQIIus15nngr55CbiJ6UXuOM4zDqdnCzve5cCRmDCCR85cbZbBn0QRqhkpyvSgO4hqpYAuTCS70jd1xIUZ4TG1jB24Mh1MrKCxbIMlv0uthKulqxjnx6ICzcNat4cvzY5TT7gKNfViif6rGcd4","Key":"oMSl"},{"ValueFrom":{"FieldRef":{"FieldPath":""}},"Value":"Pf","Key":"YrZM"},{"ValueFrom":{"FieldRef":{"FieldPath":""}},"Value":"aE","Key":"EnysmFJB"},{"ValueFrom":{"FieldRef":{"FieldPath":""}},"Value":"k","Key":"E7h"},{"ValueFrom":{"FieldRef":{"FieldPath":""}},"Value":"X","Key":"bDM"},{"ValueFrom":{"FieldRef":{"FieldPath":""}},"Value":"N5ZdeNhkdOUv4","Key":"Zb5RTqrrscisRfzyC0w5AZE"},{"ValueFrom":{"FieldRef":{"FieldPath":""}},"Value":"hcwr","Key":"HIryIdgM9RaFoPYU7KUVrZN"},{"ValueFrom":{"FieldRef":{"FieldPath":""}},"Value":"GOul","Key":"mBM28VZ8odiwCSKV6Udn0xhS7xO7d"},{"ValueFrom":{"FieldRef":{"FieldPath":""}},"Value":"EY1fpLJ1nQ5xUHJuqIRfx","Key":"PCEM2bIN8M2iKnJ"},{"ValueFrom":{"FieldRef":{"FieldPath":""}},"Value":"t4bZni90nIHXNzkUiBQU6","Key":"5SGPtK8FUJm3LtfoN64ajiD"},{"ValueFrom":{"FieldRef":{"FieldPath":""}},"Value":"DhQ","Key":"oZoYuFtcKKmWS8BmsQiegRtBMtvZD"},{"ValueFrom":{"FieldRef":{"FieldPath":""}},"Value":"sAa","Key":"AlznwuUvekhh7JqqC6mIB46yvYdW"},{"ValueFrom":{"FieldRef":{"FieldPath":""}},"Value":"DeGxhLr2eSz","Key":"PHhhWmacvg7tFGQgcjwJGuKF3vzh"}],"ReadinessProbe":{"InitialDelaySeconds":0,"TimeoutSeconds":0,"Execs":null,"HttpGet":{"Path":"","Scheme":"","Port":0},"PeriodSeconds":0,"FailureThreshold":0,"TcpSocket":{"Port":0,"Host":""},"SuccessThreshold":0},"Args":null,"LivenessProbe":{"InitialDelaySeconds":0,"TimeoutSeconds":0,"Execs":null,"HttpGet":{"Path":"","Scheme":"","Port":0},"PeriodSeconds":0,"FailureThreshold":0,"TcpSocket":{"Port":0,"Host":""},"SuccessThreshold":0},"Memory":3,"Cpu":2,"Ports":null,"Image":"f3Vvoe2xPFxw6kUSJGHXeXk7Ob7WzgArfjQhvNDid2n6jw4RgLNBDm","Gpu":0,"PreviousState":{"Signal":0,"FinishTime":"","Message":"","State":"","ExitCode":0,"StartTime":"","DetailStatus":"","Reason":""},"StdinOnce":false,"Name":"FMmVAOJOizREv","Stdin":false,"RestartCount":0,"Ready":true,"WorkingDir":"","VolumeMounts":[{"MountPath":"mQ04r4IIq1kTBOPytVYjA4WUtQmFFw54LiGLT8WAHYPz3","ReadOnly":true,"Name":"jRWqTyH3ISam9nUFVhL8o"}],"ImagePullPolicy":"TKki5J","CurrentState":{"Signal":0,"FinishTime":"","Message":"","State":"Msvz6kI","ExitCode":0,"StartTime":"dwCO4ihBcT8c1CK4Ut6j","DetailStatus":"","Reason":""},"Commands":null,"SecurityContext":{"RunAsUser":0,"Capability":{"Adds":null},"ReadOnlyRootFilesystem":false},"Tty":false}],"Cpu":2,"EciSecurityContext":{"Sysctls":null},"FailedTime":"","ContainerGroupName":"Hp1OD86HMRPSzcDzSy0eM7ZDgpdFfa","IntranetIp":"cVdg1njZsdBdv","RamRoleName":"","Volumes":[],"DnsConfig":{"Options":[{"Value":"w","Name":"mQGgZ"}],"Searches":null,"NameServers":null},"InternetIp":"nTigSXlgBypZl","Events":[{"Type":"N1PpnE","LastTimestamp":"f9piCXoznvcMzoeV7A4t","Message":"kUIqXTYYjmaPrPhHxYgmZhaWQ8kkKp7","Count":1,"FirstTimestamp":"H2nbvqR7cTOGczNndJM6","Reason":"cQkyyOs","Name":"YPZA5DAFLy8hY73XCVWsBcUs9m267CXh0lVsgWx4GIVtO34"},{"Type":"9WhhWy","LastTimestamp":"6pV8E42TmN8iZQyX67qa","Message":"px0Btzwe8TEbt5iqwWOzTjayuRBsiFju","Count":1,"FirstTimestamp":"LHweqUCZdhNHEu5IMVY2","Reason":"22Jei8J","Name":"tfSfr0jFSvKLh5Ts7dvHBG0IZEQdsXrjRgrZTkegRyOlHuw"},{"Type":"UajRcf","LastTimestamp":"hbT5Q7SFtNT8JnEb86tI","Message":"xRP04UumozEp9jRT9DU4U1cCuLuhJqQApzcKdMr2fKtSrCZ1GE5Bkj2tlDHkkCP9yFniD0E7KxPex6YR9bioARAZAnGEcS8Fm7oI4io6lcSGsF4Qn4q3X9WNJnR0RGKorfnFmAIhOgu7BTulbnNt","Count":1,"FirstTimestamp":"ayqwfL7OlUllsO3qwpVh","Reason":"kzWreU","Name":"7vks9aFUghSwASm4ZMqHSZiFAm6vxY5EXiFMJXCtDWmOTBz"},{"Type":"zuRsMt","LastTimestamp":"meCx0elkG2BfIsGfcewm","Message":"b1yeyIlF8Nju6CjxXIqIlE6eNZLOMOH8mkiBqq1yNfQxzQmIiMfOCe4qp716W0YpBzYcdl","Count":1,"FirstTimestamp":"63sU9IaNPD89U1WHm1U3","Reason":"NBLNACN","Name":"YIPX87tMDPdDl0Tf9kxMye9JZ6WEcGJ9Bz91DT2QaTPXxPr"},{"Type":"b4hI63","LastTimestamp":"gDHccfUUJt0PPX4IJWW7","Message":"mHr0dnL2OB7BlPJG3iIZcwKDUGltWh6yAT8n7HdUBU11KsghkfHieePoC9kZJzMzVLJtd18gzUz0vyjTFvC6mB01FruwkxZPn4sqDzZPEUKAT4OqMgx","Count":1,"FirstTimestamp":"pbxtHK5UFNMvjGsn7pLr","Reason":"Pk2zKTKsP0SFdZYfdEBqaUB","Name":"Qdxdnd7bhdjomfkTjZYQNq9Dz6Y04kQmzU4i5C8ydhhdem2"},{"Type":"nr7tGh","LastTimestamp":"KyTBLzkD80MizLfVI6DJ","Message":"wbCNgIeR1rCSoX0riSlYj2env6SzTVMaIcX5nuPXgHuMiGT8jfR9Pfx3zqy8eR7XA8bL4wpcFVuVjlk3jozE8kD","Count":1,"FirstTimestamp":"81dgcsjbtEQiGhQP9H63","Reason":"DP23if7ox5NVlDENJjgFR","Name":"rw6QkC0PBTOY1xQkEKOpkwxaPg9AOqgTemCDNuxuFOsYKvP"},{"Type":"h92FkY","LastTimestamp":"MpvbIEmILECs0TuT24L2","Message":"6gHr9VLQuhRVGaidsd8YcCXB5nh8IM9lqwvbo6Kh6aROtUOnrFnu9xnnRmbpM3cxJYE15audif2ZP162KDhFewAS5","Count":1,"FirstTimestamp":"vhxxp3yI3NGQ9QzN02xA","Reason":"eIt1jqD3COAL0tEcr88I","Name":"idZToZqIrIS9st4cx7uVa6lEI1USwFOv7vXVd5IY8w8FCNa"}],"ExpiredTime":"","InstanceType":"","Ipv6Address":"","Tags":[{"Value":"HB0EVrXv9lIfrf4XuIn6sOFtOuw5aSnqwPse","Key":"iAg"},{"Value":"W85m","Key":"oy7qRRCP6RlCdb"},{"Value":"eQo3OqXHpfzE73VhooiRUtAAkqpBqD","Key":"Lbk7wHx"},{"Value":"tbp","Key":"keNTTRdCo"},{"Value":"40fdhykeP6hTK0V3RqEaYNkeA3YCNnXzi","Key":"IBVZYBmqYIKMY4"},{"Value":"XgXqnpAXcDs7o53QrqEsfEtQ14KUSbI9N","Key":"fxVMbDjBN"},{"Value":"LklWm4dZ2HRSh","Key":"QqX6DN4nWVUI0DMr7U"},{"Value":"plorhGxJiB","Key":"Qnr8MFHH3dfv7hcxBV"},{"Value":"0oLUPpQ","Key":"GkO6IPyl9"},{"Value":"wtlIKzlcqywI7Ix","Key":"XsouskIXFHRjq71wG9SceQT3SN3bVo"}],"Status":"TWdGd3B","InitContainers":[],"ZoneId":"1TdWD9f3qOX1A","SucceededTime":"","SecurityGroupId":"Osd53eTtIzHxfDfm84iyU3j","VSwitchId":"0OfQai3RbOAebfXkmihojOknm","RestartPolicy":"2E6Ql4","HostAliases":[{"Ip":"EKcuue8DKSE","Hostnames":["nkR8WTxfYALasdBiiB","jkkwAaFvZrZpIXNyiGSKNw"]}],"VpcId":"GcGfdtZo27hbNsNKh1wc0bPm8","CreationTime":"RlKrP4NQktWYvu3opN9u","EniInstanceId":"3WCmzLWsTvOlRGFDmKcTOUg2","ContainerGroupId":"7FmaZamhSeGFQmVqfK4pB1BL","RegionId":"0Xiquz8Bwdq"}} No newline at end of file
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

security (generic-api-key): Detected a Generic API Key, potentially exposing access to various services and sensitive operations.

Source: gitleaks

@j3ttt j3ttt merged commit 58f6d01 into antgroup:main Aug 29, 2025
1 check passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant