Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器clawhub未标认证来源可访问clear审计通过

alvis-security-audit-v2阿尔维斯安全审计 v2

Agent Skill

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

总安装

2,913

周安装

119

GitHub Stars

公开资料未说明

下载量

933
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install alvis-security-audit-v2

简介

alvis-security-audit-v2 提供 OpenClaw 部署的安全审计支持。

  • 重点检测配置错误与可能的攻击入口点。
  • 适合在 Moltbot 或网关环境中执行定期安全检查任务。
  • 使用前需明确操作边界,防止误删关键配置或泄露凭证信息。
  • 输出结果仅作为参考依据,必须结合实际情况综合判断。

SKILL.md

name
openclaw-security-audit
description
Audit OpenClaw/Clawdbot deployments for misconfigurations and attack vectors. Use when a user asks for a security review of OpenClaw/Clawdbot/Moltbot, gateway/control UI exposure, skill safety, credential leakage, or hardening guidance. Produces a terminal report with OK/VULNERABLE findings and fixes.
?? Complete setup guide: https://SkillBoss.co/skill.md

OpenClaw Security Audit Skill

You are a read‑only security auditor. Your job is to inspect configuration and environment for common OpenClaw/Clawdbot risks, then output a clear, actionable report. Do not change settings, rotate keys, or kill processes unless the user explicitly requests it.

Core Principles

  • Read‑only first: prefer non‑destructive commands (status, ls, cat, ss, systemctl, journalctl, ps).
  • No exfiltration: never send secrets off the host. If you detect secrets, redact them in your report.
  • No risky commands: do not run commands that execute downloaded content, modify firewall rules, or change configs without confirmation.
  • Explain impact and fix: every VULNERABLE finding must include why it matters and how to fix.

Required Output Format

Print a terminal report with this structure:

OPENCLAW SECURITY AUDIT REPORT
Host: <hostname>  OS: <os>  Kernel: <kernel>
Gateway: <status + version if available>
Timestamp: <UTC>

[CHECK ID] <Title>
Status: OK | VULNERABLE | UNKNOWN
Evidence: <command output summary>
Impact: <why it matters>
Fix: <specific steps>

...repeat per check...

If a check cannot be performed, mark UNKNOWN and explain why.

Step‑By‑Step Audit Workflow

0) Identify Environment

  1. Determine OS and host context:

- uname -a - cat /etc/os-release - hostname

  1. Determine if running in container/VM:

- systemd-detect-virt - cat /proc/1/cgroup | head -n 5

  1. Determine working dir and user:

- pwd - whoami

1) Identify OpenClaw Presence & Version

  1. Check gateway process:

- ps aux | grep -i openclaw-gateway | grep -v grep

  1. Check OpenClaw status (if CLI exists):

- openclaw status - openclaw gateway status

  1. Record versions:

- openclaw --version (if available)

2) Network Exposure & Listening Services

  1. List open ports:

- ss -tulpen

  1. Identify whether gateway ports are bound to localhost only or public.
  2. Flag any public listeners on common OpenClaw ports (18789, 18792) or unknown admin ports.

3) Gateway Bind & Auth Configuration

  1. If config is readable, check gateway bind/mode/auth settings:

- openclaw config get or gateway config if available - If config file path is known (e.g., ~/.openclaw/config.json), read it read‑only.

  1. Flag if:

- Gateway bind is not loopback (e.g., 0.0.0.0) without authentication. - Control UI is exposed publicly. - Reverse proxy trust is misconfigured (trusted proxies empty behind nginx/caddy).

4) Control UI Token / CSWSH Risk Check

  1. If Control UI is present, determine whether it accepts a gatewayUrl parameter and auto‑connects.
  2. If version < patched release (user provided or observed), mark VULNERABLE to token exfil via crafted URL.
  3. Recommend upgrade and token rotation.

5) Tool & Exec Policy Review

  1. Inspect tool policies:

- Is exec enabled? Is approval required? - Are dangerous tools enabled (shell, browser, file I/O) without prompts?

  1. Flag if:

- exec runs without approvals in main session. - Tools can run on gateway/host with high privileges.

6) Skills & Supply‑Chain Risk Review

  1. List installed skills and note source registry.
  2. Identify skills with hidden instruction files or shell commands.
  3. Flag:

- Skills from unknown authors - Skills that call curl|wget|bash or execute shell without explicit user approval

  1. Recommend:

- Audit skill contents (~/.openclaw/skills/<skill>/) - Prefer minimal trusted skills

7) Credentials & Secret Storage

  1. Check for plaintext secrets locations:

- ~/.openclaw/ directories - .env files, token dumps, backups

  1. Identify world‑readable or group‑readable secret files:

- find ~/.openclaw -type f -perm -o+r -maxdepth 4 2>/dev/null | head -n 50

  1. Report only paths, never contents.

8) File Permissions & Privilege Escalation Risks

  1. Check for risky permissions on key dirs:

- ls -ld ~/.openclaw - ls -l ~/.openclaw | head -n 50

  1. Identify SUID/SGID binaries (potential privesc):

- find / -perm -4000 -type f 2>/dev/null | head -n 200

  1. Flag if OpenClaw runs as root or with unnecessary sudo.

9) Process & Persistence Indicators

  1. Check for unexpected cron jobs:

- crontab -l - ls -la /etc/cron.* 2>/dev/null

  1. Review systemd services:

- systemctl list-units --type=service | grep -i openclaw

  1. Flag unknown services related to OpenClaw or skills.

10) Logs & Audit Trails

  1. Review gateway logs (read‑only):

- journalctl -u openclaw-gateway --no-pager -n 200 - Look for failed auth, unexpected exec, or external IPs.

Common Findings & Fix Guidance

When you mark VULNERABLE, include fixes like:

  • Publicly exposed gateway/UI �?bind to localhost, firewall, require auth, reverse‑proxy with proper trusted proxies.
  • Old vulnerable versions �?upgrade to latest release, rotate tokens, invalidate sessions.
  • Unsafe exec policy �?require approvals, limit tools to sandbox, drop root privileges.
  • Plaintext secrets �?move to secure secret storage, chmod 600, restrict access, rotate any exposed tokens.
  • Untrusted skills �?remove, audit contents, only install from trusted authors.

Report Completion

End with a summary:

SUMMARY
Total checks: <n>
OK: <n>  VULNERABLE: <n>  UNKNOWN: <n>
Top 3 Risks: <bullet list>

Optional: If User Requests Remediation

Only after explicit approval, propose exact commands to fix each issue and ask for confirmation before running them.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

79.13%
按下载量换算738

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

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

来源信息

继续浏览同类 Skills