SlideShare a Scribd company logo
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Inventory, Track, & Respond to
AWS Asset Changes within
Seconds at Scale
Mike Grima
Senior Cloud Security Engineer
S E C 3 9 1
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Agenda
What are we trying to solve?
Inventory Collection Approaches
Security Monkey
Tooling Challenges
Deep-dive into Historical
Desired AWS Infrastructure State
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Knowing is half the
battle
Infrastructure visibility is
extremely important
Need answers to the following
questions:
Which Amazon Web Services (AWS)
assets do I have deployed?
Where are these assets deployed?
Are they configured securely?
Did the configuration change?
Who created/updated/deleted a given
asset, and when?
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Security Follows Visibility
DFIR capabilities
Detection of compromise
Organizational policy violations
Identify publicly accessible resources
Detection of insecure-by-default configurations
Determination of resource ownership
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Inventory collection requirements
Must be timely and accurate
Full-view of the environment
Attribution (i.e. AWS CloudTrail context)
Who/What/Where/When/How?
Change History
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
How to collect inventory?
Polling
Periodically “asking” AWS for the current state of the infrastructure
Events
AWS tells you when the infrastructure changes
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Polling pros vs. cons
Pros
Complete inventory
On-demand
Cons
Slow – bigger environments take longer to inventory
High Latency -Must be aggressive to reduce
Risk of rate limiting
No CloudTrail Context – mapping resources to CloudTrail entries is non-trivial
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Event-driven pros vs. cons
Pros
Fast – react to changes when they happen (order of seconds)
Timely state of infrastructure
Enables fast response
*Can reduce rate-limiting
Cons
Complex – many moving parts required
Lossiness of events – a polling component is still required!
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Polling for security @ Netflix - Security Monkey
Originally open sourced in 2014 by Patrick Kelley
https://github.com/Netflix/security_monkey
Watchers describe infrastructure
Auditors check for insecure configuration
Reporters provide notifications (emails, etc.)
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Some challenges
Netflix infrastructure in 2014 was very different than today
Then: Few AWS accounts, Roles, Security Groups, etc.
Now: Many accounts (100+), 1000+ Roles, Security Groups, etc.
Security Monkey ran on one instance for API, UI, and Watcher logic
Earlier this year it stopped working. Hard.
Very stale data – WEEKS old
Major refactor for 1.0 release in January 2018 (now over 40+ instances)
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Security Monkey – Refactoring
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Some limitations
Slow at our scale
30+ min to poll for Security Groups, IAM Roles, etc. in just ONE account
Rate limiting
No CloudTrail context
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Scalability challenges
Security Monkey is a great tool, but our infrastructure outgrew it.
Polling is not effective at large scale.
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Back in time to 2016
Events are the way to go
Project “Banana Peel” – Security Monkey as an AWS Lambda
Stripped down version of Security Monkey
Made use of Amazon CloudWatch Events
Provided CloudTrail context and completed response in < 30 seconds!
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Banana Peel’s limitations
CloudWatch Event Buses didn’t exist yet
Complex orchestration for event centralization (back then)
Limit risks
Cumbersome
Data was “locked” into Security Monkey / closed-loop
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Historical
Serverless and Event-Driven
Tracks changes to AWS resources within seconds of a
change
Maintains the CloudTrail context of changes
Downstream consumers can subscribe to material
changes
https://github.com/Netflix-Skunkworks/historical
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Historical
🚧 👷 Hard-Hat required 👷 🚧
Under VERY active development
Historical inventories and monitors the environment
for changes
Flexible
NOT a closed-loop system
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Historical
Currently monitoring
Amazon Simple Storage Service (Amazon S3)
Amazon Elastic Compute Cloud (Amazon EC2) Security Groups
IAM is in active development and coming soon!
Roles
Groups
Users
Managed Policies
Server Certificates
Basic Terraform template for installation
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
General Concepts
CloudWatch Event tells us a resource changed
We describe that resource that changed
We check if the resource’s state is actually different from what we
previously knew about it
Noise reduction for tools that periodically overwrite configurations
If there was a change, we record the details, and provide downstream
consumers with the newest state of the resource
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
General Concepts
We immediately process CloudWatch Event notifications
We poll periodically to capture state in case an event is dropped
Event lossiness is very low
Every few hours – low priority
In region deployments for faster processing of events
Per-resource type stacks
Amazon S3, Amazon EC2 Security Groups, IAM, etc
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
We ♥ Amazon SQS and Lambda
We make use of Amazon SQS to invoke Lambda functions as much as
possible.
It’s awesome:
Concurrency
Auto-scales
Retries without blocking
Dead-letter queue ability
Message delays
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Components – CloudWatch Event Buses
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Components – IAM Roles
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
The Poller
Periodically invoked every few hours
“Poller Tasker” schedules a Lambda
function (the ”Poller”) to list all assets in
an account and region
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
The Collector – Describes a resource
Poller Collector
Tasked by the Poller
Event Collector
Tasked by CloudWatch
Events
Resource config is
saved to the ”Current”
table
Cache of all existing items
for a given resource type
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
The Differ – Checks for actual changes
Changes to the Current table pass changes to the Differ
Proxied over via Amazon DynamoDB Streams to Amazon SQS for Differ invocation
Differ compares the new config with the previously known config stored
in the “Durable” table
Changes result in new change record
Non-changes are ignored
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Notification to downstream consumers
The “Durable” table’s
DynamoDB Stream invokes a
Proxy Lambda that pushes to
Amazon Simple Notification
Service (Amazon SNS)
The Proxy serializes the item
along with the CloudTrail
context in an easy-to-
consume JSON
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Current Internal usage and stats
Source of truth for enabling Amazon S3 Server Access Logs for ALL S3
buckets at Netflix!
We have A LOT of S3 Buckets!
StreamAlert integration for Security Group alerting
Alert on open IP ingress rules, ANYWHERE in our environment!
Approx. 1 Minute from time of event to alert completion (vs. 15 minutes the old way)!
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Goals for Historical
Add more AWS resource types
Enhancements to
Make it easier to add new resource types
Increase speed!
Improve documentation
UI and API
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Security Monkey’s Future
A great tool that took us very far
Our infrastructure outgrew it
Bigger scale
Event driven (FAST!)
Better context
Reduce rate-limiting
Better downstream consumption
Support minor bug fixes
Community contributions always welcome
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Netflix’s Future AWS Infrastructure
Fast-response and auto-correcting
Discover bad signals; fix automatically
Prevent and undo-large scale automation failures
Thank you!
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Mike Grima
LinkedIn & GitHub: mikegrima
mgrima@netflix.com
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.

