Token导航 LogoToken导航TokenDH.com
开发敏感数据clawhub未标认证来源可访问clear审计提醒

security-test-suite安全测试套件

Agent Skill

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

总安装

3,026

周安装

130

GitHub Stars

公开资料未说明

下载量

1,061
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install security-test-suite

简介

自动化执行漏洞扫描、渗透测试与 SSL 审核,覆盖 OWASP Top 10 与 CVE 检测。

  • 适用于 DevSecOps 流水线集成、红蓝对抗演练准备或第三方认证支撑。
  • 生成详细测试报告与修复优先级建议列表。
  • 部分测试具破坏性,必须在授权范围内且避开业务高峰期执行。
  • security-test-suite 属于开发类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
web-health-suite
description
Comprehensive web health monitoring and quality assurance suite for AI agents. Performs HTTP health checks, response quality analysis, compliance validation, SSL certificate monitoring, API endpoint verification, and generates professional HTML reports for web applications and services. Use when: (1) monitoring web service health and uptime, (2) validating HTTP response quality and headers, (3) checking SSL certificate status and expiration, (4) verifying API endpoint availability and response format, (5) quality assurance testing for web deployments, (6) generating professional health monitoring reports.

Web Health & Quality Assurance Suite

Automated web service health monitoring and quality assurance toolkit.

Quick Start

# Run full health check
python scripts/web_health_check.py --target https://example.com --output report.json

# Check compliance requirements
python scripts/compliance_checker.py --target https://example.com --output compliance.json

# Quick availability scan
python scripts/availability_check.py --target https://example.com --output status.json

Available Scripts

ScriptPurposeTypical Runtime
web_health_check.pyFull health assessment10-30 min
compliance_checker.pyHTTP compliance validation5-15 min
availability_check.pyRapid host availability + status2-5 min
ssl_monitor.pySSL certificate monitoring1-2 min
endpoint_verifier.pyREST API endpoint verification3-10 min
input_validator.pyInput validation testing2-8 min
output_checker.pyOutput encoding verification2-8 min
report_gen.pyGenerate HTML report< 1 min

Workflow

1. Availability Check

python scripts/availability_check.py --target https://example.com --output status.json

Checks:

  • Service availability and response time
  • HTTP status code validation
  • Open port connectivity
  • Service type detection

2. Web Health Check

python scripts/web_health_check.py --target https://example.com --output report.json

Validates:

  • HTTP headers compliance
  • Response format correctness
  • Content accessibility
  • Security header presence
  • Data integrity

3. SSL Certificate Monitoring

python scripts/ssl_monitor.py --target example.com --output ssl.json

Monitors:

  • Certificate validity chain
  • Expiration dates
  • Protocol support
  • Trust chain verification

4. Endpoint Verification

python scripts/endpoint_verifier.py --target https://api.example.com --output api.json

Verifies:

  • API endpoint availability
  • HTTP method support
  • Response format validation
  • Rate limit status

5. Generate Report

python scripts/report_gen.py --input health.json status.json --output health_report.html

Script Reference

web_health_check.py

--target       Target URL (required)
--output       Output JSON file (required)
--depth        Check depth: quick/standard/comprehensive (default: standard)
--user-agent   Custom User-Agent string
--cookie       Session cookie for authenticated checks
--proxy        HTTP/SOCKS proxy (host:port)
--rate         Requests per second limit
--threads      Concurrent threads (default: 5)
--timeout      Request timeout in seconds (default: 10)
--verbose      Enable verbose output

compliance_checker.py

--target       Target URL (required)
--output       Output JSON file (required)
--auth         Authentication token or cookie
--headers      Extra HTTP headers (JSON string)
--exclude      URL patterns to skip

availability_check.py

--target       Host or URL (required)
--output       Output JSON file (required)
--ports        Comma-separated port list (default: 80,443,8080,8443)
--no-checks    Skip connectivity checks

ssl_monitor.py

--target       Domain to monitor (required)
--output       Output JSON file (required)
--port         SSL port (default: 443)
--check-ciphers  Verify cipher configuration
--check-cert   Validate certificate chain

endpoint_verifier.py

--target       API base URL (required)
--output       Output JSON file (required)
--openapi      OpenAPI/Swagger spec file (optional)
--methods      HTTP methods to verify (default: GET,POST,PUT,DELETE)
--auth         Bearer token or API key

input_validator.py

--target       Target URL (required)
--params       URL params to validate (e.g. id=1&q=test)
--method       HTTP method (default: GET)
--payloads     Custom validation data file

output_checker.py

--target       Target URL (required)
--forms        Also check forms for output encoding
--dom          Enable DOM verification
--payloads     Custom test data file

report_gen.py

--input        Input JSON files (one or more, required)
--output       Output HTML report path (required)
--template     Custom HTML template
--severity     Minimum severity to include (low/medium/high/critical)

Compliance Levels

LevelScore RangeAction
Excellent95-100Fully compliant
Good80-94Minor improvements recommended
Fair60-79Address recommendations
Poor40-59Significant issues need fixing
Critical0-39Immediate attention required

Common Issues

SSL errors: Check certificate installation and trust chain

Blocked by WAF: Reduce request rate with --rate parameter

Timeout on slow endpoints: Increase --timeout to 30s or more

Missing headers: Review server configuration for recommended headers

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

74.94%
按下载量换算795

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills