{
  "schemaVersion": "1.0",
  "item": {
    "slug": "security-scanner",
    "name": "Security Scanner",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/dmx64/security-scanner",
    "canonicalUrl": "https://clawhub.ai/dmx64/security-scanner",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/security-scanner",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=security-scanner",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md"
    ],
    "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-05-07T17:22:31.273Z",
      "expiresAt": "2026-05-14T17:22:31.273Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
        "contentDisposition": "attachment; filename=\"afrexai-annual-report-1.0.0.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-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-scanner",
    "agentPageUrl": "https://openagent3.xyz/skills/security-scanner/agent",
    "manifestUrl": "https://openagent3.xyz/skills/security-scanner/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/security-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 Scanner",
        "body": "Automated security scanning toolkit for penetration testing and vulnerability assessment."
      },
      {
        "title": "Port Scan",
        "body": "nmap -sV -sC -oN scan.txt TARGET"
      },
      {
        "title": "Vulnerability Scan",
        "body": "nuclei -u TARGET -o results.txt"
      },
      {
        "title": "SSL Check",
        "body": "sslscan TARGET"
      },
      {
        "title": "1. Quick Recon",
        "body": "Fast initial scan for live hosts and open ports:\n\nnmap -sn -T4 SUBNET  # Host discovery\nnmap -F TARGET       # Fast port scan (top 100)"
      },
      {
        "title": "2. Full Port Scan",
        "body": "Comprehensive port and service detection:\n\nnmap -p- -sV -sC -A TARGET -oN full_scan.txt"
      },
      {
        "title": "3. Web Application Scan",
        "body": "nuclei -u https://TARGET -t cves/ -t vulnerabilities/ -o web_vulns.txt\nnikto -h TARGET -o nikto_report.txt"
      },
      {
        "title": "4. SSL/TLS Analysis",
        "body": "sslscan TARGET\ntestssl.sh TARGET"
      },
      {
        "title": "Output",
        "body": "Save reports to reports/security-scan-YYYY-MM-DD.md with:\n\nTarget information\nOpen ports and services\nVulnerabilities found (severity rated)\nRecommendations"
      },
      {
        "title": "Ethics",
        "body": "Only scan authorized targets\nGet written permission before testing\nReport vulnerabilities responsibly\nNever exploit without authorization"
      }
    ],
    "body": "Security Scanner\n\nAutomated security scanning toolkit for penetration testing and vulnerability assessment.\n\nQuick Start\nPort Scan\nnmap -sV -sC -oN scan.txt TARGET\n\nVulnerability Scan\nnuclei -u TARGET -o results.txt\n\nSSL Check\nsslscan TARGET\n\nScan Types\n1. Quick Recon\n\nFast initial scan for live hosts and open ports:\n\nnmap -sn -T4 SUBNET  # Host discovery\nnmap -F TARGET       # Fast port scan (top 100)\n\n2. Full Port Scan\n\nComprehensive port and service detection:\n\nnmap -p- -sV -sC -A TARGET -oN full_scan.txt\n\n3. Web Application Scan\nnuclei -u https://TARGET -t cves/ -t vulnerabilities/ -o web_vulns.txt\nnikto -h TARGET -o nikto_report.txt\n\n4. SSL/TLS Analysis\nsslscan TARGET\ntestssl.sh TARGET\n\nOutput\n\nSave reports to reports/security-scan-YYYY-MM-DD.md with:\n\nTarget information\nOpen ports and services\nVulnerabilities found (severity rated)\nRecommendations\nEthics\nOnly scan authorized targets\nGet written permission before testing\nReport vulnerabilities responsibly\nNever exploit without authorization"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/dmx64/security-scanner",
    "publisherUrl": "https://clawhub.ai/dmx64/security-scanner",
    "owner": "dmx64",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/security-scanner",
    "downloadUrl": "https://openagent3.xyz/downloads/security-scanner",
    "agentUrl": "https://openagent3.xyz/skills/security-scanner/agent",
    "manifestUrl": "https://openagent3.xyz/skills/security-scanner/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/security-scanner/agent.md"
  }
}