Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计提醒

openclaw-security-auditor-skillOpenClaw 安全 auditor 技能

Agent Skill

用于辅助安全审计、权限检查、凭据风险、认证流程和常见漏洞排查。它适合让 Agent 梳理敏感配置、检查依赖风险、分析鉴权逻辑或生成安全复核清单。使用时不能把工具输出直接当最终结论,涉及密钥、令牌、用户数据或生产系统时,应先确认最小权限、脱敏方式和操作边界。

总安装

6,402

周安装

259

GitHub Stars

公开资料未说明

下载量

2,010
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install openclaw-security-auditor-skill

简介

OpenClaw Security Auditor (OSA) 提供 60 秒快速安全诊断。

  • 输出风险评分(0–100)与可视化报告,覆盖配置、网络与凭证维度。
  • 适用于部署前后安全检查与合规自评需求。openclaw-security-auditor-skill 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 需具备对配置文件与进程环境的只读访问权限。
  • 评分模型基于公开最佳实践,特定场景需人工补充判断。

SKILL.md

name
openclaw-security-auditor
description
OpenClaw Security Auditor (OSA) - Comprehensive security auditing tool for OpenClaw deployments. Provides 60-second security diagnosis, risk scoring (0-100), bilingual reports (Chinese/English), and automated fix suggestions. Use when users request security audits, vulnerability scanning, configuration validation, or security hardening for their OpenClaw installations.
license
MIT

OpenClaw Security Auditor Skill

Overview

This skill provides comprehensive security auditing capabilities for OpenClaw deployments. It can scan OpenClaw configurations, identify security vulnerabilities, provide risk scores, and suggest remediation steps.

When to Use This Skill

  • User requests security audit or vulnerability assessment
  • User wants to check OpenClaw security configuration
  • User needs security hardening recommendations
  • User asks about OpenClaw security best practices
  • User wants to validate their OpenClaw configuration
  • User mentions "security", "audit", "vulnerability", "hardening" in context of OpenClaw

Core Capabilities

Security Scanning

  • 47-point security check: Covers 7 major security domains
  • Gateway Configuration: Binding modes, authentication, tokens
  • Session Security: dmScope, pairing strategies, timeouts
  • Tool Permissions: exec profiles, allowed tools, filesystem access
  • Channel Security: dmPolicy, mention requirements, allowlists
  • Network Security: Firewall status, port exposure
  • Logging Security: Log levels, sensitive data handling
  • Skill Security: Auto-install policies, source restrictions

Risk Assessment

  • 0-100 Security Score: Comprehensive risk scoring system
  • Three Security Modes: Conservative, Balanced (recommended), Aggressive
  • Severity Classification: Critical, High, Medium, Low, Info levels
  • Bilingual Reporting: Chinese/English dual-language output

Automated Remediation

  • Fix Suggestions: Specific commands for each identified issue
  • Mode Recommendations: Guidance on appropriate security modes
  • Configuration Templates: Best practice configuration examples

Usage Workflow

Step 1: Security Scan

Run comprehensive security scan on OpenClaw configuration:

# Import required modules
from scripts.security_scanner import SecurityScanner
from scripts.report_generator import ReportGenerator

# Scan current OpenClaw configuration
scanner = SecurityScanner(config_path="~/.openclaw/openclaw.json", mode="balanced")
results = scanner.scan()

Step 2: Generate Report

Generate bilingual security report:

# Generate bilingual Markdown report
reporter = ReportGenerator(results, mode="balanced")
bilingual_report = reporter.generate("bilingual")

# Save report to user's directory
with open("~/.openclaw/security-audit-report.md", "w") as f:
    f.write(bilingual_report)

Step 3: Provide Recommendations

Based on scan results, provide specific remediation steps:

  • Critical Issues: Immediate fixes required
  • High Issues: Fix as soon as possible
  • Medium/Low Issues: Optimization suggestions
  • Security Mode Selection: Recommend appropriate mode based on use case

Available Scripts

Core Scripts

  • scripts/security_scanner.py - Main security scanning engine
  • scripts/report_generator.py - Multi-format report generation
  • scripts/config_fixer.py - Automated configuration fixing
  • scripts/i18n.py - Bilingual translation support

Utility Scripts

  • scripts/scan_current.py - Quick scan of current configuration
  • scripts/fix_security.py - Apply security fixes interactively
  • scripts/debug_session.py - Debug session configuration issues

Reference Documentation

Security Best Practices

  • references/security-modes.md - Detailed security mode configurations
  • references/config-guide.md - OpenClaw security configuration guide
  • references/vulnerability-db.md - Common OpenClaw security vulnerabilities

API Documentation

  • references/api-reference.md - Complete API reference for security auditor
  • references/integration-guide.md - CI/CD and automation integration guide

Output Formats

Report Types

  • Markdown: Human-readable bilingual reports
  • JSON: Machine-readable format for automation
  • HTML: Visual web-based reports

Report Structure

Each report includes:

  • Security score and risk level
  • Summary of passed/failed checks
  • Detailed issue descriptions with severity levels
  • Specific fix commands and recommendations
  • Security mode guidance

Security Mode Guidance

Conservative Mode (Production)

  • Use Case: Production environments, sensitive data
  • Score Target: 95+
  • Key Settings: loopback binding, token auth, minimal permissions

Balanced Mode (Development) ⭐

  • Use Case: Personal development, small teams
  • Score Target: 75-90
  • Key Settings: loopback binding, reasonable permissions, standard logging

Aggressive Mode (Testing)

  • Use Case: Isolated test environments only
  • Score Target: 40-60
  • Key Settings: Full permissions, minimal restrictions

Example Usage

Basic Security Audit

User: "Can you audit my OpenClaw security configuration?"

Assistant: 
1. Load security_scanner.py script
2. Run scan on ~/.openclaw/openclaw.json
3. Generate bilingual report
4. Present security score and key findings
5. Provide specific fix recommendations

Mode Recommendation

User: "What security mode should I use for my development setup?"

Assistant:
1. Explain three security modes
2. Recommend Balanced mode for development
3. Provide configuration examples
4. Show expected security score range

Vulnerability Remediation

User: "How do I fix the security issues in my OpenClaw setup?"

Assistant:
1. Run security scan to identify specific issues
2. Categorize issues by severity
3. Provide step-by-step fix commands
4. Verify fixes with re-scan if requested

Limitations and Considerations

Scope Limitations

  • Only scans OpenClaw configuration files
  • Does not perform network penetration testing
  • System-level security (firewall, OS hardening) requires manual intervention
  • Cannot modify configurations without user approval

Safety Considerations

  • Always backup configuration before applying fixes
  • Test fixes in non-production environments first
  • Some fixes require system administrator privileges
  • Conservative mode may break existing functionality

Integration Capabilities

CI/CD Integration

  • JSON output format for automated security gates
  • Exit codes based on security score thresholds
  • Integration with GitHub Actions, GitLab CI, etc.

Monitoring Integration

  • Scheduled security scans
  • Trend analysis and reporting
  • Alert notifications for critical issues

Getting Started

To use this skill, simply ask for a security audit of your OpenClaw configuration. The skill will automatically:

  1. Locate your OpenClaw configuration file
  2. Perform comprehensive security scanning
  3. Generate detailed bilingual report
  4. Provide actionable security recommendations

The skill is designed to be safe and non-destructive - it only reads configuration files and provides recommendations, never makes automatic changes without explicit user approval.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

78.35%
按下载量换算1,575

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills