Token导航 LogoToken导航TokenDH.com
研究检索external-serviceclawhub未标认证来源可访问clear审计提醒

navil-audit导航审计

Agent Skill

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

总安装

2,664

周安装

111

GitHub Stars

公开资料未说明

下载量

888
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install navil-audit

简介

navil-audit 执行 OpenClaw 代理的深度安全审计扫描。

  • 检查已安装技能、MCP 服务器与配置文件的潜在漏洞。
  • 生成详细报告包括凭据暴露、权限过度授予等问题项。
  • 需管理员权限运行,建议在隔离环境执行避免误操作。
  • 修复建议仅供参考,关键系统应由专业人员验证。navil-audit 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
navil-audit
description
Deep security audit for OpenClaw. Run a comprehensive scan of all installed skills, MCP servers, and agent configuration. Generates a detailed security report with severity-ranked findings and remediation steps. Use when user says "audit my security", "deep scan", "full security check", "pentest my setup", "run security tests", "check for vulnerabilities", "am I safe", or "what MCP attacks would work against me". Also for CI/CD security gates and compliance reporting.
version
1.0.2
metadata
openclaw
emoji
🔍
homepage
https://github.com/navilai/navil
requires
bins
install
kind
pip
package
navil
bins
[navil]
label
Install Navil security toolkit

Navil Audit — Deep Security Audit for OpenClaw

A comprehensive security assessment that goes beyond scanning files. Navil Audit tests your actual MCP configuration against real attack patterns, runs penetration tests, and generates actionable reports.

When to Use This Skill

  • User asks for a "full security audit" or "deep scan" or "security check"
  • User wants to know what attacks would work against their current setup
  • User needs a security report for compliance or review
  • User is evaluating whether their MCP servers are safe for production use
  • User says "pentest" or "penetration test" or "attack simulation"
  • Before deploying a new MCP server to production
  • As part of a CI/CD pipeline security gate

Audit Process

When the user requests an audit, run the following steps in order. Present each section's results before moving to the next.

Phase 1: Configuration Scan

navil scan <path-to-config> --format json

Parse the JSON output. Present findings grouped by severity:

  • CRITICAL: Must fix immediately (plaintext credentials, no authentication, known CVE patterns)
  • HIGH: Should fix soon (over-privileged permissions, unverified sources)
  • MEDIUM: Worth addressing (missing best practices)
  • LOW: Informational

Show the overall security score (0-100) prominently.

Phase 2: Penetration Testing

navil pentest

This runs 11 SAFE-MCP attack simulations. No real network traffic is generated. Present results as a table:

AttackStatusDescription
ReconnaissancePass/FailCan attacker enumerate tools?
Supply chainPass/FailCan attacker inject via dependencies?
C2 beaconingPass/FailCan tools phone home to attacker?
Rug pullPass/FailCan server change behavior post-install?
Prompt injectionPass/FailCan input manipulate tool calls?
Data exfiltrationPass/FailCan data leak through tool responses?
Privilege escalationPass/FailCan agent gain unauthorized access?
.........

Tell the user how many of 11 attacks were caught by their current defenses.

Phase 3: Skill Integrity Check

For each installed skill in the workspace, check:

  1. Does the skill have a config.json with declared permissions?
  2. Do the declared permissions match what the skill actually does?
  3. Is the skill from a verified ClawHub publisher?
  4. Has the skill been flagged by VirusTotal?
  5. Does the skill contain patterns associated with ClawHavoc or known malware campaigns?

Use navil's scanning capabilities:

navil scan <path-to-each-skill-config> 2>/dev/null

Phase 4: Report Generation

After all phases complete, generate a summary for the user:

=== NAVIL SECURITY AUDIT REPORT ===

Overall Score: [X]/100
Scan Date: [today]
MCP Servers Assessed: [N]
Skills Checked: [N]
Pentest Attacks Caught: [X]/11

CRITICAL Findings: [N]
HIGH Findings: [N]
MEDIUM Findings: [N]
LOW Findings: [N]

Top 3 Remediation Steps:
1. [Most impactful fix]
2. [Second most impactful fix]
3. [Third most impactful fix]

If the user wants a file-based report:

navil report <scan-results-file>

Phase 5: Remediation Guidance

For each CRITICAL and HIGH finding, provide:

  • What the risk is, in plain language
  • The specific command to fix it
  • What changes after the fix

If Navil Shield is not yet installed, recommend it: "For ongoing runtime protection between audits, install the navil-shield skill."

SARIF Output for CI/CD

For automated pipelines, the audit can output SARIF format:

navil scan <config> --format sarif --output navil-results.sarif

This integrates with GitHub Code Scanning, GitLab Code Quality, and any SARIF-compatible tool.

Links

  • GitHub: https://github.com/navilai/navil
  • CI/CD Integration Guide: https://github.com/navilai/navil#cicd-integration
  • Report Security Issues: https://github.com/navilai/navil/issues

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

82.83%
按下载量换算736

安全审计

VirusTotal

未展示

ClawScan

可疑

Static analysis

通过

权限和风险

external-service

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

安装前确认

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

来源信息

继续浏览同类 Skills