Imagen de portada del espectáculo AWS Certified Security Specialist Podcast

AWS Certified Security Specialist Podcast

Podcast de Brian Byrne

inglés

Tecnología y ciencia

Oferta limitada

2 meses por 1 €

Después 4,99 € / mesCancela cuando quieras.

  • 20 horas de audiolibros / mes
  • Podcasts solo en Podimo
  • Podcast gratuitos
Empezar

Acerca de AWS Certified Security Specialist Podcast

Welcome to the 'AWS Certified Security Specialist Podcast' where we considered every domain, task statement, knowledge and skill to build a complete audio study guide for the exam  'AWS Certified Security - Specialty (SCS-C02) Exam'. Please like (thumbs up) or provide positive feedback as that would be helpful. Let me know what domain or task statements you would like more content in and will endeavor to get new episodes available for free and subscribers soon. Domain 1 is totally free and the remaining domains initial tasks are also super free episodes.  ****  Subscribe on Apple Podcasts to access the full course !!!   **** Domain 1: Threat Detection and Incident Response focuses on designing comprehensive incident response plans that incorporate AWS best practices, cloud-specific incident handling, and clearly defined roles and responsibilities using the AWS Security Finding Format (ASFF). This domain emphasizes implementing credential invalidation and rotation strategies through services like IAM and AWS Secrets Manager, while ensuring proper resource isolation during security events. Critical skills include deploying and integrating security services such as Security Hub, GuardDuty, Macie, Inspector, Config, Detective, and IAM Access Analyzer with native AWS services and third-party tools through EventBridge. The domain covers detecting security threats and anomalies using AWS managed security services, employing correlation techniques to join data across services, and creating visualizations to identify unusual patterns while centralizing security findings for comprehensive analysis. Domain 2: Security Logging and Monitoring centers on designing and implementing robust monitoring and alerting systems to address security events using services like CloudWatch and EventBridge for automated responses. This includes analyzing architectures to identify monitoring requirements, setting up automated auditing tools, and defining appropriate metrics and thresholds for alert generation. The domain encompasses comprehensive logging solutions utilizing VPC Flow Logs, DNS logs, CloudTrail, and CloudWatch Logs with proper lifecycle management and retention policies. Key competencies include troubleshooting logging configurations, identifying missing logs, managing access permissions for logging services, and designing log analysis solutions using tools like Athena, CloudWatch Logs Insights, and Security Hub insights to identify patterns indicating anomalies and known threats. Domain 3: Infrastructure Security emphasizes implementing security controls across edge services, networks, and compute workloads to protect against common attacks and exploits. Edge security involves leveraging AWS WAF, load balancers, Route 53, CloudFront, and Shield to create layered defense strategies against threats like OWASP Top 10 and DDoS attacks, while applying geographic and rate-limiting restrictions. Network security focuses on VPC security mechanisms including security groups, network ACLs, and Network Firewall, along with inter-VPC connectivity through Transit Gateway and VPC endpoints to keep data off the public internet. Compute workload security involves provisioning and maintaining EC2 instances with proper patching, vulnerability scanning through Inspector and ECR, implementing IAM instance roles, creating hardened AMIs, and applying host-based security mechanisms while securely managing secrets and credentials. Domain 4: Identity and Access Ma

Todos los episodios

109 episodios

Portada del episodio Automating an AWS security response

Automating an AWS security response

Automated Security Response in AWS Automated security response is a foundational capability for operating securely at scale in the AWS Cloud. As cloud environments become increasingly dynamic, manual detection and remediation processes are insufficient to manage the speed, volume, and sophistication of modern threats. AWS enables organizations to implement event-driven, automated security responses that reduce mean time to detect (MTTD) and mean time to respond (MTTR), while improving consistency and governance. Best practice architectures are centered on native AWS security services as authoritative detection sources, including Amazon GuardDuty, AWS Security Hub, AWS Config, IAM Access Analyzer, and AWS CloudTrail. These services generate standardized findings that can be centrally aggregated—most commonly in AWS Security Hub—and routed using Amazon EventBridge to trigger automated remediation workflows. This event-driven approach enables near-real-time responses without the operational overhead of polling or manual intervention. Remediation workflows should be implemented using managed orchestration services such as AWS Lambda, AWS Step Functions, and AWS Systems Manager Automation, selected based on complexity, approval requirements, and execution duration. A tiered response model is recommended, where low-risk actions are automatically remediated, medium-risk actions require human approval, and high-risk actions are alert-only. This model balances security effectiveness with operational safety and minimizes unintended disruption. Strong governance is critical. Automated responses must operate under least-privilege IAM roles, with guardrails enforced using AWS Organizations Service Control Policies (SCPs) and AWS Config conformance packs. All automated actions must be fully logged and auditable, enabling traceability through CloudTrail and centralized log storage. When designed correctly, automated security response on AWS improves resilience, enforces security baselines consistently across accounts, and allows security teams to focus on higher-value analysis rather than repetitive manual remediation. 1 . Core Design Principles Event-Driven Automation • Use event-based triggers instead of polling. • Primary services: • Amazon EventBridge (preferred) • Amazon CloudWatch Events (legacy) • Enables near-real-time response to security findings. Least Privilege by Design • Automation roles must: • Use dedicated IAM roles • Have explicit, minimal permissions • Avoid reusing human or application roles. Deterministic and Idempotent Actions • Automated actions must be: • Repeatable • Safe to re-run • Prevent cascading failures and runaway remediation loops. 2. Detection Layer (Inputs to Automation) Native AWS Security Signals • Amazon GuardDuty – threat detection • AWS Security Hub – aggregated findings • AWS Config – configuration drift • IAM Access Analyzer – unintended access • CloudTrail – API activity monitoring Third-Party & Custom Signals • Third-party SIEM/SOAR integrations • Custom findings published to Security Hub (OCSF) Best Practice • Normalize findings into Security Hub where possible. • Treat Security Hub as the central event source. 3. Orchestration & Control Plane Service - Use Case AWS Lambda: Fast, lightweight remediation AWS Step Functions: Multi-step workflows, approvals AWS Systems Manager Automation: OS, EC2, and fleet-level actions 4. Common Automated Remediation Patterns Identity & Access • Disable or rotate compromised IAM credentials • Remove public access from: • IAM policies • Resource policies • Enforce MFA for privileged users Network Security • Quarantine EC2 instances via: • Security group isolation • NACL updates • Block malicious IPs using: • AWS WAF • Route 53 Resolver DNS Firewall Data Protection • Auto-enable: • S3 Block Public Access • Default encryption (SSE-KMS) • Rotate exposed secrets in AWS Secrets Manager

18 de dic de 2025 - 14 min
Portada del episodio AWS Lambda security architecture

AWS Lambda security architecture

