Skip to main content

Skills neste repositório

jeremylongshore/claude-code-plugins-plus-skills - Página 67

O SkillsMP coletou 3.425 skills de jeremylongshore/claude-code-plugins-plus-skills. Abra uma skill para revisar a origem e os detalhes.

jeremylongshore/claude-code-plugins-plus-skills

Mostrando 40 de 3.425 skills coletadas.

ocupação
Analistas de segurança da informação
descrição

Analyze dependencies for known security vulnerabilities and outdated versions. Use when auditing third-party libraries. Trigger with 'check dependencies', 'scan for vulnerabilities', or 'audit packages'.

Idioma do texto original: inglês

atualizado
ocupação
Analistas de segurança da informação
descrição

Validate encryption implementations and cryptographic practices. Use when reviewing data security measures. Trigger with 'check encryption', 'validate crypto', or 'review security keys'.

Idioma do texto original: inglês

atualizado
ocupação
Analistas de segurança da informação
descrição

Scan for GDPR compliance issues in data handling and privacy practices. Use when ensuring EU data protection compliance. Trigger with 'scan GDPR compliance', 'check data privacy', or 'validate GDPR'.

Idioma do texto original: inglês

atualizado
ocupação
Analistas de segurança da informação
descrição

Check HIPAA compliance for healthcare data security requirements. Use when auditing healthcare applications. Trigger with 'check HIPAA compliance', 'validate health data security', or 'audit PHI protection'.

Idioma do texto original: inglês

atualizado
ocupação
Analistas de segurança da informação
descrição

Scan for input validation vulnerabilities and injection risks. Use when reviewing user input handling. Trigger with 'scan input validation', 'check injection vulnerabilities', or 'validate sanitization'.

Idioma do texto original: inglês

atualizado
ocupação
Analistas de segurança da informação
descrição

Check compliance with OWASP Top 10 security risks and best practices. Use when performing comprehensive security audits. Trigger with 'check OWASP compliance', 'audit web security', or 'validate OWASP'.

Idioma do texto original: inglês

atualizado
ocupação
Analistas de segurança da informação
descrição

Validate PCI-DSS compliance for payment card data security. Use when auditing payment systems. Trigger with 'validate PCI-DSS', 'check payment security', or 'audit card data'.

Idioma do texto original: inglês

atualizado
ocupação
Analistas de segurança da informação
descrição

Analyze a target's TLS configuration — negotiated protocol version, cipher suite, certificate chain, expiry, and downgrade vectors. Use when: SOC2 auditor flagged your endpoint for "weak TLS" but you don't know which control failed (TSC CC6.7 transmission…

Idioma do texto original: inglês

atualizado
ocupação
Analistas de segurança da informação
descrição

Audit a target's CORS posture — Access-Control-Allow-Origin handling, reflected-origin bypass, credentials+wildcard mismatch, preflight OPTIONS behavior, Vary header correctness. Use when: a third-party integration is failing CORS preflight and someone…

Idioma do texto original: inglês

atualizado
ocupação
Analistas de segurança da informação
descrição

Audit a Node.js project's installed npm dependency tree for known CVEs by wrapping the npm audit JSON output and emitting findings in the canonical penetration-tester schema. Detects direct AND transitive vulnerabilities, normalizes npm's severity scale…

Idioma do texto original: inglês

atualizado
ocupação
Analistas de segurança da informação
descrição

Audit a Python project's installed dependencies for known CVEs by wrapping pip-audit (PyPA's official vulnerability auditor) and emitting findings in the canonical penetration-tester schema. Detects vulnerable direct AND transitive packages, normalizes…

Idioma do texto original: inglês

atualizado
ocupação
Analistas de segurança da informação
descrição

Audit a target's HTTP security headers — CSP, HSTS, X-Frame-Options, X-Content-Type-Options, Referrer-Policy, Permissions-Policy, and the Cross-Origin trio (COOP, COEP, CORP). Use when: SOC2 / PCI auditor flagged "missing security headers" or a Mozilla…

Idioma do texto original: inglês

atualizado
ocupação
Analistas de segurança da informação
descrição

Audit a project's dependency licenses against an explicit policy (allow-list / deny-list / review-required) and flag incompatibilities before they ship to production. Reads SPDX license identifiers from npm package manifests, Python METADATA / PKG-INFO files,…

Idioma do texto original: inglês

atualizado
ocupação
Analistas de segurança da informação
descrição

Read findings JSONL files from cluster 1-4 skills, deduplicate by fingerprint, group by severity, and compose a deliverable- grade markdown vulnerability report with per-finding sections (title, severity, target, detail, remediation, evidence) and a top-level…

Idioma do texto original: inglês

atualizado
ocupação
Analistas de segurança da informação
descrição

Verify that a penetration test has explicit, written, signed authorization before any scanning begins. Reads a Rules-of- Engagement (ROE) attestation file, validates required fields (authorizer, in-scope targets, time window, emergency contact, signature),…

Idioma do texto original: inglês

atualizado
ocupação
Analistas de segurança da informação
descrição

Parse the ROE scope definition, enumerate every in-scope target (hostnames, IPs, CIDRs, URLs, cloud accounts, SaaS tenants), validate syntax, detect overlap with out-of-scope or known third-party SaaS ranges, and emit a normalized target list plus IP…

Idioma do texto original: inglês

atualizado
ocupação
Analistas de segurança da informação
descrição

Scan a source tree for command-injection vulnerable patterns: shell=True calls in Python subprocess, os.system / os.popen with interpolated strings, Node child_process.exec with template literals, Ruby backticks / Kernel#system / Kernel#exec with…

Idioma do texto original: inglês

atualizado
ocupação
Analistas de segurança da informação
descrição

Probe a target for accidentally-public admin / debug / introspection endpoints — Spring Boot Actuator, Apache server-status, Prometheus metrics, GraphQL playground, Swagger UI, phpMyAdmin, JMX-over-HTTP (Jolokia), Elasticsearch _cat, Kibana / Grafana / Eureka…

Idioma do texto original: inglês

atualizado
ocupação
Analistas de segurança da informação
descrição

Probe a target for directories that return auto-generated index listings instead of denying or serving a specific file — exposes the full file tree under any reachable directory, including files the application never linked to. Use when: post-deploy…

Idioma do texto original: inglês

atualizado
ocupação
Analistas de segurança da informação
descrição

Scan a source tree for dynamic-code-execution APIs that an attacker can hijack: Python eval / exec / compile, JavaScript eval / Function() / setTimeout(string), Ruby eval / instance_eval / class_eval, Java ScriptEngine, PHP eval / assert($str), .NET…

Idioma do texto original: inglês

atualizado
ocupação
Analistas de segurança da informação
descrição

Probe a target for accidentally-served secret-bearing files in the web root — `.git/`, `.env`, `.DS_Store`, backup files, database dumps, key files, CI configs, IDE configs. Use when: post-deploy verification on a new release, or SOC2 auditor asked "what's…

Idioma do texto original: inglês

atualizado
ocupação
Analistas de segurança da informação
descrição

Scan a source tree for unsafe-by-default deserialization APIs: Python pickle.loads / cPickle / shelve / dill, Ruby Marshal.load / YAML.load (pre-3.1 default), Java ObjectInputStream.readObject, PHP unserialize, .NET BinaryFormatter /…

Idioma do texto original: inglês

atualizado
ocupação
Analistas de segurança da informação
descrição

Scan a source tree for SQL-injection vulnerable patterns: string concatenation into queries, f-string interpolation in SQL, string-format substitution into raw queries, deprecated cursor methods (cursor.execute with % formatting), Knex / Sequelize raw() with…

Idioma do texto original: inglês

atualizado
ocupação
Analistas de segurança da informação
descrição

Audit a target's TLS certificate beyond protocol/expiry — chain ordering, OCSP stapling, revocation status, Certificate Transparency presence, key-usage flags, and over-broad wildcards. Use when: TLS handshake already passes (skill #1 analyzing-tls-config…

Idioma do texto original: inglês

atualizado
ocupação
Analistas de segurança da informação
descrição

Scan a source tree for weak cryptographic primitives: MD5 / SHA-1 used for security purposes, DES / 3DES / RC4 ciphers, ECB block mode, custom-built crypto (XOR loops, hand-rolled HMAC), hardcoded IVs, predictable random (Math.random / java.util.Random for…

Idioma do texto original: inglês

atualizado
ocupação
Analistas de segurança da informação
descrição

Identify the server software, framework, and component versions a target is running from its HTTP response signatures — Server header, X-Powered-By, Via, X-AspNet-Version, X-Runtime, X-Drupal-Cache, X-Generator, Set-Cookie name patterns, error-page artwork,…

Idioma do texto original: inglês

atualizado
ocupação
Analistas de segurança da informação
descrição

Compose an exec-readable summary from a unified findings JSONL plus the OWASP coverage report. Computes a single engagement risk score (0-100, severity-weighted with OWASP-breadth and governance terms), rolls up findings into headline counts, names the top-3…

Idioma do texto original: inglês

atualizado
ocupação
Analistas de segurança da informação
descrição

Annotate every pentest finding with its OWASP Top 10 (2021) category by applying a deterministic rule table keyed on source skill, finding category, detail keywords, and CWE identifier when present. Produces an enriched findings JSONL plus a per-category…

Idioma do texto original: inglês

atualizado
ocupação
Analistas de segurança da informação
descrição

Orchestrate a penetration test by routing user intent to one or more of the 25 narrow skills in this pack. Confirms authorization + scope FIRST (cluster 5), runs the relevant scan skills (clusters 1-4), then composes findings into the customer deliverables…

Idioma do texto original: inglês

atualizado
ocupação
Analistas de segurança da informação
descrição

Probe a target for HTTP methods that should not be enabled in production — TRACE (XST attack), unrestricted PUT/DELETE, DEBUG/CONNECT, WebDAV (PROPFIND/MKCOL/COPY/MOVE), and Allow header enumeration. Use when: penetration test rules of engagement include HTTP…

Idioma do texto original: inglês

atualizado
ocupação
Analistas de segurança da informação
descrição

Package an engagement's findings, scan outputs, evidence, and signed ROE into a timestamped archive with a SHA-256 manifest covering every file. Establishes chain of custody so legal counsel, internal audit, or an outside SOC can verify the archive hasn't…

Idioma do texto original: inglês

atualizado
ocupação
Analistas de segurança da informação
descrição

Scan a source-code tree for hardcoded credentials embedded in source files: AWS access keys, GitHub tokens, Stripe keys, Slack tokens, Anthropic API keys, OpenAI keys, JWT signing secrets, generic base64-encoded passwords, RSA / SSH private keys, and…

Idioma do texto original: inglês

atualizado
ocupação
Analistas de segurança da informação
descrição

Build a dependency-tree map of a project (npm or Python) and trace the path from each known-vulnerable transitive package back to one or more direct dependencies. Identifies which direct-dep bump would clear the most findings at once (highest-leverage…

Idioma do texto original: inglês

atualizado
ocupação
Analistas de segurança da informação
descrição

Detect exposed secrets, API keys, and credentials in code. Use when auditing for secret leaks. Trigger with 'scan for secrets', 'find exposed keys', or 'check credentials'.

Idioma do texto original: inglês

atualizado
ocupação
Analistas de segurança da informação
descrição

Generate comprehensive security audit reports for applications and systems. Use when you need to assess security posture, identify vulnerabilities, evaluate compliance status, or create formal security documentation. Trigger with phrases like "create security…

Idioma do texto original: inglês

atualizado
ocupação
Analistas de segurança da informação
descrição

Analyze HTTP security headers of web domains to identify vulnerabilities and misconfigurations. Use when you need to audit website security headers, assess header compliance, or get security recommendations for web applications. Trigger with phrases like…

Idioma do texto original: inglês

atualizado
ocupação
Analistas de segurança da informação
descrição

Analyze and guide security incident response, investigation, and remediation processes. Use when you need to handle security breaches, classify incidents, develop response playbooks, gather forensic evidence, or coordinate remediation efforts. Trigger with…

Idioma do texto original: inglês

atualizado
ocupação
Analistas de segurança da informação
descrição

Configure identify security misconfigurations in infrastructure-as-code, application settings, and system configurations. Use when you need to audit Terraform/CloudFormation templates, check application config files, validate system security settings, or…

Idioma do texto original: inglês

atualizado
ocupação
Analistas de segurança da informação
descrição

Analyze session management implementations to identify security vulnerabilities in web applications. Use when you need to audit session handling, check for session fixation risks, review session timeout configurations, or validate session ID generation…

Idioma do texto original: inglês

atualizado
ocupação
Desenvolvedores de software
descrição

Analyze and improve plugin prompts, skill definitions, and command instructions for clarity, safety, and effectiveness. Use when the user asks to "improve a prompt", "review a skill", "enhance instructions", "make this prompt better", "optimize this command",…

Idioma do texto original: inglês

atualizado
Mostrando 40 de 3.425 skills coletadas.