{
  "schemaVersion": "1.0",
  "item": {
    "slug": "security-vuln-scanner",
    "name": "Security Vulnerability Scanner",
    "source": "tencent",
    "type": "skill",
    "category": "其他",
    "sourceUrl": "https://clawhub.ai/HonestQiao/security-vuln-scanner",
    "canonicalUrl": "https://clawhub.ai/HonestQiao/security-vuln-scanner",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/security-vuln-scanner",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=security-vuln-scanner",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "skill.yaml"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/security-vuln-scanner"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/security-vuln-scanner",
    "agentPageUrl": "https://openagent3.xyz/skills/security-vuln-scanner/agent",
    "manifestUrl": "https://openagent3.xyz/skills/security-vuln-scanner/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/security-vuln-scanner/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Security Vulnerability Scanner",
        "body": "扫描代码中的安全漏洞，提供修复建议。"
      },
      {
        "title": "功能",
        "body": "SQL 注入检测\nXSS 跨站脚本检测\n硬编码密码/密钥检测\n不安全随机数检测\n命令注入检测\n敏感信息泄露检测\n安全评分"
      },
      {
        "title": "触发词",
        "body": "\"安全扫描\"\n\"漏洞检测\"\n\"security scan\"\n\"vulnerability\""
      },
      {
        "title": "检测模式",
        "body": "const patterns = {\n  sqlInjection: /query\\s*\\(\\s*['\"`].*\\$\\{/,\n  xss: /innerHTML\\s*=|document\\.write/,\n  hardcodedSecret: /password\\s*=\\s*['\"][^'\"]+['\"]/,\n  insecureRandom: /Math\\.random\\(\\)/,\n  commandInjection: /exec\\s*\\(\\s*\\$\\{/\n};"
      },
      {
        "title": "输出示例",
        "body": "{\n  \"vulnerabilities\": [\n    {\n      \"type\": \"sql_injection\",\n      \"line\": 42,\n      \"severity\": \"high\",\n      \"message\": \"检测到SQL注入风险\"\n    }\n  ],\n  \"score\": 65\n}"
      }
    ],
    "body": "Security Vulnerability Scanner\n\n扫描代码中的安全漏洞，提供修复建议。\n\n功能\nSQL 注入检测\nXSS 跨站脚本检测\n硬编码密码/密钥检测\n不安全随机数检测\n命令注入检测\n敏感信息泄露检测\n安全评分\n触发词\n\"安全扫描\"\n\"漏洞检测\"\n\"security scan\"\n\"vulnerability\"\n检测模式\nconst patterns = {\n  sqlInjection: /query\\s*\\(\\s*['\"`].*\\$\\{/,\n  xss: /innerHTML\\s*=|document\\.write/,\n  hardcodedSecret: /password\\s*=\\s*['\"][^'\"]+['\"]/,\n  insecureRandom: /Math\\.random\\(\\)/,\n  commandInjection: /exec\\s*\\(\\s*\\$\\{/\n};\n\n输出示例\n{\n  \"vulnerabilities\": [\n    {\n      \"type\": \"sql_injection\",\n      \"line\": 42,\n      \"severity\": \"high\",\n      \"message\": \"检测到SQL注入风险\"\n    }\n  ],\n  \"score\": 65\n}"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/HonestQiao/security-vuln-scanner",
    "publisherUrl": "https://clawhub.ai/HonestQiao/security-vuln-scanner",
    "owner": "HonestQiao",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/security-vuln-scanner",
    "downloadUrl": "https://openagent3.xyz/downloads/security-vuln-scanner",
    "agentUrl": "https://openagent3.xyz/skills/security-vuln-scanner/agent",
    "manifestUrl": "https://openagent3.xyz/skills/security-vuln-scanner/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/security-vuln-scanner/agent.md"
  }
}