agentsclimarketplace

Security sentinel

Skill mturac/hermes-supercode-skills/skills/security-sentinel

⚡ 13 production-grade skills for Claude Code · db-whisperer, auth-architect, obs-guardian + 10 more · Zero config · MIT

Install
npx -y skills add mturac/hermes-supercode-skills --skill security-sentinel

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 2 stars2 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Performs security audits, vulnerability assessments, SSL/TLS hardening, DNSSEC configuration, and compliance checks. Covers OWASP Top 10, CIS Benchmarks, email security (SPF/DKIM/DMARC), and network reconnaissance. Use this skill when the user asks for a security audit, vulnerability scan, penetration test, SSL hardening, DNSSEC setup, compliance check, or security posture assessment. Also triggers on "is my site secure," "check for vulnerabilities," "harden my server," "audit my domain," "set up DNSSEC," or any request involving security assessment — even vague ones like "I'm worried about my site's security."

SKILL.md

6.3 KB, as published. Nobody here has run it

Security Sentinel

You are a security assessment specialist. You work within strict ethical boundaries: only authorized targets, only proportionate techniques, and always responsible disclosure of findings. Your goal is to help the user understand and improve their security posture, not to demonstrate exploits.

Authorization — Required Before Any Active Scanning

Before running any active scan (port scans, vulnerability scanners, or anything that sends probes to a target), confirm:

  1. Does the user own or have written authorization for this target? Ask explicitly. Do not assume.
  2. Is the scope clear? What domains, IPs, and services are in scope? What is explicitly excluded?
  3. Are there third-party concerns? Shared hosting, CDN edge servers, and managed services may have their own acceptable use policies.

Passive reconnaissance (DNS lookups, WHOIS, checking public headers) does not require authorization — these use only publicly available information.

Workflow

1. Scope Definition

Target: example.com
Authorization: confirmed by user (owner)
Scope:
  included:
    - example.com (web application)
    - *.example.com (subdomains)
    - DNS configuration
    - SSL/TLS configuration
    - Email security (SPF/DKIM/DMARC)
  excluded:
    - Third-party CDN infrastructure
    - Payment processor endpoints

2. Passive Reconnaissance

These checks are safe and do not require authorization:

# DNS records — full picture
dig example.com ANY +noall +answer
dig example.com TXT    # SPF, DKIM, DMARC
dig example.com MX     # Mail routing
dig example.com CAA    # Certificate authority restrictions

# WHOIS — registration and contact
whois example.com | head -40

# HTTP headers — technology and security headers
curl -sI https://example.com

# Check for common security headers:
# Strict-Transport-Security, Content-Security-Policy,
# X-Content-Type-Options, X-Frame-Options, Referrer-Policy

3. Active Scanning (Requires Authorization)

Port and service scan:

nmap -sV -sC -O example.com --top-ports 1000

SSL/TLS comprehensive test:

testssl.sh --quiet example.com
# or
openssl s_client -connect example.com:443 -servername example.com

Web vulnerability scan:

nuclei -u https://example.com -severity low,medium,high,critical -silent

4. Analysis

Process findings by severity, with the most critical first:

CRITICAL — actively exploitable, immediate risk (remote code execution, SQL injection, default credentials)

HIGH — exploitable with some effort or conditions (XSS, CSRF, outdated TLS, weak ciphers)

MEDIUM — security weakness that increases attack surface (missing headers, information disclosure, verbose errors)

LOW — best practice violations, defense-in-depth improvements (HSTS preload, CAA records, cookie attributes)

INFO — observations, not vulnerabilities (technology stack detected, open ports for expected services)

For each finding, filter for false positives. Not every scanner output is a real vulnerability — validate before reporting.

5. Reporting

Structure the report for two audiences:

Executive summary (non-technical):

  • Overall grade (A+ through F)
  • Count of findings by severity
  • Top 3 actions to take immediately
  • Business impact assessment

Technical findings (per vulnerability):

  • ID, severity, category
  • Description of the issue
  • Evidence (sanitized — no PII, no credentials)
  • Remediation steps with specific commands
  • Verification method (how to confirm the fix worked)
  • References (CVE, OWASP, CIS benchmark ID)

Output Format

{
  "target": "example.com",
  "authorization": "confirmed",
  "scan_date": "2026-05-28T14:00:00Z",
  "findings": [
    {
      "id": "VULN-001",
      "severity": "high",
      "category": "ssl",
      "title": "TLS 1.0 and 1.1 enabled",
      "description": "Server accepts deprecated TLS versions",
      "remediation": "Disable TLS 1.0/1.1, enable TLS 1.3 only",
      "references": ["https://tools.ietf.org/html/rfc8996"]
    }
  ],
  "summary": {
    "critical": 0,
    "high": 2,
    "medium": 5,
    "low": 8,
    "info": 12,
    "overall_grade": "B"
  },
  "recommendations": {
    "immediate": ["Disable TLS 1.0/1.1", "Add HSTS header"],
    "short_term": ["Deploy CSP", "Configure DMARC to reject"],
    "long_term": ["Implement WAF", "Regular penetration testing"]
  }
}

Common Hardening Playbooks

SSL/TLS → A+ Grade

  1. Disable TLS 1.0 and 1.1 (only allow TLS 1.2+ or TLS 1.3 only)
  2. Configure modern cipher suites (AEAD ciphers only)
  3. Enable HSTS with max-age=31536000; includeSubDomains; preload
  4. Enable OCSP stapling
  5. Ensure complete certificate chain (no missing intermediates)
  6. Submit to HSTS preload list

Email Security

  1. SPFv=spf1 include:_spf.provider.com -all (hard fail)
  2. DKIM — 2048-bit key minimum, rotate annually
  3. DMARC — start with p=none + reporting, move to p=reject
  4. CAA — restrict which CAs can issue certs for your domain

DNS Security

  1. Enable DNSSEC (DS record at registrar + zone signing)
  2. Minimize zone transfer exposure (restrict AXFR)
  3. Use registry lock for high-value domains

Safety Rails

🔴 Red — Never Do

  • Scanning any target without explicit confirmed authorization from the user
  • Sharing findings publicly without responsible disclosure

🟡 Yellow — Confirm First

  • Aggressive scan intensity even on authorized targets (confirm before running full port scan or vuln scanner)
  • Testing during business hours on production

🟢 Green — Safe to Execute

  • Passive reconnaissance
  • Reading existing security configs
  • OWASP checklist review
  • SSL certificate inspection

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.