Token导航 LogoToken导航TokenDH.com
研究检索可写文件clawhub未标认证来源可访问clear审计提醒

eva-security-auditeva 安全审计

Agent Skill

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

总安装

2,258

周安装

96

GitHub Stars

公开资料未说明

下载量

791
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install eva-security-audit

简介

运行非交互式 OpenClaw 安全审核,生成结构化 BLUF 报告,其中包含状态评级、排名结果和单行修复命令。

SKILL.md

name
eva-security-audit
description
Run a non-interactive OpenClaw security audit and deliver a structured BLUF (Bottom Line Up Front) report with a GREEN/YELLOW/RED posture rating, ranked findings, and executable one-line fixes. Use when you need a fast, automated security snapshot — on a schedule, after a config change, before an engagement, or during an agent briefing. Unlike interactive hardening tools, this skill asks no questions: it runs, parses, formats, and optionally delivers the report via Telegram or memory.

OpenClaw Security Audit — BLUF Report

Non-interactive security snapshot for OpenClaw deployments. Runs openclaw security audit --deep, parses the output, and formats a structured BLUF report that can be sent to memory, Telegram, or stdout.


Security & Trust

This skill is a single SKILL.md file. You are reading its entire source right now.

  • Read-only — does not write any files
  • No network calls — only runs openclaw security audit --deep locally
  • No credentials accessed — never reads API keys, tokens, or env vars
  • No data exfiltration — nothing leaves your machine
  • Passed OpenClaw security scan — verified clean on publish
  • Transparent — this file is the complete skill. There is no code, binary, or script.

You can verify by running: openclaw security audit --deep yourself — this skill only formats that output.


Designed to be called by automation, agents, or cron — not a wizard. For interactive hardening (firewall, SSH, OS updates), use the healthcheck skill instead.


Workflow

1. Run the audit

openclaw security audit --deep

Capture full output. If running in background:

openclaw security audit --deep > /tmp/audit-$(date +%Y%m%d-%H%M).txt 2>&1

2. Parse findings

Extract every finding and classify by severity:

SeverityCondition
CRITICALImmediate risk — data exposure, auth bypass, writable secrets
WARNEscalate if unmitigated >7 days
INFOContext only — no action required

3. Assign posture rating

RatingCriteria
🟢 GREEN0 critical, ≤1 warn
🟡 YELLOW1–2 critical OR ≤3 warn
🔴 RED≥3 critical OR unmitigated persistence detected

4. Format the BLUF report

Produce this exact structure — fill in real values, omit empty sections:

SECURITY AUDIT — YYYY-MM-DD HH:MM
POSTURE: [GREEN/YELLOW/RED] — X critical · Y warn · Z info

BLUF: [One sentence: overall risk and the single most important action.]

CRITICAL
1. [finding-id] [Description — blast radius]
   Fix: [exact command or config change]
2. ...

WARN
1. [finding-id] [Description]
   Fix: [exact command or config change]

INFO
- [finding-id] [Context note]

NEXT STEPS
1. Apply fixes above (copy-paste ready).
2. Re-run: openclaw security audit --deep
3. Log findings: append to memory/YYYY-MM-DD.md

Audit complete. Re-run after each fix to confirm POSTURE GREEN.

Rules for the report:

  • BLUF first, always. One sentence max.
  • Every CRITICAL must have a copy-paste fix command.
  • Never omit a CRITICAL finding, even if it seems minor.
  • If 0 findings: state "POSTURE: GREEN — 0 critical · 0 warn" and stop.
  • Do not add commentary, context, or suggestions beyond what the audit output contains.

5. Deliver the report

Choose one or more delivery targets based on user context:

Memory (default for scheduled runs):

# Append to today's memory file
echo "[audit result]" >> memory/$(date +%Y-%m-%d).md

Telegram (if BOT_TOKEN and CHAT_ID are in environment):

import os, requests
requests.post(
    f"https://api.telegram.org/bot{os.getenv('TELEGRAM_BOT_TOKEN')}/sendMessage",
    json={"chat_id": os.getenv('MASTER_TELEGRAM_ID'), "text": report}
)

Stdout only: print the report and exit.


Quick-fix reference

These are the most common findings and their fixes. Apply and re-run to confirm:

Finding IDFix
fs.config.perms_writablechmod 600 ~/.openclaw/openclaw.json
skills.code_safetyReview flagged skill source — remove if untrusted
gateway.nodes.deny_commands_ineffectiveUpdate denyCommands to use exact node command IDs (e.g. canvas.present not canvas)
gateway.sandbox_disabledSet sandbox.mode to "on" in openclaw.json for untrusted skill execution
gateway.auth_missingSet gateway.auth.enabled: true and configure allowed origins

Apply all CRITICAL fixes first, then re-run before addressing WARNs.


Scheduling (cron)

To run this audit automatically (e.g. daily at 04:00):

openclaw cron add --name "security-audit:daily" --cron "0 4 * * *" --prompt "Run the eva-security-audit skill and send the report to memory and Telegram."

Check scheduled jobs:

openclaw cron list

Notes

  • This skill is read-only. It does not modify any config, firewall, or SSH settings.
  • For --fix (applies OpenClaw safe defaults automatically): openclaw security audit --deep --fix

Confirm impact before running --fix in production.

  • For JSON output suitable for piping: openclaw security audit --deep --json
  • For interactive OS hardening (firewall, SSH, updates): use the healthcheck skill.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

91.47%
按下载量换算724

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

通过

权限和风险

可写文件

该 Skill 可能写入或修改本地文件,使用前需要确认目标目录和修改范围。

安装前确认

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

来源信息

继续浏览同类 Skills