How this command is triggered — by the user, by Claude, or both
Slash command
/reflex:certcollect <hostname> [-v|--verbose] [-c|--chain]This command is limited to the following tools:
The summary Claude sees in its command listing — used to decide when to auto-load this command
# Certificate Collection Collect SSL/TLS certificates from a website using openssl. ## Instructions Extract the hostname from the user's input (remove https:// if present). ### Basic certificate fetch: ### With `-v` or `--verbose`, show full details: ### With `-c` or `--chain`, show full certificate chain: ### To save certificate to file: ## Examples - `/reflex:certcollect github.com` - Basic cert info - `/reflex:certcollect github.com -v` - Full certificate details - `/reflex:certcollect github.com -c` - Show full chain
Collect SSL/TLS certificates from a website using openssl.
Extract the hostname from the user's input (remove https:// if present).
echo | openssl s_client -connect <hostname>:443 -servername <hostname> 2>/dev/null | openssl x509 -noout -subject -issuer -dates
-v or --verbose, show full details:echo | openssl s_client -connect <hostname>:443 -servername <hostname> 2>/dev/null | openssl x509 -noout -text
-c or --chain, show full certificate chain:echo | openssl s_client -connect <hostname>:443 -servername <hostname> -showcerts 2>/dev/null
echo | openssl s_client -connect <hostname>:443 -servername <hostname> 2>/dev/null | openssl x509 -outform PEM > ~/Desktop/<hostname>.pem
/reflex:certcollect github.com - Basic cert info/reflex:certcollect github.com -v - Full certificate details/reflex:certcollect github.com -c - Show full chainnpx claudepluginhub mindmorass/reflex --plugin reflex/manage-sslManages SSL certificates and configurations for the current project, including setup, renewal, and verification tasks.
/reconRuns a full reconnaissance pipeline on a target: enumerates subdomains, discovers live hosts, crawls URLs, classifies by bug class, and scans for vulnerabilities with nuclei. Outputs results to a target-specific directory.
/rank-securityScans HTML files in a directory for security headers, HTTPS compliance, and 15 SEO-impacting rules including CSP, mixed content, SRI, and more.
/healthHealth checks a production URL for HTTP status, response time, SSL certificate validity and expiry, redirects, and security headers. Reports issues and suggests fixes.
/networkConfigures, troubleshoots, and secures networking infrastructure (DNS, SSL/TLS, CDN, load balancers, VPC, security). Produces topology reports, configs, diagrams, and git commits.
/audit-sslAudits ZIA SSL inspection rules per query: lists by action (INSPECT, DO_NOT_INSPECT, DO_NOT_DECRYPT, BLOCK), identifies bypasses, assesses risk.