Skip to main content

이 저장소의 skills

jeremylongshore/claude-code-plugins-plus-skills - 67페이지

SkillsMP는 jeremylongshore/claude-code-plugins-plus-skills에서 3,425개의 skill을 수집했습니다. skill을 열어 소스와 세부 정보를 확인하세요.

jeremylongshore/claude-code-plugins-plus-skills

수집된 skill 3,425개 중 40개를 표시합니다.

직업 분류
정보 보안 분석가
설명

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'.

원문 언어: 영어

업데이트
직업 분류
정보 보안 분석가
설명

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

원문 언어: 영어

업데이트
직업 분류
정보 보안 분석가
설명

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'.

원문 언어: 영어

업데이트
직업 분류
정보 보안 분석가
설명

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'.

원문 언어: 영어

업데이트
직업 분류
정보 보안 분석가
설명

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'.

원문 언어: 영어

업데이트
직업 분류
정보 보안 분석가
설명

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'.

원문 언어: 영어

업데이트
직업 분류
정보 보안 분석가
설명

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'.

원문 언어: 영어

업데이트
직업 분류
정보 보안 분석가
설명

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…

원문 언어: 영어

업데이트
직업 분류
정보 보안 분석가
설명

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…

원문 언어: 영어

업데이트
직업 분류
정보 보안 분석가
설명

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…

원문 언어: 영어

업데이트
직업 분류
정보 보안 분석가
설명

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…

원문 언어: 영어

업데이트
직업 분류
정보 보안 분석가
설명

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…

원문 언어: 영어

업데이트
직업 분류
정보 보안 분석가
설명

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,…

원문 언어: 영어

업데이트
직업 분류
정보 보안 분석가
설명

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…

원문 언어: 영어

업데이트
직업 분류
정보 보안 분석가
설명

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),…

원문 언어: 영어

업데이트
직업 분류
정보 보안 분석가
설명

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…

원문 언어: 영어

업데이트
직업 분류
정보 보안 분석가
설명

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…

원문 언어: 영어

업데이트
직업 분류
정보 보안 분석가
설명

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…

원문 언어: 영어

업데이트
직업 분류
정보 보안 분석가
설명

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…

원문 언어: 영어

업데이트
직업 분류
정보 보안 분석가
설명

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…

원문 언어: 영어

업데이트
직업 분류
정보 보안 분석가
설명

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…

원문 언어: 영어

업데이트
직업 분류
정보 보안 분석가
설명

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 /…

원문 언어: 영어

업데이트
직업 분류
정보 보안 분석가
설명

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…

원문 언어: 영어

업데이트
직업 분류
정보 보안 분석가
설명

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…

원문 언어: 영어

업데이트
직업 분류
정보 보안 분석가
설명

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…

원문 언어: 영어

업데이트
직업 분류
정보 보안 분석가
설명

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,…

원문 언어: 영어

업데이트
직업 분류
정보 보안 분석가
설명

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…

원문 언어: 영어

업데이트
직업 분류
정보 보안 분석가
설명

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…

원문 언어: 영어

업데이트
직업 분류
정보 보안 분석가
설명

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…

원문 언어: 영어

업데이트
직업 분류
정보 보안 분석가
설명

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…

원문 언어: 영어

업데이트
직업 분류
정보 보안 분석가
설명

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…

원문 언어: 영어

업데이트
직업 분류
정보 보안 분석가
설명

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…

원문 언어: 영어

업데이트
직업 분류
정보 보안 분석가
설명

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…

원문 언어: 영어

업데이트
직업 분류
정보 보안 분석가
설명

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'.

원문 언어: 영어

업데이트
직업 분류
정보 보안 분석가
설명

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…

원문 언어: 영어

업데이트
직업 분류
정보 보안 분석가
설명

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…

원문 언어: 영어

업데이트
직업 분류
정보 보안 분석가
설명

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…

원문 언어: 영어

업데이트
직업 분류
정보 보안 분석가
설명

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…

원문 언어: 영어

업데이트
직업 분류
정보 보안 분석가
설명

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…

원문 언어: 영어

업데이트
직업 분류
소프트웨어 개발자
설명

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",…

원문 언어: 영어

업데이트
수집된 skill 3,425개 중 40개를 표시합니다.