Token导航 LogoToken导航TokenDH.com
云服务external-serviceclawhub未标认证来源可访问clear审计提醒

toolweb-azure-aks-hardeningtoolweb Azure AKS hardening 部署

Agent Skill

用于辅助云资源、部署、容器、基础设施和运维自动化任务。它适合让 Agent 检查配置、整理部署步骤、分析资源状态、生成排障思路或辅助云服务接入。使用时需要明确目标环境、账号权限、区域和资源组,区分本地测试与生产操作;涉及删除资源、重启服务、修改网络或权限配置时,应先确认影响范围。

总安装

2,869

周安装

122

GitHub Stars

公开资料未说明

下载量

1,005
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:toolweb-azure-aks-hardening(toolweb Azure AKS hardening 部署)
来源仓库:https://github.com/krishnakumarmahadevan-cmd/toolweb-azure-aks-hardening
安装命令:
openclaw skills install toolweb-azure-aks-hardening
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install toolweb-azure-aks-hardening

简介

生成符合 CIS v1.8.0 规范的 Azure Kubernetes 服务 (AKS) 配置以进行安全强化。

SKILL.md

name
CIS Azure AKS Hardening Tool
description
Generates CIS v1.8.0 compliant Azure Kubernetes Service (AKS) configurations for security hardening.

Overview

The CIS Azure AKS Hardening Tool is a specialized API that automates the generation of security-hardened Azure Kubernetes Service (AKS) configurations aligned with CIS Benchmarks v1.8.0. This tool eliminates manual hardening efforts by producing validated, compliance-ready configurations tailored to your specific security requirements.

The tool enables DevSecOps engineers, cloud architects, and security teams to rapidly deploy AKS clusters that meet stringent security standards. It accepts flexible hardening options, processes them against CIS best practices, and returns production-ready configuration outputs. Whether you're managing a single cluster or an enterprise fleet, this tool ensures consistent, auditable security postures across your Kubernetes infrastructure on Azure.

Ideal users include organizations requiring CIS compliance, enterprises undergoing security audits, teams building security-as-code pipelines, and cloud teams seeking to reduce manual hardening overhead.

Usage

Sample Request

Generate a hardened AKS cluster configuration with specific security controls enabled:

{
  "sessionId": "sess-azure-hardening-2024-001",
  "hardeningOptions": {
    "apiServer": ["audit-logging", "authorization-mode-rbac"],
    "kubelet": ["read-only-port-disabled", "streaming-connection-idle-timeout"],
    "networking": ["network-policies-enabled", "service-accounts-isolated"],
    "compliance": ["cis-v1.8.0"]
  },
  "userId": "user-secteam-123",
  "timestamp": "2024-01-15T10:30:00Z"
}

Sample Response

{
  "status": "success",
  "sessionId": "sess-azure-hardening-2024-001",
  "hardenerVersion": "1.0.0",
  "cisVersion": "1.8.0",
  "configurations": {
    "apiServer": {
      "audit-logging": {
        "enabled": true,
        "parameters": {
          "policy": "advanced",
          "maxAge": 30,
          "maxBackup": 10,
          "maxSize": 100
        }
      },
      "authorization-mode-rbac": {
        "enabled": true,
        "modes": ["RBAC"]
      }
    },
    "kubelet": {
      "read-only-port-disabled": {
        "enabled": true,
        "readOnlyPort": 0
      },
      "streaming-connection-idle-timeout": {
        "enabled": true,
        "timeoutSeconds": 5400
      }
    },
    "networking": {
      "network-policies-enabled": {
        "enabled": true,
        "provider": "azure"
      },
      "service-accounts-isolated": {
        "enabled": true
      }
    }
  },
  "complianceScore": 94.5,
  "warnings": [],
  "recommendations": [
    "Enable Pod Security Standards for additional defense-in-depth",
    "Implement network policies for all namespaces"
  ],
  "generatedAt": "2024-01-15T10:30:15Z"
}

Endpoints

POST /api/aks/generate

Generates CIS v1.8.0 compliant AKS hardening configurations based on provided options.

Method: POST

Path: /api/aks/generate

What it does: Processes a hardening request containing security control options and returns a complete, validated AKS configuration that meets CIS Benchmarks v1.8.0 standards.

Parameters:

NameTypeRequiredDescription
hardeningOptionsobjectYesKey-value mapping where keys are control categories (e.g., "apiServer", "kubelet", "networking") and values are arrays of specific hardening controls to enable
sessionIdstringYesUnique session identifier for tracking and auditing the hardening request
userIdstringNoOptional user identifier for attribution and audit logs
timestampstringNoISO 8601 formatted timestamp of the request (e.g., "2024-01-15T10:30:00Z")

Response (200):

Returns a JSON object containing:

  • status: Operation status ("success" or "error")
  • sessionId: Echo of the request session ID
  • hardenerVersion: API version used
  • cisVersion: CIS Benchmark version applied (1.8.0)
  • configurations: Nested object with hardened settings organized by control category
  • complianceScore: Numeric score (0-100) indicating compliance level
  • warnings: Array of non-critical alerts
  • recommendations: Array of suggested additional security measures
  • generatedAt: Timestamp when configuration was generated

Response (422):

Validation error response containing:

  • detail: Array of validation errors with loc (field location), msg (error message), and type (error classification)

GET /

Root endpoint health check and API information.

Method: GET

Path: /

What it does: Returns basic API information and service status.

Parameters: None

Response (200):

Returns JSON object with API metadata and health status.

Pricing

PlanCalls/DayCalls/MonthPrice
Free550Free
Developer20500$39/mo
Professional2005,000$99/mo
Enterprise100,0001,000,000$299/mo

About

ToolWeb.in - 200+ security APIs, CISSP & CISM, platforms: Pay-per-run, API Gateway, MCP Server, OpenClaw, RapidAPI, YouTube.

References

  • Kong Route: https://api.mkkpro.com/hardening/azure-aks
  • API Docs: https://api.mkkpro.com:8149/docs

适合场景

01

Azure 资源规划

02

云服务升级

03

基础设施检查

04

企业云环境自动化

能力概览

能力 1

整理 Azure 服务操作流程

能力 2

提示 CLI/MCP 前置条件

能力 3

辅助云资源检查和规划

能力 4

保留官方服务来源线索

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

82.38%
按下载量换算828

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills