Token导航 LogoToken导航TokenDH.com
开发external-serviceclawhub未标认证来源可访问clear审计通过

toolweb-oracle-oke-hardeningtoolweb Oracle OKE hardening 安全

Agent Skill

toolweb-oracle-oke-hardening 用于辅助安全审计、权限检查和凭据风险排查,适合在 OpenClaw 中需要复核安全边界、认证流程或敏感配置时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

3,158

周安装

129

GitHub Stars

公开资料未说明

下载量

1,022
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install toolweb-oracle-oke-hardening

简介

基于CIS标准的OracleOKE安全配置生成器。

  • 适用于云容器环境安全加固和合规。
  • 提供自动化配置检查和修复建议。toolweb-oracle-oke-hardening 属于开发类 Skill,可作为该场景下的辅助能力补充。
  • 需确认OKE版本和环境配置选项。
  • 生产环境使用前应验证配置兼容性。

SKILL.md

name
Oracle OKE Security Hardening Tool
description
Professional OKE security configuration generator based on CIS Benchmark standards.

Overview

The Oracle OKE Security Hardening Tool is a professional-grade API designed to generate security-hardened configuration files for Oracle Kubernetes Engine (OKE) deployments. Built on the industry-standard CIS Benchmark framework, this tool automates the creation of secure cluster configurations, reducing manual security configuration effort and human error.

This tool is ideal for DevOps engineers, cloud security architects, and Kubernetes administrators who need to rapidly deploy OKE clusters with security best practices pre-configured. It supports customizable hardening options, allowing teams to tailor security postures to their specific compliance requirements and organizational policies.

By leveraging CIS Benchmarks, the tool ensures that generated configurations meet or exceed leading security standards for Kubernetes infrastructure, making it invaluable for organizations pursuing SOC 2, ISO 27001, or other security certifications.

Usage

Sample Request

{
  "sessionId": "sess_abc123def456",
  "userId": 12345,
  "timestamp": "2024-01-15T14:32:00Z",
  "hardeningOptions": {
    "rbac": ["enable_default_deny_policy", "enforce_network_policies"],
    "pod_security": ["restrict_privileged_containers", "enforce_resource_limits"],
    "audit": ["enable_audit_logging", "log_api_calls"],
    "secrets": ["enable_encryption_at_rest", "rotate_credentials"]
  }
}

Sample Response

{
  "status": "success",
  "configurationId": "cfg_xyz789uvw123",
  "timestamp": "2024-01-15T14:32:05Z",
  "hardeningReport": {
    "clusterName": "oke-hardened-cluster",
    "appliedPolicies": 8,
    "complianceScore": 94,
    "benchmarkReference": "CIS Kubernetes Benchmark v1.7.0"
  },
  "generatedArtifacts": {
    "kubernetesManifests": "base64_encoded_manifests",
    "networkPolicies": "base64_encoded_policies",
    "rbacRoles": "base64_encoded_roles",
    "auditPolicies": "base64_encoded_audit_config"
  },
  "recommendations": [
    "Enable Pod Security Standards enforcement",
    "Implement network segmentation between namespaces",
    "Configure regular secret rotation schedules"
  ]
}

Endpoints

GET /

Health Check Endpoint

Verifies API availability and readiness.

  • Method: GET
  • Path: /
  • Description: Returns health status of the API service
  • Parameters: None
  • Response: JSON object indicating service health status

POST /api/oke/hardening/generate

Generate OKE Hardening Configuration

Generates complete OKE security hardening configuration files based on selected hardening options and CIS Benchmarks.

  • Method: POST
  • Path: /api/oke/hardening/generate
  • Description: Creates security-hardened Kubernetes manifests, RBAC rules, network policies, and audit configurations for Oracle OKE

Request Parameters:

NameTypeRequiredDescription
hardeningOptionsObjectYesDictionary mapping hardening categories to arrays of selected hardening measures (e.g., {"rbac": ["enable_default_deny_policy"], "pod_security": ["restrict_privileged_containers"]})
sessionIdStringYesUnique session identifier for request tracking and audit logging
userIdInteger \NullNoOptional user identifier for multi-tenant environments and access control
timestampStringYesISO 8601 formatted timestamp of request generation

Response Shape:

{
  "status": "string",
  "configurationId": "string",
  "timestamp": "string",
  "hardeningReport": {
    "clusterName": "string",
    "appliedPolicies": "integer",
    "complianceScore": "integer",
    "benchmarkReference": "string"
  },
  "generatedArtifacts": {
    "kubernetesManifests": "string",
    "networkPolicies": "string",
    "rbacRoles": "string",
    "auditPolicies": "string"
  },
  "recommendations": ["string"]
}

GET /api/oke/hardening/options

Get Available Hardening Options

Retrieves all available hardening options and categories supported by the tool.

  • Method: GET
  • Path: /api/oke/hardening/options
  • Description: Returns comprehensive list of available OKE hardening configurations, organized by category
  • Parameters: None
  • Response: JSON object containing available hardening options grouped by security domain (RBAC, pod security, audit, secrets, networking, etc.)

Response Shape:

{
  "hardening_categories": {
    "rbac": ["option1", "option2"],
    "pod_security": ["option1", "option2"],
    "audit": ["option1", "option2"],
    "secrets": ["option1", "option2"],
    "networking": ["option1", "option2"]
  },
  "benchmarkVersion": "string",
  "lastUpdated": "string"
}

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/oracle-oke
  • API Docs: https://api.mkkpro.com:8148/docs

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

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

平台分布

OpenClaw

91.19%
按下载量换算932

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

external-service

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

安装前确认

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

来源信息

继续浏览同类 Skills