AWS Lambda provides strong default security controls across identity, network, data, and operational layers. When combined with least-privilege IAM, VPC isolation, encryption, and continuous monitoring, Lambda enables highly secure, serverless workloads with minimal operational overhead. 1. Identity and Access Management (IAM) Execution Role • Each Lambda function assumes an IAM execution role at runtime. • Permissions are granted using least-privilege IAM policies, defining access to AWS services such as Amazon S3, DynamoDB, or CloudWatch. • Credentials are short-lived and automatically rotated via AWS STS. Resource-Based Policies • Lambda supports resource-based policies to allow external services (e.g., API Gateway, EventBridge, S3) to invoke the function. • Enables cross-account invocation without sharing IAM roles. Fine-Grained Access Controls • Conditions such as aws:SourceArn and aws:SourceAccount restrict invocation scope. • Integration with IAM permission boundaries and SCPs for enterprise governance. 2. Network Security VPC Integration • Lambda functions can run inside a VPC, enabling access to private resources. • Security controls include: • Security groups (stateful firewall rules) • Private subnets • VPC endpoints (PrivateLink) to avoid public internet exposure Outbound Traffic Control • Internet access requires a NAT Gateway. • Egress can be restricted using network ACLs, security groups, or VPC routing controls. 3. Data Protection Encryption at Rest • Lambda code packages, environment variables, and layers are encrypted using AWS KMS. • Supports both AWS-managed keys and customer-managed KMS keys (CMKs). Encryption in Transit • All service-to-service communication uses TLS. • When invoked through API Gateway or ALB, HTTPS is enforced with configurable TLS policies. Secrets Management • Sensitive data should be stored in: • AWS Secrets Manager • AWS Systems Manager Parameter Store • Avoids hardcoding secrets in function code or environment variables. 4. Application-Level Security Environment Isolation • Each Lambda invocation runs in an isolated execution environment, preventing cross-function interference. • The underlying infrastructure is fully managed and patched by AWS. Concurrency Controls • Reserved concurrency limits protect backend systems from traffic spikes. • Prevents denial-of-service scenarios caused by runaway invocation scaling. Code Integrity • Function deployment packages are immutable once published. • Versioning and aliases enable controlled, auditable deployments. 5. Monitoring, Logging, and Threat Detection Logging and Auditing • Amazon CloudWatch Logs capture function output and execution details. • AWS CloudTrail records API-level changes (create, update, delete, invoke). Threat Detection • Amazon GuardDuty identifies anomalous or malicious behavior related to Lambda activity. • AWS Config evaluates compliance against security baselines. Operational Visibility • Metrics such as invocation count, errors, throttles, and duration support security monitoring and incident response. 6. Supply Chain and Deployment Security Code Signing • AWS Lambda code signing ensures only trusted artifacts are deployed. • Integrates with AWS Signer to enforce deployment integrity controls. CI/CD Integration • Supports secure pipelines using AWS CodePipeline, CodeBuild, or third-party tools. • Enforces separation of duties between build, sign, and deploy stages. 7. Compliance and Governance Shared Responsibility Model • AWS secures the underlying infrastructure. • Customers secure: • Function code • IAM permissions • Network configuration • Data handling logic Compliance Support • Lambda is compliant with major frameworks (e.g., ISO 27001, SOC, PCI DSS, HIPAA), enabling regulated workloads when correctly configured.

18 de dic de 2025 - 18 min
Portada del episodio Amazon API Gateway security blueprint

Amazon API Gateway security blueprint

Modern enterprises increasingly rely on APIs as the primary interface between digital services, partners, and end users. As APIs expose critical business logic and sensitive data, they have become a high-value attack surface for threat actors. An API Gateway Security Blueprint provides a structured, defense-in-depth framework to protect APIs throughout their lifecycle, from design and deployment to runtime operations and monitoring. This blueprint defines a standardized security architecture that centralizes control at the API gateway layer while integrating with broader identity, network, and data protection strategies. It establishes consistent mechanisms for authentication, authorization, traffic management, and threat mitigation, ensuring that APIs are securely exposed without impeding developer productivity or system scalability. Key elements of the blueprint include strong identity enforcement using industry-standard authentication protocols (such as OAuth 2.0 and OpenID Connect), fine-grained authorization policies, and secure token handling. The gateway acts as a policy enforcement point, validating client identities, enforcing least-privilege access, and preventing unauthorized or excessive API usage through throttling, quotas, and rate limiting. From a threat protection perspective, the blueprint incorporates controls to mitigate common API-specific risks, including OWASP API Top 10 vulnerabilities. These controls include input validation, schema enforcement, protection against injection and deserialization attacks, bot and abuse detection, and resilience against denial-of-service attacks. Integration with web application firewalls (WAF), distributed denial-of-service (DDoS) protection services, and anomaly detection systems is a core design principle. Operational visibility and governance are also central to the blueprint. Comprehensive logging, metrics, and tracing enable real-time monitoring, forensic analysis, and compliance reporting. The blueprint promotes automation through infrastructure-as-code and policy-as-code approaches, allowing security controls to be consistently applied across environments and aligned with DevSecOps practices. Ultimately, the API Gateway Security Blueprint enables organizations to reduce risk, improve security posture, and maintain regulatory compliance while supporting rapid API adoption and innovation. By treating the API gateway as a strategic security control point rather than a simple routing component, organizations can securely scale their digital ecosystems and protect critical business capabilities.

18 de dic de 2025 - 15 min
Portada del episodio Amazon SageMaker AI to secure the AWS Work Environments