More Related Content

What's hot

All Day DevOps - Azure DevOps from Start to Star
All Day DevOps - Azure DevOps from Start to StarAll Day DevOps - Azure DevOps from Start to Star
All Day DevOps - Azure DevOps from Start to Star
Ángel Rayo
 
AWS Summit Seoul 2023 | 클라우드를 통한 온/오프라인 비즈니스의 통합, GS리테일의 현대화
AWS Summit Seoul 2023 | 클라우드를 통한 온/오프라인 비즈니스의 통합, GS리테일의 현대화AWS Summit Seoul 2023 | 클라우드를 통한 온/오프라인 비즈니스의 통합, GS리테일의 현대화
AWS Summit Seoul 2023 | 클라우드를 통한 온/오프라인 비즈니스의 통합, GS리테일의 현대화
Amazon Web Services Korea
 
AWSome Day Online Conference 2019 - Module 2 AWS Core Services.pdf
AWSome Day Online Conference 2019 - Module 2 AWS Core Services.pdfAWSome Day Online Conference 2019 - Module 2 AWS Core Services.pdf
AWSome Day Online Conference 2019 - Module 2 AWS Core Services.pdf
Amazon Web Services
 
K8s on AWS - Introducing Amazon EKS
K8s on AWS - Introducing Amazon EKSK8s on AWS - Introducing Amazon EKS
K8s on AWS - Introducing Amazon EKS
Amazon Web Services
 
AWSome Day Online Conference 2019 - Module 5 AWS Pricing and Support.pdf
AWSome Day Online Conference 2019 - Module 5 AWS Pricing and Support.pdfAWSome Day Online Conference 2019 - Module 5 AWS Pricing and Support.pdf
AWSome Day Online Conference 2019 - Module 5 AWS Pricing and Support.pdf
Amazon Web Services
 
Ibm watson content hub customer deck
Ibm watson content hub   customer deckIbm watson content hub   customer deck
Ibm watson content hub customer deck
Ahlonko Angelo KOMLA
 
Cloud Migration Workshop
Cloud Migration WorkshopCloud Migration Workshop
Cloud Migration Workshop
Amazon Web Services
 
Getting Started with Amazon Database Migration Service
Getting Started with Amazon Database Migration ServiceGetting Started with Amazon Database Migration Service
Getting Started with Amazon Database Migration Service
Amazon Web Services
 
AWS ECS vs EKS
AWS ECS vs EKSAWS ECS vs EKS
AWS ECS vs EKS
Norberto Enomoto
 
