1---2name: security-command-center3description: Security Command Center4---56# Security Command Center78## When to Use9- Reviewing security posture across GCP projects10- Setting up threat detection for cloud resources11- Responding to security findings12- Preparing for GCP Professional Cloud Security Engineer exam1314## Core Jobs1516### 1. SCC Tiers17| Tier | Features |18|------|---------|19| **Standard** | Security Health Analytics (basic), Web Security Scanner (basic) |20| **Premium** | All standard + Event Threat Detection, Container Threat Detection, Virtual Machine Threat Detection, Compliance monitoring |21| **Enterprise** | All premium + multi-cloud (AWS/Azure), SecOps integration |2223### 2. Key Detection Services24- **Security Health Analytics** — detects misconfigurations (open firewall, public buckets, disabled MFA)25- **Event Threat Detection** — detects threats in Cloud Logging (brute force, crypto mining, data exfiltration)26- **Container Threat Detection** — runtime threats in GKE (reverse shell, malicious binary execution)27- **Web Security Scanner** — scans App Engine/Cloud Run/GKE for web vulnerabilities2829### 3. Findings Management30- **Finding** — a security issue detected by SCC (misconfiguration or threat)31- **Severity** — CRITICAL, HIGH, MEDIUM, LOW32- **State** — ACTIVE (open), INACTIVE (resolved or muted)33- **Muting** — suppress known-acceptable findings (e.g., test environment intentional configs)34- Route findings to Pub/Sub → Cloud Functions for automated remediation3536### 4. Compliance Monitoring (Premium)37- Built-in compliance dashboards: CIS, NIST, PCI-DSS, ISO 2700138- Shows which controls are passing/failing39- Export compliance reports for auditors4041### 5. Automated Remediation42- Route CRITICAL/HIGH findings to Pub/Sub notification channel43- Cloud Function subscribes and takes automated action (e.g., remove public bucket ACL)44- Always log remediation actions to Cloud Audit Logs4546## Key Concepts47- **Attack path simulation** — shows how an attacker could pivot from internet to sensitive data48- **Toxic combination** — SCC finding where multiple conditions together = high risk49- **Security marks** — custom labels on resources for SCC filtering/exclusion50- **Posture** — security configuration baseline applied across org/folders/projects5152## Checklist53- [ ] SCC Premium enabled for threat detection?54- [ ] Finding notifications routed to Pub/Sub for automated response?55- [ ] CRITICAL/HIGH findings reviewed within SLA?56- [ ] Mute rules documented and justified (not used to hide real issues)?57- [ ] Compliance dashboard reviewed for relevant framework (CIS, PCI-DSS)?58- [ ] Security marks used to exclude non-applicable resources?5960## Output Format61- 🔴 **Critical** — CRITICAL severity findings unactioned, no SCC notifications configured62- 🟡 **Warning** — using Standard tier (no Event/Container Threat Detection), no compliance monitoring63- 🟢 **Suggestion** — automated remediation via Pub/Sub→Functions for common findings6465## Exam Tips66- SCC Standard = free; Premium = paid (Event/Container Threat Detection requires Premium)67- Security Health Analytics = misconfiguration; Event Threat Detection = active threats in logs68- Muting findings ≠ fixing them; only mute known-acceptable deviations69- Route findings to Pub/Sub → automate remediation (don't just notify, act)70- Compliance dashboard shows control status (passing/failing) against frameworks71- SCC findings + Cloud Audit Logs = complete picture of security posture + activity