| name | implementing-cloud-security-posture-management |
| description | Implementing Cloud Security Posture Management (CSPM) to continuously monitor multi-cloud environments for misconfigurations, compliance violations, and security risks using Prowler, ScoutSuite, AWS Security Hub, Azure Defender, and GCP Security Command Center. . Use when working with implementing cloud security posture management. |
| domain | cybersecurity |
| tags | ["cloud-security","cspm","multi-cloud","compliance","prowler","scoutsuite"] |
| subdomain | cloud-security |
| version | 1.0 |
| author | oyi77 |
| license | Apache-2.0 |
| nist_csf | ["PR.IR-01","ID.AM-08","GV.SC-06","DE.CM-01"] |
Implementing Cloud Security Posture Management
Overview
Cybersecurity skill for implementing cloud security posture management. Follows industry best practices and security standards.
When to Use
Trigger phrases:
-
"implementing cloud security posture management"
-
"Implementing Cloud Security Posture Management (CSPM) to continuously monitor mu"
-
When establishing continuous security monitoring across AWS, Azure, and GCP environments
-
When compliance requirements demand automated posture assessment against CIS, SOC 2, or PCI DSS
-
When security teams need visibility into cloud misconfigurations across multiple accounts and subscriptions
-
When building a security operations workflow that detects and remediates drift from security baselines
-
When migrating workloads to the cloud and need to enforce security guardrails
Do not use for runtime workload protection (use CWPP tools like Falco or Aqua), for application security testing (use DAST/SAST tools), or for network intrusion detection (use cloud-native IDS like GuardDuty or Network Watcher).
When NOT to Use
- When you lack proper authorization for testing
- For production systems without change management
- When the task requires legal or compliance expertise beyond technical scope
Prerequisites
- Multi-cloud credentials with read-only security audit permissions across all target environments
- Prowler v3+ installed (
pip install prowler)
- ScoutSuite installed (
pip install scoutsuite)
- AWS Config, Azure Policy, and GCP Organization Policy enabled in respective environments
- Central logging destination (S3 bucket, Log Analytics Workspace, or Cloud Storage) for findings aggregation
- Notification channels configured (Slack, PagerDuty, email) for critical finding alerts
Workflow
import re
IOC_PATTERNS = {
"ip": r"\b(?:\d{1,3}\.){3}\d{1,3}\b",
"domain": r"\b[a-z0-9-]+\.[a-z]{2,}\b",
"hash_md5": r"\b[a-f0-9]{32}\b",
"hash_sha256": ,
}
() -> :
{k: re.findall(v, text) k, v IOC_PATTERNS.items()}