Amazon SageMaker AI to secure the AWS Work Environments

As organizations increasingly rely on cloud-native and AI-driven workloads, security must evolve beyond static controls toward intelligent, adaptive, and scalable defenses. Amazon SageMaker AI provides a strategic foundation for applying advanced machine learning (ML) to security use cases while operating within a rigorously secured AWS environment. When properly governed, SageMaker enables organizations to both enhance their security posture and operate AI workloads in a compliant, enterprise-grade manner. Strategic Value of SageMaker AI for Security Amazon SageMaker AI enables security teams to operationalize machine learning across the full lifecycle—from data ingestion and model training to deployment and monitoring—without managing underlying infrastructure. This capability allows organizations to: • Detect anomalous behavior across users, workloads, networks, and APIs at scale. • Improve threat detection accuracy beyond rule-based systems by identifying subtle and previously unknown attack patterns. • Automate security analysis for large and complex datasets, including logs, telemetry, and application signals. • Reduce mean time to detect (MTTD) and respond (MTTR) through real-time inference and automated remediation workflows. Common high-impact security use cases include insider threat detection, credential misuse detection, fraud and abuse prevention, malware classification, and predictive risk scoring across cloud environments. Built-In Security and Compliance Foundations SageMaker AI is designed to operate within AWS’s shared responsibility model and inherits strong foundational security controls: • Identity and Access Management: Fine-grained access control using AWS IAM, including support for least-privilege policies, role-based access, and integration with enterprise identity providers. • Network Isolation: Full support for VPC-only deployments, private endpoints, security groups, and traffic inspection to prevent public exposure of training or inference workloads. • Data Protection: Native encryption for data at rest and in transit using AWS Key Management Service (KMS), with customer-managed keys and auditability. • Audit and Governance: Comprehensive logging via AWS CloudTrail, Amazon CloudWatch, and AWS Config to support forensic analysis, compliance audits, and regulatory requirements. These capabilities allow organizations to deploy AI-driven security workloads without introducing unmanaged risk or expanding the attack surface. Securing the AWS Work Environment with SageMaker When integrated into the broader AWS security architecture, SageMaker AI strengthens the overall work environment by acting as an intelligence layer across existing controls. SageMaker models can consume signals from services such as Amazon GuardDuty, AWS CloudTrail, VPC Flow Logs, AWS WAF, and third-party security platforms to provide deeper, contextualized insights. At an organizational level, SageMaker supports secure multi-account strategies using AWS Organizations, centralized security tooling, and delegated administration. This enables consistent enforcement of security standards while allowing innovation teams to safely develop and deploy models. Governance, Risk, and Responsible AI From an executive risk perspective, SageMaker AI supports strong governance through model versioning, lineage tracking, approval workflows, and monitoring for data drift or anomalous predictions. These controls are essential for maintaining trust, regulatory compliance, and operational stability—particularly in regulated industries such as finance, healthcare, and government. Business Outcomes • Strengthen cloud security defenses through adaptive, intelligence-driven controls. • Scale security operations without proportional increases in headcount or infrastructure complexity. • Improve resilience against sophisticated and evolving threats. • Maintain compliance and governance while accelerating innovation in AI and cloud adoption.

18 de dic de 2025 - 15 min
Portada del episodio AWS IAM Identity Center - Best Practices

AWS IAM Identity Center - Best Practices

