원클릭으로
security-operations
Security Operations Center (SOC) practices, incident response, SIEM management, and threat hunting following NIST 800-61
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Security Operations Center (SOC) practices, incident response, SIEM management, and threat hunting following NIST 800-61
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Orchestration & Events:
Kubernetes standards for container orchestration, deployments, services, ingress, ConfigMaps, Secrets, and security policies. Covers production-ready configurations, monitoring, and best practices for cloud-native applications.
Master Kotlin coding standards with null safety, coroutines, and idiomatic patterns. Use when developing JVM/Android applications requiring type-safe async programming.
Comprehensive coding standards and best practices for maintainable, consistent software development across multiple languages and paradigms
React frontend standards covering hooks (useState, useEffect, useContext, custom hooks), state management (Context API, Redux, Zustand), performance optimization (memoization, lazy loading, code splitting), testing with React Testing Library, and accessibility (WCAG 2.1, ARIA) for modern SPAs
Implement robust E2E tests with Playwright or Cypress using Page Object Model, proper waits, and CI/CD integration. Covers selector strategies, flaky test prevention, and cross-browser testing patterns.
| name | security-operations |
| description | Security Operations Center (SOC) practices, incident response, SIEM management, and threat hunting following NIST 800-61 |
1. PREPARATION - Policies, tools, training, communication plans
2. DETECTION - SIEM alerts, log analysis, threat intelligence
3. CONTAINMENT - Isolate, remove threat, restore operations
4. POST-INCIDENT - Lessons learned, documentation, improvement
| Tier | Role | Responsibilities |
|---|---|---|
| T1 | Alert Triage | Monitor SIEM, validate alerts, categorize, escalate |
| T2 | Incident Response | Investigation, forensics, containment |
| T3 | Threat Hunting | Proactive hunting, APT detection, automation |
| Severity | Impact | Response Time | Escalation |
|---|---|---|---|
| Critical | Business-critical compromised, active exfiltration | <15 min | CISO, Legal |
| High | Multiple systems, potential breach | <1 hour | Tier 3, Management |
| Medium | Single system, contained threat | <4 hours | Tier 2 |
| Low | Failed attack, no impact | <24 hours | Tier 1 |
Failed Login Attempts (Splunk):
index=security sourcetype=auth action=failure
| stats count by user, src_ip
| where count > 5
Privilege Escalation (Azure Sentinel):
SecurityEvent
| where EventID == 4672
| where AccountType == "User"
| summarize count() by Account, Computer
Full Examples: See REFERENCE.md for complete code samples, detailed configurations, and production-ready implementations.
Core Roles:
Essential Tools:
See REFERENCE.md for team structure template.
Alert Triage Process:
Detection Source Priorities:
See REFERENCE.md for detection source matrix.
Short-Term Containment (<15 min):
Long-Term Containment (1-4 hours):
Eradication Checklist:
See REFERENCE.md for isolation commands.
Recovery Steps:
Post-Incident Review (within 2 weeks):
See REFERENCE.md for post-incident report template.
Critical Log Sources:
Correlation Rules to Implement:
See REFERENCE.md for log source configuration.
Hypothesis-Driven Process:
Data-Driven Techniques:
See REFERENCE.md for beaconing detection script.
Memory Capture:
# Linux (LiME)
sudo insmod lime-$(uname -r).ko "path=/tmp/memory.lime format=lime"
# Windows (WinPmem)
.\winpmem.exe memory.raw
Disk Imaging:
# Create forensic image
sudo dd if=/dev/sda of=/mnt/evidence/disk.img bs=4M conv=noerror,sync
sha256sum /mnt/evidence/disk.img > disk.img.sha256
See REFERENCE.md for complete forensics procedures.
Efficiency Tips:
Common Pitfalls:
templates/incident-response-playbook.md - Complete IR playbooks with NIST mappingstemplates/siem-queries.md - 50+ production SIEM queries by MITRE ATT&CKscripts/forensics-collection.sh - Automated evidence collectiontemplates/post-incident-report.md - Root cause analysis templatetemplates/security-metrics-dashboard.json - Grafana dashboardresources/nist-ir-controls.md - NIST 800-61/800-53 mappingKey Takeaways:
Validation Exercise:
Related Skills:
Compliance Mapping: NIST IR-4, IR-5, IR-6, SI-4, AU-6 | ISO 27001 A.16.1 | PCI-DSS 12.10 | SOC 2 CC7.3