Token导航 LogoToken导航TokenDH.com
开发敏感数据github未标认证来源可访问许可证需确认审计通过

web-security网络安全

Agent Skill

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

总安装

396

周安装

17

GitHub Stars

4

下载量

139
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/alphaonedev/openclaw-graph --skill web-security

简介

web-security 基于 OWASP Top 10 提供安全审计能力,涵盖 CSP、CORS、XSS/CSRF 防护及依赖扫描。

  • 适用于 Web 应用开发、部署前的安全检查以及 API 鉴权逻辑审查等场景。
  • 可生成安全复核清单并识别常见漏洞,但不能替代人工最终判断。
  • 使用时应确保最小权限原则,敏感数据需脱敏处理,避免直接在生产环境执行高风险操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

web-security

Purpose

This skill enables developers to implement and audit web security measures based on OWASP Top 10 guidelines, including CSP, CORS, XSS/CSRF prevention, authentication patterns, and dependency scanning. It focuses on protecting web applications from common vulnerabilities like injection attacks and unauthorized access.

When to Use

Use this skill during web application development, security audits, or deployments. Apply it when building APIs, handling user authentication, configuring cross-origin requests, or scanning dependencies for known vulnerabilities. Ideal for projects using frameworks like Express.js or React, or when integrating third-party libraries.

Key Capabilities

  • OWASP Top 10 Scanning: Detects issues like SQL injection and broken authentication; use built-in checks via openclaw web-security scan --owasp.
  • CSP Configuration: Generates Content Security Policy headers; example: set policy with openclaw web-security csp --policy "default-src 'self'"
  • CORS Management: Enforces Cross-Origin Resource Sharing; configure with openclaw web-security cors --allow "https://example.com".
  • XSS/CSRF Prevention: Provides sanitization functions and token generation; e.g., inject anti-CSRF in code: const token = generateCSRFToken(); res.setHeader('X-CSRF-Token', token);
  • Authentication Patterns: Implements JWT or session-based auth; scan for weaknesses with openclaw web-security auth --check.
  • Dependency Scanning: Analyzes npm/yarn packages for vulnerabilities; run with openclaw web-security depscan --path./package.json.

Usage Patterns

To accomplish tasks, invoke the skill via OpenClaw's CLI or API. For scanning, provide project paths and flags; for configuration, output directly to code files. Always set environment variables for authentication, e.g., export $OPENCLAW_API_KEY before running commands. Example pattern: Pipe output to a file for integration, like openclaw web-security scan --output report.json. For code snippets, embed generated security code into your app; e.g., add CSP middleware in Express: app.use((req, res, next) => {res.setHeader('Content-Security-Policy', "default-src 'self'"); next();});

Common Commands/API

  • CLI Commands: Use openclaw web-security [subcommand] [flags]. For example, scan a project: openclaw web-security scan --project /path/to/app --key $OPENCLAW_API_KEY. API endpoint: POST to /api/web-security/scan with JSON body {"projectPath": "/path/to/app", "apiKey": "$OPENCLAW_API_KEY"}.
  • Subcommands:

- scan --owasp --verbose: Runs full OWASP check; outputs vulnerabilities in JSON. - csp --generate --domains example.com: Creates CSP string; e.g., output: "Content-Security-Policy: default-src 'self' https://example.com". - cors --set --origins "http://localhost:3000": Configures CORS in a config file like {"origins": ["http://localhost:3000"], "methods": ["GET", "POST"]}. - auth --pattern jwt: Generates JWT validation code; snippet: const jwt = require('jsonwebtoken'); const verify = token => jwt.verify(token, process.env.JWT_SECRET);. - depscan --format npm: Scans dependencies; e.g., command: openclaw web-security depscan --path package.json --output vulnerabilities.txt.

  • API Endpoints: All commands map to /api/web-security/{subcommand}, requiring authentication via header Authorization: Bearer $OPENCLAW_API_KEY. Response format: JSON with keys like {"status": "success", "data": {...}}.

Integration Notes

Integrate by wrapping OpenClaw calls in your build scripts or CI/CD pipelines. For example, in a GitHub Actions workflow, add: run: openclaw web-security scan --project. --key ${{env.OPENCLAW_API_KEY}}. Use config files for persistent settings, e.g., a .openclawrc file with JSON: {"web-security": {"defaultFlags": ["--verbose"], "apiKeyEnv": "OPENCLAW_API_KEY"}}. If combining with other skills, chain outputs; e.g., use web-security scan results as input for a "web-dev" deployment skill. Ensure API keys are stored securely in env vars like $OPENCLAW_API_KEY and never hardcoded.

Error Handling

Handle errors by checking exit codes and response bodies. Common errors: Authentication failure (HTTP 401) if $OPENCLAW_API_KEY is invalid—fix by verifying the key format. Scan failures (e.g., "Project path not found") return code 404; resolve by providing absolute paths. For XSS prevention, if a snippet fails, catch exceptions like: try {sanitizeInput(userInput);} catch (e) {console.error(e.message); // e.g., "Invalid input detected"}. Parse JSON responses for error details, e.g., {"error": "Vulnerability detected", "code": 400}, and retry with corrected flags. Always log errors with timestamps for debugging.

Concrete Usage Examples

  1. Scan for OWASP Vulnerabilities: To audit a web app for injection risks, run: openclaw web-security scan --owasp --project /path/to/app. This outputs a JSON report; then, fix issues by adding code like: const safeQuery = db.escape(userInput); db.query(safeQuery);. Expected output: A list of vulnerabilities, e.g., {"injection": ["SQL in login endpoint"]}.
  2. Configure CSP for XSS Prevention: To set up CSP in an Express app, use: openclaw web-security csp --generate --policy "script-src 'self'". Integrate the output into your server code: app.use(helmet.contentSecurityPolicy({directives: {scriptSrc: ["'self'"]}}));. This prevents inline scripts, reducing XSS risks.

Graph Relationships

  • Related to cluster: "web-dev" (e.g., shares dependencies for web app builds).
  • Connected skills: "auth-management" (for advanced auth patterns), "vulnerability-scanning" (for broader security checks).
  • Inverse relationships: Depends on "api-tools" for endpoint testing; provides input to "deployment-pipeline" for secure releases.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.38%
按下载量换算48

Claude

30.61%
按下载量换算43

Cursor

20.2%
按下载量换算28

Gemini CLI

9.48%
按下载量换算13

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills