来源信息
- 仓库
- pluginagentmarketplace/custom-plugin-cyber-security
- 最近来源活动
- 2025年12月31日 12:52
- 检测到的 SKILL.md 语言
- 英语
- 星标
- 3
- 分支
- 0
安装方式
默认使用会先检查来源的 Prompt;你也可以切换为直接命令,或下载本地副本。
检查来源文件
决定是否安装前,请先阅读 SKILL.md,以及 SkillsMP 当前展示的配套文件。
菜单
默认使用会先检查来源的 Prompt;你也可以切换为直接命令,或下载本地副本。
决定是否安装前,请先阅读 SKILL.md,以及 SkillsMP 当前展示的配套文件。
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/pluginagentmarketplace/custom-plugin-cyber-security --skill cryptography命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Security compliance frameworks and governance for regulatory adherence
SOC operations, incident response, and threat detection for security monitoring
Digital forensics and malware analysis for evidence collection and investigation
基于 SOC 职业分类
正在显示 SKILL.md
| name | cryptography |
| description | Cryptographic algorithms, protocols, and implementations for secure data protection |
| sasmp_version | 1.3.0 |
| production_grade | true |
| last_updated | 2025-01-01 |
| bonded_agent | 05-cryptography-expert |
| bond_type | PRIMARY_BOND |
| bond_strength | 1 |
| operations | {"recommend_algorithm":{"description":"Recommend cryptographic algorithm for use case","atomic":true,"input":{"use_case":{"type":"enum","values":["encryption","password","signing","key_exchange","hashing"],"required":true},"security_level":{"type":"enum","values":["128","192","256"],"default":"128"}},"output":{"primary":"Algorithm","alternatives":"array<Algorithm>","security_notes":"array<string>"}},"analyze_implementation":{"description":"Analyze cryptographic implementation for issues","atomic":true,"input":{"code":{"type":"string","required":true},"language":{"type":"string","required":true}},"output":{"vulnerabilities":"array<Vulnerability>","recommendations":"array<string>","severity":"enum"}},"validate_parameters":{"description":"Validate cryptographic parameters","atomic":true,"input":{"algorithm":{"type":"string","required":true},"key_size":{"type":"integer","optional":true},"mode":{"type":"string","optional":true}},"output":{"is_secure":"boolean","issues":"array<Issue>","minimum_requirements":"object"}},"generate_key_spec":{"description":"Generate secure key specification","atomic":true,"input":{"algorithm":{"type":"string","required":true},"purpose":{"type":"string","required":true}},"output":{"key_spec":"object","generation_code":"string","rotation_policy":"object"}},"analyze_protocol":{"description":"Analyze cryptographic protocol","atomic":true,"input":{"protocol":{"type":"string","required":true},"version":{"type":"string","optional":true}},"output":{"security_level":"string","vulnerabilities":"array<Vulnerability>","hardening":"array<string>"}}} |
| validation | {"deprecated_algorithms":["MD5","SHA1","DES","3DES","RC4","RSA-1024"],"minimum_key_sizes":{"AES":128,"RSA":2048,"ECDSA":256}} |
| retry | {"enabled":false,"security_reason":"Crypto ops should not retry to prevent timing leaks"} |
| errors | {"E_UNKNOWN_ALGORITHM":{"code":5001,"message":"Algorithm not recognized","recovery":"Use standard algorithm name"},"E_KEY_SIZE_INSUFFICIENT":{"code":5002,"message":"Key size below minimum","recovery":"Use minimum key size for algorithm"},"E_DEPRECATED_ALGORITHM":{"code":5003,"message":"Algorithm is deprecated","recovery":"Migrate to recommended alternative"},"E_INSECURE_MODE":{"code":5004,"message":"Cipher mode is insecure","recovery":"Use authenticated encryption (GCM)"}} |
Purpose: Secure encryption, hashing, and key management.
| Operation | Input | Output |
|---|---|---|
| recommend_algorithm | use_case, level | primary, alternatives |
| analyze_implementation | code, language | vulns, recommendations |
| validate_parameters | algo, key, mode | is_secure, issues |
| generate_key_spec | algo, purpose | spec, rotation |
| analyze_protocol | protocol, version | security, hardening |
| Level | Symmetric | Asymmetric | Hash |
|---|---|---|---|
| 128-bit | AES-128 | RSA-3072, P-256 | SHA-256 |
| 192-bit | AES-192 | RSA-7680, P-384 | SHA-384 |
| 256-bit | AES-256 | RSA-15360, P-521 | SHA-512 |
| Use Case | Recommended | Avoid |
|---|---|---|
| Encrypt at rest | AES-256-GCM | ECB |
| Password | Argon2id | MD5, SHA-1 |
| Signing | Ed25519 | RSA-1024 |
| Key exchange | X25519 | DH<2048 |
Crypto Issue
│
├─► E_DEPRECATED_ALGORITHM → Migrate to modern
├─► E_KEY_SIZE_INSUFFICIENT → Increase key size
└─► E_INSECURE_MODE → Use GCM or Poly1305
| Version | Date | Changes |
|---|---|---|
| 2.0.0 | 2025-01-01 | Production-grade with PQC |
| 1.0.0 | 2024-12-29 | Initial release |