Running Kubernetes in hybrid environments with AWS (EKS Distro & EKS Anywhere...
Running Kubernetes in hybrid environments with AWS (EKS Distro & EKS Anywhere...Running Kubernetes in hybrid environments with AWS (EKS Distro & EKS Anywhere...
Running Kubernetes in hybrid environments with AWS (EKS Distro & EKS Anywhere...
Amazon Web Services Korea
 
Agile metrics - Measure and Improve
Agile metrics - Measure and ImproveAgile metrics - Measure and Improve
Agile metrics - Measure and Improve
WemanityUK
 
Multi Account Route 53
Multi Account Route 53 Multi Account Route 53
Multi Account Route 53
Practical Code, LLC
 
A Day in the Life of a Test Architect
A Day in the Life of a Test ArchitectA Day in the Life of a Test Architect
A Day in the Life of a Test Architect
TechWell
 
Cloud Center of Excellence - Datasheet
Cloud Center of Excellence - DatasheetCloud Center of Excellence - Datasheet
Cloud Center of Excellence - Datasheet
Todd Erskine
 
AWS Technical Essentials Day
AWS Technical Essentials DayAWS Technical Essentials Day
AWS Technical Essentials Day
Amazon Web Services
 
What is Scaled Agile Framework | Edureka
What is Scaled Agile Framework | EdurekaWhat is Scaled Agile Framework | Edureka
What is Scaled Agile Framework | Edureka
Edureka!
 
Site-Reliability-Engineering-v2[6241].pdf
Site-Reliability-Engineering-v2[6241].pdfSite-Reliability-Engineering-v2[6241].pdf
Site-Reliability-Engineering-v2[6241].pdf
DeepakGupta747774
 
...Lag
...Lag...Lag
IT Transformation in the Public Sector
IT Transformation in the Public SectorIT Transformation in the Public Sector
IT Transformation in the Public Sector
Amazon Web Services
 
AWS Networking Fundamentals
AWS Networking FundamentalsAWS Networking Fundamentals
AWS Networking Fundamentals
Amazon Web Services
 

What's hot (20)

All Day DevOps - Azure DevOps from Start to Star
All Day DevOps - Azure DevOps from Start to StarAll Day DevOps - Azure DevOps from Start to Star
All Day DevOps - Azure DevOps from Start to Star
 
AWS Summit Seoul 2023 | 클라우드를 통한 온/오프라인 비즈니스의 통합, GS리테일의 현대화
AWS Summit Seoul 2023 | 클라우드를 통한 온/오프라인 비즈니스의 통합, GS리테일의 현대화AWS Summit Seoul 2023 | 클라우드를 통한 온/오프라인 비즈니스의 통합, GS리테일의 현대화
AWS Summit Seoul 2023 | 클라우드를 통한 온/오프라인 비즈니스의 통합, GS리테일의 현대화
 
AWSome Day Online Conference 2019 - Module 2 AWS Core Services.pdf
AWSome Day Online Conference 2019 - Module 2 AWS Core Services.pdfAWSome Day Online Conference 2019 - Module 2 AWS Core Services.pdf
AWSome Day Online Conference 2019 - Module 2 AWS Core Services.pdf
 
K8s on AWS - Introducing Amazon EKS
K8s on AWS - Introducing Amazon EKSK8s on AWS - Introducing Amazon EKS
K8s on AWS - Introducing Amazon EKS
 
AWSome Day Online Conference 2019 - Module 5 AWS Pricing and Support.pdf
AWSome Day Online Conference 2019 - Module 5 AWS Pricing and Support.pdfAWSome Day Online Conference 2019 - Module 5 AWS Pricing and Support.pdf
AWSome Day Online Conference 2019 - Module 5 AWS Pricing and Support.pdf
 
Ibm watson content hub customer deck
Ibm watson content hub   customer deckIbm watson content hub   customer deck
Ibm watson content hub customer deck
 
Cloud Migration Workshop
Cloud Migration WorkshopCloud Migration Workshop
Cloud Migration Workshop
 
Getting Started with Amazon Database Migration Service
Getting Started with Amazon Database Migration ServiceGetting Started with Amazon Database Migration Service
Getting Started with Amazon Database Migration Service
 
AWS ECS vs EKS
AWS ECS vs EKSAWS ECS vs EKS
AWS ECS vs EKS
 
Running Kubernetes in hybrid environments with AWS (EKS Distro & EKS Anywhere...
Running Kubernetes in hybrid environments with AWS (EKS Distro & EKS Anywhere...Running Kubernetes in hybrid environments with AWS (EKS Distro & EKS Anywhere...
Running Kubernetes in hybrid environments with AWS (EKS Distro & EKS Anywhere...
 
Agile metrics - Measure and Improve
Agile metrics - Measure and ImproveAgile metrics - Measure and Improve
Agile metrics - Measure and Improve
 
Multi Account Route 53
Multi Account Route 53 Multi Account Route 53
Multi Account Route 53
 
A Day in the Life of a Test Architect
A Day in the Life of a Test ArchitectA Day in the Life of a Test Architect
A Day in the Life of a Test Architect
 
Cloud Center of Excellence - Datasheet
Cloud Center of Excellence - DatasheetCloud Center of Excellence - Datasheet
Cloud Center of Excellence - Datasheet
 
AWS Technical Essentials Day
AWS Technical Essentials DayAWS Technical Essentials Day
AWS Technical Essentials Day
 
What is Scaled Agile Framework | Edureka
What is Scaled Agile Framework | EdurekaWhat is Scaled Agile Framework | Edureka
What is Scaled Agile Framework | Edureka
 
Site-Reliability-Engineering-v2[6241].pdf
Site-Reliability-Engineering-v2[6241].pdfSite-Reliability-Engineering-v2[6241].pdf
Site-Reliability-Engineering-v2[6241].pdf
 
...Lag
...Lag...Lag
...Lag
 
IT Transformation in the Public Sector
IT Transformation in the Public SectorIT Transformation in the Public Sector
IT Transformation in the Public Sector
 
AWS Networking Fundamentals
AWS Networking FundamentalsAWS Networking Fundamentals
AWS Networking Fundamentals
 

Similar to Inventory, Track, and Respond to AWS Asset Changes within Seconds at Scale (SEC391) - AWS re:Invent 2018

AWS and Symantec: Cyber Defense at Scale (SEC311-S) - AWS re:Invent 2018
AWS and Symantec: Cyber Defense at Scale (SEC311-S) - AWS re:Invent 2018AWS and Symantec: Cyber Defense at Scale (SEC311-S) - AWS re:Invent 2018
AWS and Symantec: Cyber Defense at Scale (SEC311-S) - AWS re:Invent 2018
Amazon Web Services
 
Lock it Down: How to Secure your AWS Account and your Organization's Accounts
Lock it Down: How to Secure your AWS Account and your Organization's AccountsLock it Down: How to Secure your AWS Account and your Organization's Accounts
Lock it Down: How to Secure your AWS Account and your Organization's Accounts
Amazon Web Services
 
Threat Detection & Remediation Workshop - Module 2
Threat Detection & Remediation Workshop - Module 2Threat Detection & Remediation Workshop - Module 2
Threat Detection & Remediation Workshop - Module 2
Amazon Web Services
 
Meeting Enterprise Security Requirements with AWS Native Security Services (S...
Meeting Enterprise Security Requirements with AWS Native Security Services (S...Meeting Enterprise Security Requirements with AWS Native Security Services (S...
Meeting Enterprise Security Requirements with AWS Native Security Services (S...
Amazon Web Services
 
Come Out From Behind Your Firewall
Come Out From Behind Your FirewallCome Out From Behind Your Firewall
Come Out From Behind Your Firewall
Amazon Web Services
 
Leadership Session: AWS Security (SEC305-L) - AWS re:Invent 2018
Leadership Session: AWS Security (SEC305-L) - AWS re:Invent 2018Leadership Session: AWS Security (SEC305-L) - AWS re:Invent 2018
Leadership Session: AWS Security (SEC305-L) - AWS re:Invent 2018
Amazon Web Services
 
[NEW LAUNCH!] Introduction to AWS Security Hub (SEC397) - AWS re:Invent 2018
[NEW LAUNCH!] Introduction to AWS Security Hub (SEC397) - AWS re:Invent 2018[NEW LAUNCH!] Introduction to AWS Security Hub (SEC397) - AWS re:Invent 2018
[NEW LAUNCH!] Introduction to AWS Security Hub (SEC397) - AWS re:Invent 2018
Amazon Web Services
 
A Self-Defending Border: Protect Your Web-Facing Workloads with AWS Security ...
A Self-Defending Border: Protect Your Web-Facing Workloads with AWS Security ...A Self-Defending Border: Protect Your Web-Facing Workloads with AWS Security ...
A Self-Defending Border: Protect Your Web-Facing Workloads with AWS Security ...
Amazon Web Services
 
How Nubank Automates Fine-Grained Security with IAM, AWS Lambda, and CI/CD (F...
How Nubank Automates Fine-Grained Security with IAM, AWS Lambda, and CI/CD (F...How Nubank Automates Fine-Grained Security with IAM, AWS Lambda, and CI/CD (F...
How Nubank Automates Fine-Grained Security with IAM, AWS Lambda, and CI/CD (F...
Amazon Web Services
 
Build Your Own Log Analytics Solutions on AWS (ANT323-R) - AWS re:Invent 2018
Build Your Own Log Analytics Solutions on AWS (ANT323-R) - AWS re:Invent 2018Build Your Own Log Analytics Solutions on AWS (ANT323-R) - AWS re:Invent 2018
Build Your Own Log Analytics Solutions on AWS (ANT323-R) - AWS re:Invent 2018
Amazon Web Services
 
Lock It Down: How to Secure Your Organization's AWS Account
Lock It Down: How to Secure Your Organization's AWS AccountLock It Down: How to Secure Your Organization's AWS Account
Lock It Down: How to Secure Your Organization's AWS Account
Amazon Web Services
 
How to build scalable and resilient applications in the cloud - AWS Summit Ca...
How to build scalable and resilient applications in the cloud - AWS Summit Ca...How to build scalable and resilient applications in the cloud - AWS Summit Ca...
How to build scalable and resilient applications in the cloud - AWS Summit Ca...
Amazon Web Services
 
How to Perform Forensics on AWS Using Serverless Infrastructure (SEC416-R1) -...
How to Perform Forensics on AWS Using Serverless Infrastructure (SEC416-R1) -...How to Perform Forensics on AWS Using Serverless Infrastructure (SEC416-R1) -...
How to Perform Forensics on AWS Using Serverless Infrastructure (SEC416-R1) -...
Amazon Web Services
 
Layered Perimeter Protection for Apps Running on AWS (CTD201-R1) - AWS re:Inv...
Layered Perimeter Protection for Apps Running on AWS (CTD201-R1) - AWS re:Inv...Layered Perimeter Protection for Apps Running on AWS (CTD201-R1) - AWS re:Inv...
Layered Perimeter Protection for Apps Running on AWS (CTD201-R1) - AWS re:Inv...
Amazon Web Services
 
New AWS Security Solutions to Protect Your Workload
New AWS Security Solutions to Protect Your WorkloadNew AWS Security Solutions to Protect Your Workload
New AWS Security Solutions to Protect Your Workload
Amazon Web Services
 
Moving 400 Engineers to AWS: Our Journey to Secure Adoption (SEC306-S) - AWS ...
Moving 400 Engineers to AWS: Our Journey to Secure Adoption (SEC306-S) - AWS ...Moving 400 Engineers to AWS: Our Journey to Secure Adoption (SEC306-S) - AWS ...
Moving 400 Engineers to AWS: Our Journey to Secure Adoption (SEC306-S) - AWS ...
Amazon Web Services
 
Deep Dive into AWS X-Ray: Monitor Modern Applications (DEV324) - AWS re:Inven...
Deep Dive into AWS X-Ray: Monitor Modern Applications (DEV324) - AWS re:Inven...Deep Dive into AWS X-Ray: Monitor Modern Applications (DEV324) - AWS re:Inven...
Deep Dive into AWS X-Ray: Monitor Modern Applications (DEV324) - AWS re:Inven...
Amazon Web Services
 
AWSome Day - Solutions Architecture Best Practices
AWSome Day - Solutions Architecture Best PracticesAWSome Day - Solutions Architecture Best Practices
AWSome Day - Solutions Architecture Best Practices
Amazon Web Services
 
Evolve Your Incident Response Process and Powers for AWS - SID306 - Chicago A...
Evolve Your Incident Response Process and Powers for AWS - SID306 - Chicago A...Evolve Your Incident Response Process and Powers for AWS - SID306 - Chicago A...
Evolve Your Incident Response Process and Powers for AWS - SID306 - Chicago A...
Amazon Web Services
 
Deep Dive on Amazon GuardDuty - AWS Online Tech Talks
Deep Dive on Amazon GuardDuty - AWS Online Tech TalksDeep Dive on Amazon GuardDuty - AWS Online Tech Talks
Deep Dive on Amazon GuardDuty - AWS Online Tech Talks
Amazon Web Services
 

Similar to Inventory, Track, and Respond to AWS Asset Changes within Seconds at Scale (SEC391) - AWS re:Invent 2018 (20)

AWS and Symantec: Cyber Defense at Scale (SEC311-S) - AWS re:Invent 2018
AWS and Symantec: Cyber Defense at Scale (SEC311-S) - AWS re:Invent 2018AWS and Symantec: Cyber Defense at Scale (SEC311-S) - AWS re:Invent 2018
AWS and Symantec: Cyber Defense at Scale (SEC311-S) - AWS re:Invent 2018
 
Lock it Down: How to Secure your AWS Account and your Organization's Accounts
Lock it Down: How to Secure your AWS Account and your Organization's AccountsLock it Down: How to Secure your AWS Account and your Organization's Accounts
Lock it Down: How to Secure your AWS Account and your Organization's Accounts
 
Threat Detection & Remediation Workshop - Module 2
Threat Detection & Remediation Workshop - Module 2Threat Detection & Remediation Workshop - Module 2
Threat Detection & Remediation Workshop - Module 2
 
Meeting Enterprise Security Requirements with AWS Native Security Services (S...
Meeting Enterprise Security Requirements with AWS Native Security Services (S...Meeting Enterprise Security Requirements with AWS Native Security Services (S...
Meeting Enterprise Security Requirements with AWS Native Security Services (S...
 
Come Out From Behind Your Firewall
Come Out From Behind Your FirewallCome Out From Behind Your Firewall
Come Out From Behind Your Firewall
 
Leadership Session: AWS Security (SEC305-L) - AWS re:Invent 2018
Leadership Session: AWS Security (SEC305-L) - AWS re:Invent 2018Leadership Session: AWS Security (SEC305-L) - AWS re:Invent 2018
Leadership Session: AWS Security (SEC305-L) - AWS re:Invent 2018
 
[NEW LAUNCH!] Introduction to AWS Security Hub (SEC397) - AWS re:Invent 2018
[NEW LAUNCH!] Introduction to AWS Security Hub (SEC397) - AWS re:Invent 2018[NEW LAUNCH!] Introduction to AWS Security Hub (SEC397) - AWS re:Invent 2018
[NEW LAUNCH!] Introduction to AWS Security Hub (SEC397) - AWS re:Invent 2018
 
A Self-Defending Border: Protect Your Web-Facing Workloads with AWS Security ...
A Self-Defending Border: Protect Your Web-Facing Workloads with AWS Security ...A Self-Defending Border: Protect Your Web-Facing Workloads with AWS Security ...
A Self-Defending Border: Protect Your Web-Facing Workloads with AWS Security ...
 
How Nubank Automates Fine-Grained Security with IAM, AWS Lambda, and CI/CD (F...
How Nubank Automates Fine-Grained Security with IAM, AWS Lambda, and CI/CD (F...How Nubank Automates Fine-Grained Security with IAM, AWS Lambda, and CI/CD (F...
How Nubank Automates Fine-Grained Security with IAM, AWS Lambda, and CI/CD (F...
 
Build Your Own Log Analytics Solutions on AWS (ANT323-R) - AWS re:Invent 2018
Build Your Own Log Analytics Solutions on AWS (ANT323-R) - AWS re:Invent 2018Build Your Own Log Analytics Solutions on AWS (ANT323-R) - AWS re:Invent 2018
Build Your Own Log Analytics Solutions on AWS (ANT323-R) - AWS re:Invent 2018
 
Lock It Down: How to Secure Your Organization's AWS Account
Lock It Down: How to Secure Your Organization's AWS AccountLock It Down: How to Secure Your Organization's AWS Account
Lock It Down: How to Secure Your Organization's AWS Account
 
How to build scalable and resilient applications in the cloud - AWS Summit Ca...
How to build scalable and resilient applications in the cloud - AWS Summit Ca...How to build scalable and resilient applications in the cloud - AWS Summit Ca...
How to build scalable and resilient applications in the cloud - AWS Summit Ca...
 
How to Perform Forensics on AWS Using Serverless Infrastructure (SEC416-R1) -...
How to Perform Forensics on AWS Using Serverless Infrastructure (SEC416-R1) -...How to Perform Forensics on AWS Using Serverless Infrastructure (SEC416-R1) -...
How to Perform Forensics on AWS Using Serverless Infrastructure (SEC416-R1) -...
 
Layered Perimeter Protection for Apps Running on AWS (CTD201-R1) - AWS re:Inv...
Layered Perimeter Protection for Apps Running on AWS (CTD201-R1) - AWS re:Inv...Layered Perimeter Protection for Apps Running on AWS (CTD201-R1) - AWS re:Inv...
Layered Perimeter Protection for Apps Running on AWS (CTD201-R1) - AWS re:Inv...
 
New AWS Security Solutions to Protect Your Workload
New AWS Security Solutions to Protect Your WorkloadNew AWS Security Solutions to Protect Your Workload
New AWS Security Solutions to Protect Your Workload
 
Moving 400 Engineers to AWS: Our Journey to Secure Adoption (SEC306-S) - AWS ...
Moving 400 Engineers to AWS: Our Journey to Secure Adoption (SEC306-S) - AWS ...Moving 400 Engineers to AWS: Our Journey to Secure Adoption (SEC306-S) - AWS ...
Moving 400 Engineers to AWS: Our Journey to Secure Adoption (SEC306-S) - AWS ...
 
Deep Dive into AWS X-Ray: Monitor Modern Applications (DEV324) - AWS re:Inven...
Deep Dive into AWS X-Ray: Monitor Modern Applications (DEV324) - AWS re:Inven...Deep Dive into AWS X-Ray: Monitor Modern Applications (DEV324) - AWS re:Inven...
Deep Dive into AWS X-Ray: Monitor Modern Applications (DEV324) - AWS re:Inven...
 
AWSome Day - Solutions Architecture Best Practices
AWSome Day - Solutions Architecture Best PracticesAWSome Day - Solutions Architecture Best Practices
AWSome Day - Solutions Architecture Best Practices
 
Evolve Your Incident Response Process and Powers for AWS - SID306 - Chicago A...
Evolve Your Incident Response Process and Powers for AWS - SID306 - Chicago A...Evolve Your Incident Response Process and Powers for AWS - SID306 - Chicago A...
Evolve Your Incident Response Process and Powers for AWS - SID306 - Chicago A...
 
Deep Dive on Amazon GuardDuty - AWS Online Tech Talks
Deep Dive on Amazon GuardDuty - AWS Online Tech TalksDeep Dive on Amazon GuardDuty - AWS Online Tech Talks
Deep Dive on Amazon GuardDuty - AWS Online Tech Talks
 

More from Amazon Web Services

Come costruire servizi di Forecasting sfruttando algoritmi di ML e deep learn...
Come costruire servizi di Forecasting sfruttando algoritmi di ML e deep learn...Come costruire servizi di Forecasting sfruttando algoritmi di ML e deep learn...
Come costruire servizi di Forecasting sfruttando algoritmi di ML e deep learn...
Amazon Web Services
 
Big Data per le Startup: come creare applicazioni Big Data in modalità Server...
Big Data per le Startup: come creare applicazioni Big Data in modalità Server...Big Data per le Startup: come creare applicazioni Big Data in modalità Server...
Big Data per le Startup: come creare applicazioni Big Data in modalità Server...
Amazon Web Services
 
Esegui pod serverless con Amazon EKS e AWS Fargate
Esegui pod serverless con Amazon EKS e AWS FargateEsegui pod serverless con Amazon EKS e AWS Fargate
Esegui pod serverless con Amazon EKS e AWS Fargate
Amazon Web Services
 
Costruire Applicazioni Moderne con AWS
Costruire Applicazioni Moderne con AWSCostruire Applicazioni Moderne con AWS
Costruire Applicazioni Moderne con AWS
Amazon Web Services
 
Come spendere fino al 90% in meno con i container e le istanze spot
Come spendere fino al 90% in meno con i container e le istanze spot Come spendere fino al 90% in meno con i container e le istanze spot
Come spendere fino al 90% in meno con i container e le istanze spot
Amazon Web Services
 
Open banking as a service
Open banking as a serviceOpen banking as a service
Open banking as a service
Amazon Web Services
 
Rendi unica l’offerta della tua startup sul mercato con i servizi Machine Lea...
Rendi unica l’offerta della tua startup sul mercato con i servizi Machine Lea...Rendi unica l’offerta della tua startup sul mercato con i servizi Machine Lea...
Rendi unica l’offerta della tua startup sul mercato con i servizi Machine Lea...
Amazon Web Services
 
OpsWorks Configuration Management: automatizza la gestione e i deployment del...
OpsWorks Configuration Management: automatizza la gestione e i deployment del...OpsWorks Configuration Management: automatizza la gestione e i deployment del...
OpsWorks Configuration Management: automatizza la gestione e i deployment del...
Amazon Web Services
 
Microsoft Active Directory su AWS per supportare i tuoi Windows Workloads
Microsoft Active Directory su AWS per supportare i tuoi Windows WorkloadsMicrosoft Active Directory su AWS per supportare i tuoi Windows Workloads
Microsoft Active Directory su AWS per supportare i tuoi Windows Workloads
Amazon Web Services
 
Computer Vision con AWS
Computer Vision con AWSComputer Vision con AWS
Computer Vision con AWS
Amazon Web Services
 
Database Oracle e VMware Cloud on AWS i miti da sfatare
Database Oracle e VMware Cloud on AWS i miti da sfatareDatabase Oracle e VMware Cloud on AWS i miti da sfatare
Database Oracle e VMware Cloud on AWS i miti da sfatare
Amazon Web Services
 
Crea la tua prima serverless ledger-based app con QLDB e NodeJS
Crea la tua prima serverless ledger-based app con QLDB e NodeJSCrea la tua prima serverless ledger-based app con QLDB e NodeJS
Crea la tua prima serverless ledger-based app con QLDB e NodeJS
Amazon Web Services
 
API moderne real-time per applicazioni mobili e web
API moderne real-time per applicazioni mobili e webAPI moderne real-time per applicazioni mobili e web
API moderne real-time per applicazioni mobili e web
Amazon Web Services
 
Database Oracle e VMware Cloud™ on AWS: i miti da sfatare
Database Oracle e VMware Cloud™ on AWS: i miti da sfatareDatabase Oracle e VMware Cloud™ on AWS: i miti da sfatare
Database Oracle e VMware Cloud™ on AWS: i miti da sfatare
Amazon Web Services
 
Tools for building your MVP on AWS
Tools for building your MVP on AWSTools for building your MVP on AWS
Tools for building your MVP on AWS
Amazon Web Services
 
How to Build a Winning Pitch Deck
How to Build a Winning Pitch DeckHow to Build a Winning Pitch Deck
How to Build a Winning Pitch Deck
Amazon Web Services
 
Building a web application without servers
Building a web application without serversBuilding a web application without servers
Building a web application without servers
Amazon Web Services
 
Fundraising Essentials
Fundraising EssentialsFundraising Essentials
Fundraising Essentials
Amazon Web Services
 
AWS_HK_StartupDay_Building Interactive websites while automating for efficien...
AWS_HK_StartupDay_Building Interactive websites while automating for efficien...AWS_HK_StartupDay_Building Interactive websites while automating for efficien...
AWS_HK_StartupDay_Building Interactive websites while automating for efficien...
Amazon Web Services
 
Introduzione a Amazon Elastic Container Service
Introduzione a Amazon Elastic Container ServiceIntroduzione a Amazon Elastic Container Service
Introduzione a Amazon Elastic Container Service
Amazon Web Services
 

More from Amazon Web Services (20)

Come costruire servizi di Forecasting sfruttando algoritmi di ML e deep learn...
Come costruire servizi di Forecasting sfruttando algoritmi di ML e deep learn...Come costruire servizi di Forecasting sfruttando algoritmi di ML e deep learn...
Come costruire servizi di Forecasting sfruttando algoritmi di ML e deep learn...
 
Big Data per le Startup: come creare applicazioni Big Data in modalità Server...
Big Data per le Startup: come creare applicazioni Big Data in modalità Server...Big Data per le Startup: come creare applicazioni Big Data in modalità Server...
Big Data per le Startup: come creare applicazioni Big Data in modalità Server...
 
Esegui pod serverless con Amazon EKS e AWS Fargate
Esegui pod serverless con Amazon EKS e AWS FargateEsegui pod serverless con Amazon EKS e AWS Fargate
Esegui pod serverless con Amazon EKS e AWS Fargate
 
Costruire Applicazioni Moderne con AWS
Costruire Applicazioni Moderne con AWSCostruire Applicazioni Moderne con AWS
Costruire Applicazioni Moderne con AWS
 
Come spendere fino al 90% in meno con i container e le istanze spot
Come spendere fino al 90% in meno con i container e le istanze spot Come spendere fino al 90% in meno con i container e le istanze spot
Come spendere fino al 90% in meno con i container e le istanze spot
 
Open banking as a service
Open banking as a serviceOpen banking as a service
Open banking as a service
 
Rendi unica l’offerta della tua startup sul mercato con i servizi Machine Lea...
Rendi unica l’offerta della tua startup sul mercato con i servizi Machine Lea...Rendi unica l’offerta della tua startup sul mercato con i servizi Machine Lea...
Rendi unica l’offerta della tua startup sul mercato con i servizi Machine Lea...
 
OpsWorks Configuration Management: automatizza la gestione e i deployment del...
OpsWorks Configuration Management: automatizza la gestione e i deployment del...OpsWorks Configuration Management: automatizza la gestione e i deployment del...
OpsWorks Configuration Management: automatizza la gestione e i deployment del...
 
Microsoft Active Directory su AWS per supportare i tuoi Windows Workloads
Microsoft Active Directory su AWS per supportare i tuoi Windows WorkloadsMicrosoft Active Directory su AWS per supportare i tuoi Windows Workloads
Microsoft Active Directory su AWS per supportare i tuoi Windows Workloads
 
Computer Vision con AWS
Computer Vision con AWSComputer Vision con AWS
Computer Vision con AWS
 
Database Oracle e VMware Cloud on AWS i miti da sfatare
Database Oracle e VMware Cloud on AWS i miti da sfatareDatabase Oracle e VMware Cloud on AWS i miti da sfatare
Database Oracle e VMware Cloud on AWS i miti da sfatare
 
Crea la tua prima serverless ledger-based app con QLDB e NodeJS
Crea la tua prima serverless ledger-based app con QLDB e NodeJSCrea la tua prima serverless ledger-based app con QLDB e NodeJS
Crea la tua prima serverless ledger-based app con QLDB e NodeJS
 
API moderne real-time per applicazioni mobili e web
API moderne real-time per applicazioni mobili e webAPI moderne real-time per applicazioni mobili e web
API moderne real-time per applicazioni mobili e web
 
Database Oracle e VMware Cloud™ on AWS: i miti da sfatare
Database Oracle e VMware Cloud™ on AWS: i miti da sfatareDatabase Oracle e VMware Cloud™ on AWS: i miti da sfatare
Database Oracle e VMware Cloud™ on AWS: i miti da sfatare
 
Tools for building your MVP on AWS
Tools for building your MVP on AWSTools for building your MVP on AWS
Tools for building your MVP on AWS
 
How to Build a Winning Pitch Deck
How to Build a Winning Pitch DeckHow to Build a Winning Pitch Deck
How to Build a Winning Pitch Deck
 
Building a web application without servers
Building a web application without serversBuilding a web application without servers
Building a web application without servers
 
Fundraising Essentials
Fundraising EssentialsFundraising Essentials
Fundraising Essentials
 
AWS_HK_StartupDay_Building Interactive websites while automating for efficien...
AWS_HK_StartupDay_Building Interactive websites while automating for efficien...AWS_HK_StartupDay_Building Interactive websites while automating for efficien...
AWS_HK_StartupDay_Building Interactive websites while automating for efficien...
 
Introduzione a Amazon Elastic Container Service
Introduzione a Amazon Elastic Container ServiceIntroduzione a Amazon Elastic Container Service
Introduzione a Amazon Elastic Container Service
 

Inventory, Track, and Respond to AWS Asset Changes within Seconds at Scale (SEC391) - AWS re:Invent 2018

  • 1.
  • 2. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. Inventory, Track, & Respond to AWS Asset Changes within Seconds at Scale Mike Grima Senior Cloud Security Engineer S E C 3 9 1
  • 3. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. Agenda What are we trying to solve? Inventory Collection Approaches Security Monkey Tooling Challenges Deep-dive into Historical Desired AWS Infrastructure State
  • 4. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
  • 5. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. Knowing is half the battle Infrastructure visibility is extremely important Need answers to the following questions: Which Amazon Web Services (AWS) assets do I have deployed? Where are these assets deployed? Are they configured securely? Did the configuration change? Who created/updated/deleted a given asset, and when?
  • 6. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. Security Follows Visibility DFIR capabilities Detection of compromise Organizational policy violations Identify publicly accessible resources Detection of insecure-by-default configurations Determination of resource ownership
  • 7. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
  • 8. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. Inventory collection requirements Must be timely and accurate Full-view of the environment Attribution (i.e. AWS CloudTrail context) Who/What/Where/When/How? Change History
  • 9. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. How to collect inventory? Polling Periodically “asking” AWS for the current state of the infrastructure Events AWS tells you when the infrastructure changes
  • 10. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. Polling pros vs. cons Pros Complete inventory On-demand Cons Slow – bigger environments take longer to inventory High Latency -Must be aggressive to reduce Risk of rate limiting No CloudTrail Context – mapping resources to CloudTrail entries is non-trivial
  • 11. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. Event-driven pros vs. cons Pros Fast – react to changes when they happen (order of seconds) Timely state of infrastructure Enables fast response *Can reduce rate-limiting Cons Complex – many moving parts required Lossiness of events – a polling component is still required!
  • 12. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
  • 13. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. Polling for security @ Netflix - Security Monkey Originally open sourced in 2014 by Patrick Kelley https://github.com/Netflix/security_monkey Watchers describe infrastructure Auditors check for insecure configuration Reporters provide notifications (emails, etc.)
  • 14. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
  • 15. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
  • 16. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
  • 17. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. Some challenges Netflix infrastructure in 2014 was very different than today Then: Few AWS accounts, Roles, Security Groups, etc. Now: Many accounts (100+), 1000+ Roles, Security Groups, etc. Security Monkey ran on one instance for API, UI, and Watcher logic Earlier this year it stopped working. Hard. Very stale data – WEEKS old Major refactor for 1.0 release in January 2018 (now over 40+ instances)
  • 18. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. Security Monkey – Refactoring
  • 19. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. Some limitations Slow at our scale 30+ min to poll for Security Groups, IAM Roles, etc. in just ONE account Rate limiting No CloudTrail context
  • 20. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. Scalability challenges Security Monkey is a great tool, but our infrastructure outgrew it. Polling is not effective at large scale.
  • 21. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. Back in time to 2016 Events are the way to go Project “Banana Peel” – Security Monkey as an AWS Lambda Stripped down version of Security Monkey Made use of Amazon CloudWatch Events Provided CloudTrail context and completed response in < 30 seconds!
  • 22. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. Banana Peel’s limitations CloudWatch Event Buses didn’t exist yet Complex orchestration for event centralization (back then) Limit risks Cumbersome Data was “locked” into Security Monkey / closed-loop
  • 23. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
  • 24. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. Historical Serverless and Event-Driven Tracks changes to AWS resources within seconds of a change Maintains the CloudTrail context of changes Downstream consumers can subscribe to material changes https://github.com/Netflix-Skunkworks/historical
  • 25. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. Historical 🚧 👷 Hard-Hat required 👷 🚧 Under VERY active development Historical inventories and monitors the environment for changes Flexible NOT a closed-loop system
  • 26. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. Historical Currently monitoring Amazon Simple Storage Service (Amazon S3) Amazon Elastic Compute Cloud (Amazon EC2) Security Groups IAM is in active development and coming soon! Roles Groups Users Managed Policies Server Certificates Basic Terraform template for installation
  • 27. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. General Concepts CloudWatch Event tells us a resource changed We describe that resource that changed We check if the resource’s state is actually different from what we previously knew about it Noise reduction for tools that periodically overwrite configurations If there was a change, we record the details, and provide downstream consumers with the newest state of the resource
  • 28. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. General Concepts We immediately process CloudWatch Event notifications We poll periodically to capture state in case an event is dropped Event lossiness is very low Every few hours – low priority In region deployments for faster processing of events Per-resource type stacks Amazon S3, Amazon EC2 Security Groups, IAM, etc
  • 29. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. We ♥ Amazon SQS and Lambda We make use of Amazon SQS to invoke Lambda functions as much as possible. It’s awesome: Concurrency Auto-scales Retries without blocking Dead-letter queue ability Message delays
  • 30. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. Components – CloudWatch Event Buses
  • 31. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. Components – IAM Roles
  • 32. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
  • 33. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
  • 34. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
  • 35. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
  • 36. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. The Poller Periodically invoked every few hours “Poller Tasker” schedules a Lambda function (the ”Poller”) to list all assets in an account and region
  • 37. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. The Collector – Describes a resource Poller Collector Tasked by the Poller Event Collector Tasked by CloudWatch Events Resource config is saved to the ”Current” table Cache of all existing items for a given resource type
  • 38. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. The Differ – Checks for actual changes Changes to the Current table pass changes to the Differ Proxied over via Amazon DynamoDB Streams to Amazon SQS for Differ invocation Differ compares the new config with the previously known config stored in the “Durable” table Changes result in new change record Non-changes are ignored
  • 39. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. Notification to downstream consumers The “Durable” table’s DynamoDB Stream invokes a Proxy Lambda that pushes to Amazon Simple Notification Service (Amazon SNS) The Proxy serializes the item along with the CloudTrail context in an easy-to- consume JSON
  • 40. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
  • 41. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. Current Internal usage and stats Source of truth for enabling Amazon S3 Server Access Logs for ALL S3 buckets at Netflix! We have A LOT of S3 Buckets! StreamAlert integration for Security Group alerting Alert on open IP ingress rules, ANYWHERE in our environment! Approx. 1 Minute from time of event to alert completion (vs. 15 minutes the old way)!
  • 42. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. Goals for Historical Add more AWS resource types Enhancements to Make it easier to add new resource types Increase speed! Improve documentation UI and API
  • 43. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. Security Monkey’s Future A great tool that took us very far Our infrastructure outgrew it Bigger scale Event driven (FAST!) Better context Reduce rate-limiting Better downstream consumption Support minor bug fixes Community contributions always welcome
  • 44. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
  • 45. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. Netflix’s Future AWS Infrastructure Fast-response and auto-correcting Discover bad signals; fix automatically Prevent and undo-large scale automation failures
  • 46. Thank you! © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. Mike Grima LinkedIn & GitHub: mikegrima mgrima@netflix.com
  • 47. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.