Token导航 LogoToken导航TokenDH.com
效率external-serviceclawhub未标认证来源可访问clear审计通过

ssl-certificate-monitorSSL 证书监控

Agent Skill

ssl-certificate-monitor 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 OpenClaw 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

8,924

周安装

361

GitHub Stars

公开资料未说明

下载量

2,801
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install ssl-certificate-monitor

简介

ssl-certificate-monitor 监控证书过期和安全状态,支持多域名合规检查。

  • 适用于企业内网或公共服务的证书生命周期管理。
  • 使用 openclaw skills install ssl-certificate-monitor 命令安装。
  • 建议集成告警机制,提前规避服务中断风险。
  • 适用宿主包括 OpenClaw,接入前应确认版本、权限和运行环境要求。

SKILL.md

name
ssl-certificate-monitor
description
Monitor SSL certificates for expiration, security issues, and compliance across domains and subdomains.
version
1.0.0
author
skill-factory
metadata
openclaw
requires
bins
python

SSL Certificate Monitor

What This Does

A CLI tool to monitor SSL/TLS certificates for expiration dates, security issues, and basic compliance checks. Check single domains or multiple domains from a list, get detailed certificate information, and receive alerts before certificates expire.

Key features:

  • Check expiration dates for SSL certificates on domains and subdomains
  • Detailed certificate info - issuer, subject, serial number, signature algorithm
  • Security validation - check certificate chain, basic trust validation
  • Batch monitoring - check multiple domains from a file or list
  • Alert thresholds - warn when certificates expire within specified days (default 30 days)
  • JSON output - machine-readable output for integration with monitoring systems
  • Simple CLI interface - easy to use in scripts or cron jobs
  • No external API required - uses Python's SSL/TLS libraries

When To Use

  • You need to monitor SSL certificate expiration for your websites
  • You want to automate certificate renewal reminders
  • You're managing multiple domains and subdomains
  • You need to validate certificate chain and basic security
  • You want to integrate SSL monitoring into your DevOps pipeline
  • You're auditing domains for certificate compliance
  • You need to check certificates on internal servers or development environments

Usage

Basic commands:

# Check a single domain
python3 scripts/main.py check example.com

# Check with custom port
python3 scripts/main.py check example.com --port 443

# Check multiple domains from a file (one domain per line)
python3 scripts/main.py batch domains.txt

# Set custom warning threshold (days before expiration)
python3 scripts/main.py check example.com --warning-days 14

# Output JSON for machine processing
python3 scripts/main.py check example.com --json

# Check certificate details (issuer, subject, algorithm, etc.)
python3 scripts/main.py details example.com

# Validate certificate chain and basic security
python3 scripts/main.py validate example.com

Examples

Example 1: Check single domain expiration

python3 scripts/main.py check example.com

Output:

✅ Domain: example.com:443
   Status: Valid
   Expires: 2026-06-15 23:59:59 UTC
   Days remaining: 101
   Issuer: Let's Encrypt Authority X3
   Subject: CN=example.com
   Algorithm: SHA256-RSA

Example 2: Check with warning threshold

python3 scripts/main.py check example.com --warning-days 30

Output (if expiring within 30 days):

⚠️  Domain: example.com:443
   Status: Expiring soon
   Expires: 2026-03-10 23:59:59 UTC
   Days remaining: 4
   Issuer: Let's Encrypt Authority X3
   Subject: CN=example.com
   Algorithm: SHA256-RSA
   Warning: Certificate expires in 4 days

Example 3: Batch check from file

python3 scripts/main.py batch domains.txt --warning-days 30

Output:

📋 Batch check results (5 domains):
✅ example.com: Valid (101 days remaining)
✅ api.example.com: Valid (95 days remaining)
⚠️  staging.example.com: Expiring soon (15 days remaining)
❌ internal.example.com: Invalid (Certificate expired 2 days ago)
❌ old.example.com: Connection failed (Timeout)

Summary: 3 valid, 1 expiring soon, 1 expired, 1 failed

Example 4: JSON output for automation

python3 scripts/main.py check example.com --json

Output:

{
  "domain": "example.com",
  "port": 443,
  "status": "valid",
  "expires_at": "2026-06-15T23:59:59Z",
  "days_remaining": 101,
  "issuer": "Let's Encrypt Authority X3",
  "subject": "CN=example.com",
  "algorithm": "SHA256-RSA",
  "serial_number": "0a1b2c3d4e5f6a7b8c9d0e1f2a3b4c5d6",
  "valid_from": "2025-06-16T00:00:00Z",
  "valid_to": "2026-06-15T23:59:59Z",
  "warning": false,
  "error": null
}

Example 5: Certificate details

python3 scripts/main.py details example.com

Output:

📋 Certificate details for example.com:443

Subject: CN=example.com
Issuer: Let's Encrypt Authority X3
Serial: 0a1b2c3d4e5f6a7b8c9d0e1f2a3b4c5d6

Validity:
  Not before: 2025-06-16 00:00:00 UTC
  Not after:  2026-06-15 23:59:59 UTC
  Days remaining: 101

Signature:
  Algorithm: SHA256-RSA
  Key size: 2048 bits

Extensions:
  Subject Alternative Names: example.com, www.example.com
  Key Usage: Digital Signature, Key Encipherment
  Extended Key Usage: TLS Web Server Authentication

Requirements

  • Python 3.x
  • cryptography library for certificate parsing (installed automatically or via pip)

Install missing dependencies:

pip3 install cryptography

Limitations

  • Only checks TLS certificates on standard ports (custom ports supported via --port)
  • Requires network connectivity to target domains
  • May be blocked by firewalls or network security policies
  • Does not perform deep security audits (no revocation checking, weak cipher detection)
  • No support for client certificate authentication
  • Limited to standard TLS handshake (no SNI customization)
  • May not work with self-signed certificates without custom trust stores
  • No support for checking certificate transparency logs
  • Rate limiting may affect checking many domains quickly
  • No built-in notification system (output only)
  • Does not check for mixed content or other web security issues
  • No support for checking certificates in load balancers or CDNs directly
  • Limited error handling for network timeouts or DNS failures
  • No support for checking certificates in mobile apps or other non-web contexts

Directory Structure

The tool works with domain lists as text files (one domain per line). No special configuration directories are required.

Error Handling

  • Connection timeouts show helpful error messages with retry suggestions
  • DNS resolution failures suggest checking domain spelling
  • Certificate validation errors show certificate details and validation issues
  • Port connection failures suggest checking firewall rules or service status
  • File not found errors suggest checking file paths and permissions

Contributing

This is a skill built by the Skill Factory. Issues and improvements should be reported through the OpenClaw project.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

78.71%
按下载量换算2,205

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

external-service

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

安装前确认

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

来源信息

继续浏览同类 Skills