AWS Identity and Access Management (IAM) is a foundational control plane for securing access to AWS environments. At enterprise scale, AWS IAM Identity Center is essential because it provides a centralized, auditable, and scalable identity authority for human access across AWS accounts, applications, and integrated third-party services. IAM Identity Center enables organizations to move away from long-lived IAM users and static credentials toward federated, least-privilege, and temporary access aligned with Zero Trust principles. It integrates natively with AWS Organizations, supports external identity providers (IdPs) such as Microsoft Entra ID (Azure AD), Okta, and Ping, and enforces consistent access governance across multi-account environments. From a risk and compliance perspective, IAM Identity Center significantly reduces credential sprawl, simplifies access reviews, strengthens MFA enforcement, and improves visibility into who has access to what—and why. For regulated industries and security-sensitive workloads, it is a critical enabler of compliance with standards such as ISO 27001, SOC 2, PCI-DSS, HIPAA, and FedRAMP. In modern AWS architectures, IAM Identity Center is no longer optional—it is the recommended control point for workforce identity, enabling secure cloud adoption, operational efficiency, and centralized security governance. Key Points: AWS IAM Identity Center 1. Centralized Workforce Identity • Acts as the primary identity hub for human users accessing AWS. • Eliminates the need for IAM users in member accounts. • Provides a single access portal for AWS accounts and supported applications. 2. Native Integration with AWS Organizations • Enables account-level access management at scale. • Supports rapid onboarding of new AWS accounts with predefined access models. • Aligns identity governance with organizational structure (OU-based access). 3. Federation with External Identity Providers • Integrates with enterprise IdPs using SAML 2.0 or OIDC. • Supports existing corporate credentials, lifecycle management, and MFA policies. • Enables centralized joiner/mover/leaver processes. 4. Permission Sets and Least Privilege • Uses permission sets as reusable, auditable access definitions. • Maps job functions (e.g., SecurityAdmin, ReadOnlyAuditor) to AWS managed or custom IAM policies. • Enforces temporary credentials via AWS STS, reducing credential compromise risk. 5. Strong Authentication and MFA Enforcement • Supports MFA natively or via external IdP enforcement. • Enables conditional access based on identity provider capabilities. • Eliminates static passwords and access keys for human users. 6. Consistent Access Governance • Centralized assignment of users and groups to accounts and roles. • Simplifies periodic access reviews and compliance audits. • Improves visibility into access paths across environments. 7. Application Access Beyond AWS • Provides SSO access to SaaS and custom applications. • Reduces identity silos by extending governance beyond AWS infrastructure. 8. Improved Security Posture • Reduces blast radius by avoiding long-lived credentials. • Enables faster incident response by central access revocation. • Integrates with CloudTrail and AWS audit services for traceability. For organizations operating more than a handful of AWS accounts—or subject to regulatory oversight—AWS IAM Identity Center is the cornerstone of secure human access. It transforms IAM from a tactical configuration task into a strategic security capability, enabling scalable governance, reduced operational risk, and alignment with modern identity-first security models.

18 de dic de 2025 - 14 min
Soy muy de podcasts. Mientras hago la cama, mientras recojo la casa, mientras trabajo… Y en Podimo encuentro podcast que me encantan. De emprendimiento, de salid, de humor… De lo que quiera! Estoy encantada 👍
Soy muy de podcasts. Mientras hago la cama, mientras recojo la casa, mientras trabajo… Y en Podimo encuentro podcast que me encantan. De emprendimiento, de salid, de humor… De lo que quiera! Estoy encantada 👍
MI TOC es feliz, que maravilla. Ordenador, limpio, sugerencias de categorías nuevas a explorar!!!
Me suscribi con los 14 días de prueba para escuchar el Podcast de Misterios Cotidianos, pero al final me quedo mas tiempo porque hacia tiempo que no me reía tanto. Tiene Podcast muy buenos y la aplicación funciona bien.
App ligera, eficiente, encuentras rápido tus podcast favoritos. Diseño sencillo y bonito. me gustó.
contenidos frescos e inteligentes
La App va francamente bien y el precio me parece muy justo para pagar a gente que nos da horas y horas de contenido. Espero poder seguir usándola asiduamente.

Elige tu suscripción

Más populares

Oferta limitada

Premium

20 horas de audiolibros

  • Podcasts solo en Podimo

  • Disfruta los shows de Podimo sin anuncios

  • Cancela cuando quieras

2 meses por 1 €
Después 4,99 € / mes

Empezar

Premium Plus

100 horas de audiolibros

  • Podcasts solo en Podimo

  • Disfruta los shows de Podimo sin anuncios

  • Cancela cuando quieras

Disfruta 30 días gratis
Después 9,99 € / mes

Prueba gratis

Sólo en Podimo

Audiolibros populares

Preguntas frecuentes

Más preguntas y respuestas
Empezar

2 meses por 1 €. Después 4,99 € / mes. Cancela cuando quieras.