SlideShare ist ein Scribd-Unternehmen logo
1 von 63
Sumo Logic Security
and Compliance Certification
Welcome!
Note you are
currently muted.
We will get started
shortly.
This session is being recorded
Agenda:
55 min: Presentation & Labs
10 min: Break
40 min: Labs
1 hr: Exam
Sumo Logic confidential
Course Agenda
Security Demo
Hands On Labs:
Labs 1-5: Starter SOC dashboard with lookup filters
Break
5 min.
105 min.
50 min.
10 min.
Labs 6-8: Export Starter SOC dashboard, Compliance, Threat Intel with Crowdstrike45 min.
Sumologic Certification for Security & Compliance60 min.
Introduction to Security and Compliance10 min.
Sumo Logic Confidential
DEMO
Sumo Logic Confidential
Centralized log management is key to your
security
Human Scale
Security operation is no long
a human scale problem
Shifts
Shifts happening in
threat landscape
Gaps
Transformation to cloud
producing gaps in visibility
Your data in one centralized log management source gets you to that single pane of glass SOC.
Sumo Logic Confidential
Detect, investigate, and respond in real-time
O365, SF.com, Box
SaaS
AWS, Azure, GCP
IaaS
PaaS
Logs|Metrics|Events
Hybrid Cloud
Containers,
Orchestration
Network Elements
User Activity
Apps
Threat Intel
• Meet compliance
deadlines
• Reduce security risks
• Identify potential
security breaches
• Neutralize new threat
patterns
Detect
• Transform reactive/
manual processes
into integrated
/proactive/
automated
Sumo Logic Confidential
Compliance
✓ Pre-built PCI compliance content for
Firewall, AWS, Linux, and Windows
✓ Deploy and monitor controls for PCI,
CIS, and HIPAA regulations
✓ Detect & respond to configuration
drifts, changes, and
misconfigurations
✓ Monitor & enforce your enterprise
security & compliance on cloud
✓ Built on a FedRAMP Ready platform
Sumo Logic Confidential
Delivering Security & Compliance
from the Cloud
Global view of
all security threats
"With Sumo Logic, I can now see threats that are
happening, and quickly react to those threats”
SecOps Complianc
e
CISODevSecOps
Machine learning to
detect anomalies)
Compliance insights
and full stack security
visibility
Integrated threat
intelligence (Crowdstrike,
GuardDuty, etc.)
Security visibility
into hybrid and
multicloud tools
Integration with 3rd party
security technology
solutions such as Cisco,
Cylance, Kubernetes,
Milinda Rambel Stone
Sr. Director of Security
Out-of-the-box Apps
for AWS, Office365,
GCP, Salesforce,
Okta, Palo Alto
)
Sumo Logic Confidential
Login to training environment and go to labs
Hands-on Labs:
In chat click this link I shared
https://help.sumologic.com/01Start-Here/Quick-
Start-Tutorials/Hands-
on_Labs%3A_Security_and_Compliance
Training Environment:
url: service.sumologic.com
email: training+labs@sumologic.com
password: Sumo2020!
Sumo Logic Confidential
Reference Slides follow
Sumo Logic Confidential
Filter and Provide Structure
Search and Parse
Sumo Logic Confidential
Data Analytics ⇨ Query Syntax
Syntax:
metadata
Keywords and operators, separated by pipes, that build on top of each other
parse
filter
aggregate
format
keywords
_sourceCategory=Labs/AWS/CloudTrail and "root"
| json "eventType","sourceIPAddress","userIdentity"
nodrop
| json field=userIdentity "type","arn" nodrop
| where type="Root"
| count date, eventtype, sourceipaddress, type, arn
| sort date
Sumo Logic Confidential
Data Analytics ⇨ Query Syntax
Syntax:
Use metadata and keywords to narrow your search scope
Results
keyword
metadata keyword
| parse
| filter
| aggregate
| format
metadata + keywords
Sumo Logic Confidential
Data Analytics ⇨ Query Syntax
Syntax:
Extract meaningful fields to provide structure to your data
Parse Anchor:
| parse " *@* " as user,domain
Parse Regex:
| parse regex "(?<src_ip>d{1,3}
.d{1,3}.d{1,3}.d{1,3})”
Other Parse Operators:
csv, json, keyvalue, split, xml
Learn more: Parse Operators
| parse
| filter
| aggregate
| format
metadata + keywords
Sumo Logic Confidential
Data Analytics ⇨ Query Syntax
Syntax:
Further filter results using your extracted fields
where operator:
| where !(status_code=304)
in operator:
| if(status_code in("501","502"),
"Error","OK") as code_type
Other Filter Operators:
join, lookup, matches, filter,
isEmpty, isNull, isBlank
Learn more: Filter operator example
| parse
| filter
| aggregate
| format
metadata + keywords
Sumo Logic Confidential
Data Analytics ⇨ Query Syntax
Syntax:
Evaluate messages and place them into groups
count operator:
| count by status_code
avg operator:
| avg(size) by src_ip
pct operator:
| pct(filesize,75) by _sourceHost
Other Aggregation Operators:
sum, count_distinct, stddev, min,
max
Learn more: Aggregation operators
| parse
| filter
| aggregate
| format
metadata + keywords
Sumo Logic Confidential
Data Analytics ⇨ Query Syntax
Syntax:
Format to display desired results succinctly
top operator:
| top 5 src_ip by avg_size
fields operator:
| fields src_ip, avg_size
transpose operator:
| transpose row src_ip column url
Other formatting Operators:
format, formatdate, limit, sort
Learn more: Trends over time using transpose
| parse
| filter
| aggregate
| format
metadata + keywords
Sumo Logic Confidential
Search and Parse
Search and Filter your data
Search and Filter your data
• _metadata
• Keywords
• Live Tail
Parse fields to provide structure to your data
• Query Parsing
• Implement your Field Extraction Rules
(?<>d)
Sumo Logic Confidential
Conditional Logic, Filtering,
Formatting Results
Simple Analytics
Sumo Logic Confidential
Simple Analytics
Aggregation
| count[]
| sum
| avg
| min()
| max()
Conditional
| if()
| []matches[]
| <>in()
| filter
| where
Formatting
| transpose
| fields
| limit
| sort by
| top
Sumo Logic Confidential
Parse key fields
Perform additional
parsing on key fields
Don’t drop messages
that do not match
parse criteriaFurther Filter results
Aggregate by desired
fields
Filter using metadata and keywords
Sumo Logic Confidential
Outliers, Trends,
Needle in the Haystack
Advanced Analytics
Sumo Logic Confidential
Advanced Analytics
Find the “needle in the haystack” by identifying patterns.
Compare today’s patterns with patterns in the past.
_sourceCategory=Labs/snort
| logreduce
_sourceCategory=Labs/snort
| logcompare -24h
LogReduce ➜ New security
attacks/breaches.
LogCompare ➜ Compare
attacks/breaches to other time periods.
Sumo Logic Confidential
Advanced Analytics
_sourceCategory=Labs/AWS/CloudTrail
| parse ""eventName":"*"" as eventName nodrop
| parse ""responseElements":{"ConsoleLogin":"*"}" as loginResult nodrop
| where eventName="ConsoleLogin" and loginresult="Failure"
| timeslice 30m
| count(eventName) as failed_login_attempts by _timeslice
| outlier failed_login_attempts
_sourceCategory=Labs/security/Proofpoint and Mexico
| timeslice 5m
| count as rogue_traffic by _timeslice
| predict rogue_traffic by 5m forecast=12
Outlier ➜ Anomalies in number of Failed Logins
Predict ➜ Traffic from a Rogue Country/State
Sumo Logic Confidential
Advanced Analytics
_sourceCategory=Labs/PaloAltoNetworks and ",TRAFFIC,"
| where action="deny"
| count action
| compare with timeshift 15m 4 avg
| if(isNull(_count), 0, _count) as _count
| if(isNull(_count_60m_avg), 0, _count_60m_avg) as _count_60m_avg
| where _count>(5 * _count_60m_avg)
_sourceCategory=Labs/PaloAltoNetworks and ",TRAFFIC,"
| lookup latitude, longitude, country_code, country_name, city from geo://location on ip=dest_ip
| where country_code<>"US"
| count by latitude, longitude, country_code, country_name, city
Time Compare ➜ Identify a 5-fold increase in Denied Traffic
Geo Lookup ➜ Traffic Destinations outside the US
Sumo Logic Confidential
Advanced Analytics
((_sourceCategory=Labs/PaloAltoNetworks ",THREAT,") or (_sourceCategory=Labs/PaloAltoNetworks ",TRAFFIC,"
action=allow))
| concat(dest_ip,":", dest_port) as destination
| transactionize src_ip (merge type, destination, src_ip takeFirst)
| where type matches "*TRAFFIC*" and type matches "*THREAT*"
| count src_ip, type, destination
| fields - _count
((_sourceCategory=Labs/snort "[Classification: Web Application Attack]") or
_sourceCategory=Labs/Apache/Access)
| parse "{TCP} *:* -> *:*" as src_ip, src_port, dest_ip, dest_port nodrop
| parse regex "(?<src_ip>d{1,3}.d{1,3}.d{1,3}.d{1,3})"
| transaction on src_ip
with states %"Labs/snort", %"Labs/Apache/Access" in _sourceCategory
| where %"Labs/snort">0 and %"Labs/Apache/Access">0
Transactionize ➜ Follow a Transaction
Transaction ➜ Correlate Traffic Data
Sumo Logic Confidential
Out-of-the-Box Content
Security and
Compliance Apps
Sumo Logic Confidential
Security and
Compliance Apps
● Simplify Compliance
Management
● Set up Real-time
monitoring and Alerts
● Security Analytics with
Threat Intelligence
Sumo Logic Confidential
Apps: Palo Alto Networks
Discover threats, consumption, traffic patterns, and other security-driven issues, providing
additional insight for investigations.
Sumo Logic Confidential
Apps: AWS CloudTrail
Track user behavior patterns, administrator activity, or correlate with other data sets to
get a broader understanding of events from operating systems, intrusion detection
systems or application logs.
Sumo Logic Confidential
Apps: AWS VPC Flow Logs
Track your IP network traffic and troubleshoot security issues with real-time visibility and analysis of
your environment.
Sumo Logic Confidential
Apps: AWS GuardDuty
Detect unexpected and potentially malicious activities in your AWS account. Analyze threats by
severity, VPC, IP, account ID, region, and resource type. GuardDuty analyzes and processes VPC
Flow Logs and AWS CloudTrail event logs.
Sumo Logic Confidential
Apps: Threat Intelligence for AWS
Correlate CrowdStrike threat intelligence data with your AWS log data, for real-time security
analytics to detect threats and protect against cyber-attacks. The Threat Intel for AWS App scans
AWS CloudTrail, AWS ELB and AWS VPC Flow logs for threats based on IP address.
Sumo Logic Confidential
Apps: Threat Intelligence Quick Analysis
Correlate CrowdStrike threat intelligence data with your own log data, for real-time security
analytics to detect threats and protect against cyber-attacks. This app scans your selected logs for
threats based on IP, filename, URL, domain, Hash 256, and email.
Sumo Logic Confidential
Apps: CrowdStrike
Analyze CrowdStrike security events by type, status and detection method. The CrowdStrike
Falcon platform provides Endpoint Detection and Response, Antivirus and Threat Intelligence
services via the cloud.
Sumo Logic Confidential
Apps: O365
Monitor and analyze your complete Office 365 system for administrator and user activity. This app
monitors Audit logs for Azure Active Directory, Exchange and SharePoint.
Sumo Logic Confidential
Deep Packet
Inspection*
Email Security*
Out-of-the-box Security Content
User ID SecurityMicroservices
CDNSAAS Developer Stack
Endpoint Security
Network Security
IAAS
*Add-on Cloud SIEM Enterprise option
Sumo Logic Confidential
Global Intelligence
for Amazon GuardDuty 3.0
Sumo Logic Confidential
Amazon GuardDuty: 12 threat purposes
unusual outbound:
network ports / suspicious
IP / data transfer
inbound connections
from suspicious IP
unusual API calls to change
permissions
root credential usage
privilege escalation
bitcoin mining
on EC2
Recon: suspicious
port scan
launching EC2
instances
Disabling CloudTrail
or modifying
password policy
PenTest
Sumo Logic Confidential
Example: Which is more risky?
bitcoin mining on
your EC2 instances
Recon: suspicious
port scan
Choices:
(A)bitcoin mining
(B)Recon
(C)No idea
Sumo Logic Confidential
Example: Which is more risky?
Does global context help?
Sumo Logic Confidential
Too many false positives
https://www.reddit.com/r/aws/comments/dgfos0/is_guardduty_a_false_positive_hero/
Sumo Logic Confidential
Global Intelligence for Amazon GuardDuty 3.0
What threats are
customers
experiencing?
How does my
company
compare?
What should we
do?
As a SecOps users, use insights from Sumo Logic
customers to prioritize and act on Amazon GuardDuty
threats
1 2 3
Sumo Logic Confidential
What threats are customers experiencing?
1 Global Threat Mix
Global Threat Share
Global Threat Map
Rare threats
Documentation https://help.sumologic.com/07Sumo-Logic-Apps/01Amazon_and_AWS/Global_Intelligence_for_Amazon_GuardDuty
Sumo Logic Confidential
How does my company compare?
2 Threat score (100 = high
risk)
Threat score trend
My Company v. Global
Baseline of threats
Documentation https://help.sumologic.com/07Sumo-Logic-Apps/01Amazon_and_AWS/Global_Intelligence_for_Amazon_GuardDuty
Sumo Logic Confidential
What should we do?
3 Action plan by affected
resource
Priority
● findings count
● severity
● unusualness
compared to
baseline
Documentation https://help.sumologic.com/07Sumo-Logic-Apps/01Amazon_and_AWS/Global_Intelligence_for_Amazon_GuardDuty
Sumo Logic Confidential
for AWS CloudTrail 1.0
Global Intelligence
Sumo Logic Confidential
0
Example of a breach
EC2
instances
S3 bucket
Attacker:
steal data
from S3 Get AWS credentials from public repositories -> run AWS SDK
EC2_ListSecurityGroups* -> find EC2 instances with open ports to
open a remote session on machine (MITRE: Discovery)
EC2_List instances* -> find IAM profiles associated with EC2
instances (MITRE: Discovery)
IAM_CreateUpdatePolicy* to add S3 read privileges to EC2’s IAM
role (MITRE: Privilege Escalation)
Connect to S3 bucket using role and read all data (MITRE: Exfiltration)
1
2
3
4
*Notable events in AWS CloudTrail- detect & prioritize to reduce breach risk
See https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_use_switch-role-ec2.html
Sumo Logic Confidential
Global Intelligence for AWS CloudTrail
How does my attack
surface compare to
peers?
How do my notable
events compare to
peers?
What should we
do?
As a SecOps user, use insights from Sumo Logic
customers to detect and prioritize notable security
events in AWS CloudTrail
1 2 3
Sumo Logic Confidential
How does my attack surface compare to peers?
1 AWS services covered
● EC2
● S3
● IAM
● RDS
● Redshift
● Lambda
● CloudTrail
Cohorts based on:
● Variety - Unique AWS
services in use (e.g.
EC2, S3)
● Volume- Count of
resources
● Velocity - Create,
Update, Delete
events
Correlated with breach
risk
Documentation https://help.sumologic.com/07Sumo-Logic-Apps/01Amazon_and_AWS/Global_Intelligence_for_AWS_CloudTrail
Sumo Logic Confidential
How do my notable events compare to peers?
2 Notable event counts v.
peers by MITRE Att&ck
Framework
● Credential Access
● Defense Evasion
● Discovery
● Execution
● Exfiltration
● Initial Access
● Lateral Movement
● Persistence
● Privilege Escalation
Documentation https://help.sumologic.com/07Sumo-Logic-Apps/01Amazon_and_AWS/Global_Intelligence_for_AWS_CloudTrail
Sumo Logic Confidential
How do my notable events compare to peers?
2 Count resources
affected by notable
events v. peers
● EC2 (instances,
AMIs)
● S3 (buckets)
● IAM (user, roles,
policies)
● RDS (cluster,
instances)
● Redshift (cluster)
● Lambda (functions)
● CloudTrail (trails)
Documentation https://help.sumologic.com/07Sumo-Logic-Apps/01Amazon_and_AWS/Global_Intelligence_for_AWS_CloudTrail
Sumo Logic Confidential
What should we do?
3 Action plan by affected
resource
● EC2 (instances,
AMIs)
● S3 (buckets)
● IAM (user, roles,
policies)
● RDS (cluster,
instances)
● Redshift (cluster)
● Lambda (functions)
● CloudTrail (trails)
Priority - Unusualness of
Event Count x Number
of Resources
Sumo Logic Confidential
End of Reference Slides
Questions?
Assessment
Sumo Logic Confidential
Assessment Description
• 30 questions coming from a pool of
questions
• 60 minutes to take it
• Need a 75% to pass
• Open Resource (slides, labs, and documentation)
Sumo Logic Confidential
Certification
Assessment:
1. Click > Certification
2. Click Get Certified
3. Click <course category>
4. Click <course name>
5. Click
6. Under Read Me First, click Before you start
7. Click
8. Click
In order to get credit for the exam,
go to your own Sumo account and
login
(your company account, not the training account)
Sumo Logic Confidential
Sumo Logic Confidential
If you find your login is cycling
back to the exam screen, do the
following:
● Click on Help in the black left bar
● Click Community in the black left bar
● An email verification should be sent
● Once you verify, you should able to
take the exam without any issues
Sumo Logic Confidential
In order to get credit for the assessment
1. After each section, click Next or Submit
2. When you get to the last section, click Go
to results
3. When you passed the class, you’ll get a
congratulations message. Then click
Submit results.
4. After your feedback, you can click Close
course
Follow these steps:
For passing the exam, you will earn:
● A Certificate
● An invitation to our LinkedIn Group
● The respect of your peers
● Fame, Fortune and more... Jessica Robbens
Sumo Logic Confidential
Please take our survey:
https://forms.gle/2KMtxPuD
9cSYV8SJ6
How did we do?
Sumo Logic Cert Jam - Security & Compliance

Weitere ähnliche Inhalte

Was ist angesagt?

Welcome Webinar Slides
Welcome Webinar SlidesWelcome Webinar Slides
Welcome Webinar SlidesSumo Logic
 
Sumo Logic Certification - Level 2 (Using Sumo)
Sumo Logic Certification - Level 2 (Using Sumo)Sumo Logic Certification - Level 2 (Using Sumo)
Sumo Logic Certification - Level 2 (Using Sumo)Sumo Logic
 
Welcome Webinar PDF
Welcome Webinar PDFWelcome Webinar PDF
Welcome Webinar PDFSumo Logic
 
Using Sumo Logic - Apr 2018
Using Sumo Logic - Apr 2018Using Sumo Logic - Apr 2018
Using Sumo Logic - Apr 2018Sumo Logic
 
Security Certification: Security Analytics using Sumo Logic - Oct 2018
Security Certification: Security Analytics using Sumo Logic - Oct 2018Security Certification: Security Analytics using Sumo Logic - Oct 2018
Security Certification: Security Analytics using Sumo Logic - Oct 2018Sumo Logic
 
Level 2 Certification: Using Sumo Logic - Oct 2018
Level 2 Certification: Using Sumo Logic - Oct 2018Level 2 Certification: Using Sumo Logic - Oct 2018
Level 2 Certification: Using Sumo Logic - Oct 2018Sumo Logic
 
Sumo Logic QuickStart Webinar - Get Certified
Sumo Logic QuickStart Webinar - Get CertifiedSumo Logic QuickStart Webinar - Get Certified
Sumo Logic QuickStart Webinar - Get CertifiedSumo Logic
 
Level 3 Certification: Setting up Sumo Logic - Oct 2018
Level 3 Certification: Setting up Sumo Logic - Oct  2018Level 3 Certification: Setting up Sumo Logic - Oct  2018
Level 3 Certification: Setting up Sumo Logic - Oct 2018Sumo Logic
 
Sumo Logic Quickstart Training 10/14/2015
Sumo Logic Quickstart Training 10/14/2015Sumo Logic Quickstart Training 10/14/2015
Sumo Logic Quickstart Training 10/14/2015Sumo Logic
 
"How to" Webinar: Sending Data to Sumo Logic
"How to" Webinar: Sending Data to Sumo Logic"How to" Webinar: Sending Data to Sumo Logic
"How to" Webinar: Sending Data to Sumo LogicSumo Logic
 
Sumo Logic "How to" Webinar: Advanced Analytics
Sumo Logic "How to" Webinar: Advanced AnalyticsSumo Logic "How to" Webinar: Advanced Analytics
Sumo Logic "How to" Webinar: Advanced AnalyticsSumo Logic
 
Sumo Logic QuickStart Webinar July 2016
Sumo Logic QuickStart Webinar July 2016Sumo Logic QuickStart Webinar July 2016
Sumo Logic QuickStart Webinar July 2016Sumo Logic
 
Sumo Logic QuickStart Webinar Oct 2016
Sumo Logic QuickStart Webinar Oct 2016Sumo Logic QuickStart Webinar Oct 2016
Sumo Logic QuickStart Webinar Oct 2016Sumo Logic
 
Logging, tracing and metrics: Instrumentation in .NET 5 and Azure
Logging, tracing and metrics: Instrumentation in .NET 5 and AzureLogging, tracing and metrics: Instrumentation in .NET 5 and Azure
Logging, tracing and metrics: Instrumentation in .NET 5 and AzureAlex Thissen
 
Microservices observability
Microservices observabilityMicroservices observability
Microservices observabilityMaxim Shelest
 
Logging tracing and metrics in .NET Core and Azure - dotnetdays 2020
Logging tracing and metrics in .NET Core and Azure - dotnetdays 2020Logging tracing and metrics in .NET Core and Azure - dotnetdays 2020
Logging tracing and metrics in .NET Core and Azure - dotnetdays 2020Alex Thissen
 
Apache metron meetup presentation at capital one
Apache metron meetup presentation at capital oneApache metron meetup presentation at capital one
Apache metron meetup presentation at capital onegvetticaden
 
Providence Future of Data Meetup - Apache Metron Open Source Cybersecurity Pl...
Providence Future of Data Meetup - Apache Metron Open Source Cybersecurity Pl...Providence Future of Data Meetup - Apache Metron Open Source Cybersecurity Pl...
Providence Future of Data Meetup - Apache Metron Open Source Cybersecurity Pl...Carolyn Duby
 
Apache Metron Profiler - Cyber Bootcamp 2017
Apache Metron Profiler - Cyber Bootcamp 2017Apache Metron Profiler - Cyber Bootcamp 2017
Apache Metron Profiler - Cyber Bootcamp 2017Nick Allen
 
Observability and more architecture next 2020
Observability and more   architecture next 2020Observability and more   architecture next 2020
Observability and more architecture next 2020Alon Fliess
 

Was ist angesagt? (20)

Welcome Webinar Slides
Welcome Webinar SlidesWelcome Webinar Slides
Welcome Webinar Slides
 
Sumo Logic Certification - Level 2 (Using Sumo)
Sumo Logic Certification - Level 2 (Using Sumo)Sumo Logic Certification - Level 2 (Using Sumo)
Sumo Logic Certification - Level 2 (Using Sumo)
 
Welcome Webinar PDF
Welcome Webinar PDFWelcome Webinar PDF
Welcome Webinar PDF
 
Using Sumo Logic - Apr 2018
Using Sumo Logic - Apr 2018Using Sumo Logic - Apr 2018
Using Sumo Logic - Apr 2018
 
Security Certification: Security Analytics using Sumo Logic - Oct 2018
Security Certification: Security Analytics using Sumo Logic - Oct 2018Security Certification: Security Analytics using Sumo Logic - Oct 2018
Security Certification: Security Analytics using Sumo Logic - Oct 2018
 
Level 2 Certification: Using Sumo Logic - Oct 2018
Level 2 Certification: Using Sumo Logic - Oct 2018Level 2 Certification: Using Sumo Logic - Oct 2018
Level 2 Certification: Using Sumo Logic - Oct 2018
 
Sumo Logic QuickStart Webinar - Get Certified
Sumo Logic QuickStart Webinar - Get CertifiedSumo Logic QuickStart Webinar - Get Certified
Sumo Logic QuickStart Webinar - Get Certified
 
Level 3 Certification: Setting up Sumo Logic - Oct 2018
Level 3 Certification: Setting up Sumo Logic - Oct  2018Level 3 Certification: Setting up Sumo Logic - Oct  2018
Level 3 Certification: Setting up Sumo Logic - Oct 2018
 
Sumo Logic Quickstart Training 10/14/2015
Sumo Logic Quickstart Training 10/14/2015Sumo Logic Quickstart Training 10/14/2015
Sumo Logic Quickstart Training 10/14/2015
 
"How to" Webinar: Sending Data to Sumo Logic
"How to" Webinar: Sending Data to Sumo Logic"How to" Webinar: Sending Data to Sumo Logic
"How to" Webinar: Sending Data to Sumo Logic
 
Sumo Logic "How to" Webinar: Advanced Analytics
Sumo Logic "How to" Webinar: Advanced AnalyticsSumo Logic "How to" Webinar: Advanced Analytics
Sumo Logic "How to" Webinar: Advanced Analytics
 
Sumo Logic QuickStart Webinar July 2016
Sumo Logic QuickStart Webinar July 2016Sumo Logic QuickStart Webinar July 2016
Sumo Logic QuickStart Webinar July 2016
 
Sumo Logic QuickStart Webinar Oct 2016
Sumo Logic QuickStart Webinar Oct 2016Sumo Logic QuickStart Webinar Oct 2016
Sumo Logic QuickStart Webinar Oct 2016
 
Logging, tracing and metrics: Instrumentation in .NET 5 and Azure
Logging, tracing and metrics: Instrumentation in .NET 5 and AzureLogging, tracing and metrics: Instrumentation in .NET 5 and Azure
Logging, tracing and metrics: Instrumentation in .NET 5 and Azure
 
Microservices observability
Microservices observabilityMicroservices observability
Microservices observability
 
Logging tracing and metrics in .NET Core and Azure - dotnetdays 2020
Logging tracing and metrics in .NET Core and Azure - dotnetdays 2020Logging tracing and metrics in .NET Core and Azure - dotnetdays 2020
Logging tracing and metrics in .NET Core and Azure - dotnetdays 2020
 
Apache metron meetup presentation at capital one
Apache metron meetup presentation at capital oneApache metron meetup presentation at capital one
Apache metron meetup presentation at capital one
 
Providence Future of Data Meetup - Apache Metron Open Source Cybersecurity Pl...
Providence Future of Data Meetup - Apache Metron Open Source Cybersecurity Pl...Providence Future of Data Meetup - Apache Metron Open Source Cybersecurity Pl...
Providence Future of Data Meetup - Apache Metron Open Source Cybersecurity Pl...
 
Apache Metron Profiler - Cyber Bootcamp 2017
Apache Metron Profiler - Cyber Bootcamp 2017Apache Metron Profiler - Cyber Bootcamp 2017
Apache Metron Profiler - Cyber Bootcamp 2017
 
Observability and more architecture next 2020
Observability and more   architecture next 2020Observability and more   architecture next 2020
Observability and more architecture next 2020
 

Ähnlich wie Sumo Logic Cert Jam - Security & Compliance

Sumo Logic QuickStart Webinar - Jan 2016
Sumo Logic QuickStart Webinar - Jan 2016Sumo Logic QuickStart Webinar - Jan 2016
Sumo Logic QuickStart Webinar - Jan 2016Sumo Logic
 
Sumo Logic QuickStart Webinar
Sumo Logic QuickStart WebinarSumo Logic QuickStart Webinar
Sumo Logic QuickStart WebinarSumo Logic
 
Sumo Logic Quickstart - Jan 2017
Sumo Logic Quickstart - Jan 2017Sumo Logic Quickstart - Jan 2017
Sumo Logic Quickstart - Jan 2017Sumo Logic
 
Sumo Logic QuickStat - Apr 2017
Sumo Logic QuickStat - Apr 2017Sumo Logic QuickStat - Apr 2017
Sumo Logic QuickStat - Apr 2017Sumo Logic
 
Sumo Logic Quickstart - Nv 2016
Sumo Logic Quickstart - Nv 2016Sumo Logic Quickstart - Nv 2016
Sumo Logic Quickstart - Nv 2016Sumo Logic
 
Sumo Logic QuickStart Webinar Sep 2016
Sumo Logic QuickStart Webinar Sep 2016Sumo Logic QuickStart Webinar Sep 2016
Sumo Logic QuickStart Webinar Sep 2016Sumo Logic
 
Sumo Logic QuickStart Webinar - Dec 2016
Sumo Logic QuickStart Webinar - Dec 2016Sumo Logic QuickStart Webinar - Dec 2016
Sumo Logic QuickStart Webinar - Dec 2016Sumo Logic
 
Setting Up Sumo Logic - Apr 2017
Setting Up Sumo Logic - Apr 2017Setting Up Sumo Logic - Apr 2017
Setting Up Sumo Logic - Apr 2017Sumo Logic
 
Sumo Logic quickStart Webinar June 2016
Sumo Logic quickStart Webinar June 2016Sumo Logic quickStart Webinar June 2016
Sumo Logic quickStart Webinar June 2016Sumo Logic
 
Sumo Logic QuickStart
Sumo Logic QuickStartSumo Logic QuickStart
Sumo Logic QuickStartSumo Logic
 
Sumo Logic QuickStart - May 2016
Sumo Logic QuickStart - May 2016Sumo Logic QuickStart - May 2016
Sumo Logic QuickStart - May 2016Sumo Logic
 
Sumo Logic Quick Start - Feb 2016
Sumo Logic Quick Start - Feb 2016Sumo Logic Quick Start - Feb 2016
Sumo Logic Quick Start - Feb 2016Sumo Logic
 
Setting Up Sumo Logic - Sep 2017
Setting Up Sumo Logic -  Sep 2017Setting Up Sumo Logic -  Sep 2017
Setting Up Sumo Logic - Sep 2017mariosany
 
Setting up Sumo Logic - June 2017
Setting up Sumo Logic - June 2017Setting up Sumo Logic - June 2017
Setting up Sumo Logic - June 2017Sumo Logic
 
Automated prevention of ransomware with machine learning and gpos
Automated prevention of ransomware with machine learning and gposAutomated prevention of ransomware with machine learning and gpos
Automated prevention of ransomware with machine learning and gposPriyanka Aash
 
SPO2-T11_Automated-Prevention-of-Ransomware-with-Machine-Learning-and-GPOs
SPO2-T11_Automated-Prevention-of-Ransomware-with-Machine-Learning-and-GPOsSPO2-T11_Automated-Prevention-of-Ransomware-with-Machine-Learning-and-GPOs
SPO2-T11_Automated-Prevention-of-Ransomware-with-Machine-Learning-and-GPOsRod Soto
 
SANS_PentestHackfest_2022-PurpleTeam_Cloud_Identity.pptx
SANS_PentestHackfest_2022-PurpleTeam_Cloud_Identity.pptxSANS_PentestHackfest_2022-PurpleTeam_Cloud_Identity.pptx
SANS_PentestHackfest_2022-PurpleTeam_Cloud_Identity.pptxJasonOstrom1
 
Cloudera Movies Data Science Project On Big Data
Cloudera Movies Data Science Project On Big DataCloudera Movies Data Science Project On Big Data
Cloudera Movies Data Science Project On Big DataAbhishek M Shivalingaiah
 
Creating Your Own Threat Intel Through Hunting & Visualization
Creating Your Own Threat Intel Through Hunting & VisualizationCreating Your Own Threat Intel Through Hunting & Visualization
Creating Your Own Threat Intel Through Hunting & VisualizationRaffael Marty
 
SplunkLive! - Getting started with Splunk
SplunkLive! - Getting started with SplunkSplunkLive! - Getting started with Splunk
SplunkLive! - Getting started with SplunkSplunk
 

Ähnlich wie Sumo Logic Cert Jam - Security & Compliance (20)

Sumo Logic QuickStart Webinar - Jan 2016
Sumo Logic QuickStart Webinar - Jan 2016Sumo Logic QuickStart Webinar - Jan 2016
Sumo Logic QuickStart Webinar - Jan 2016
 
Sumo Logic QuickStart Webinar
Sumo Logic QuickStart WebinarSumo Logic QuickStart Webinar
Sumo Logic QuickStart Webinar
 
Sumo Logic Quickstart - Jan 2017
Sumo Logic Quickstart - Jan 2017Sumo Logic Quickstart - Jan 2017
Sumo Logic Quickstart - Jan 2017
 
Sumo Logic QuickStat - Apr 2017
Sumo Logic QuickStat - Apr 2017Sumo Logic QuickStat - Apr 2017
Sumo Logic QuickStat - Apr 2017
 
Sumo Logic Quickstart - Nv 2016
Sumo Logic Quickstart - Nv 2016Sumo Logic Quickstart - Nv 2016
Sumo Logic Quickstart - Nv 2016
 
Sumo Logic QuickStart Webinar Sep 2016
Sumo Logic QuickStart Webinar Sep 2016Sumo Logic QuickStart Webinar Sep 2016
Sumo Logic QuickStart Webinar Sep 2016
 
Sumo Logic QuickStart Webinar - Dec 2016
Sumo Logic QuickStart Webinar - Dec 2016Sumo Logic QuickStart Webinar - Dec 2016
Sumo Logic QuickStart Webinar - Dec 2016
 
Setting Up Sumo Logic - Apr 2017
Setting Up Sumo Logic - Apr 2017Setting Up Sumo Logic - Apr 2017
Setting Up Sumo Logic - Apr 2017
 
Sumo Logic quickStart Webinar June 2016
Sumo Logic quickStart Webinar June 2016Sumo Logic quickStart Webinar June 2016
Sumo Logic quickStart Webinar June 2016
 
Sumo Logic QuickStart
Sumo Logic QuickStartSumo Logic QuickStart
Sumo Logic QuickStart
 
Sumo Logic QuickStart - May 2016
Sumo Logic QuickStart - May 2016Sumo Logic QuickStart - May 2016
Sumo Logic QuickStart - May 2016
 
Sumo Logic Quick Start - Feb 2016
Sumo Logic Quick Start - Feb 2016Sumo Logic Quick Start - Feb 2016
Sumo Logic Quick Start - Feb 2016
 
Setting Up Sumo Logic - Sep 2017
Setting Up Sumo Logic -  Sep 2017Setting Up Sumo Logic -  Sep 2017
Setting Up Sumo Logic - Sep 2017
 
Setting up Sumo Logic - June 2017
Setting up Sumo Logic - June 2017Setting up Sumo Logic - June 2017
Setting up Sumo Logic - June 2017
 
Automated prevention of ransomware with machine learning and gpos
Automated prevention of ransomware with machine learning and gposAutomated prevention of ransomware with machine learning and gpos
Automated prevention of ransomware with machine learning and gpos
 
SPO2-T11_Automated-Prevention-of-Ransomware-with-Machine-Learning-and-GPOs
SPO2-T11_Automated-Prevention-of-Ransomware-with-Machine-Learning-and-GPOsSPO2-T11_Automated-Prevention-of-Ransomware-with-Machine-Learning-and-GPOs
SPO2-T11_Automated-Prevention-of-Ransomware-with-Machine-Learning-and-GPOs
 
SANS_PentestHackfest_2022-PurpleTeam_Cloud_Identity.pptx
SANS_PentestHackfest_2022-PurpleTeam_Cloud_Identity.pptxSANS_PentestHackfest_2022-PurpleTeam_Cloud_Identity.pptx
SANS_PentestHackfest_2022-PurpleTeam_Cloud_Identity.pptx
 
Cloudera Movies Data Science Project On Big Data
Cloudera Movies Data Science Project On Big DataCloudera Movies Data Science Project On Big Data
Cloudera Movies Data Science Project On Big Data
 
Creating Your Own Threat Intel Through Hunting & Visualization
Creating Your Own Threat Intel Through Hunting & VisualizationCreating Your Own Threat Intel Through Hunting & Visualization
Creating Your Own Threat Intel Through Hunting & Visualization
 
SplunkLive! - Getting started with Splunk
SplunkLive! - Getting started with SplunkSplunkLive! - Getting started with Splunk
SplunkLive! - Getting started with Splunk
 

Mehr von Sumo Logic

Sumo Logic Cert Jam - Fundamentals (Spanish)
Sumo Logic Cert Jam - Fundamentals (Spanish)Sumo Logic Cert Jam - Fundamentals (Spanish)
Sumo Logic Cert Jam - Fundamentals (Spanish)Sumo Logic
 
You Build It, You Secure It: Introduction to DevSecOps
You Build It, You Secure It: Introduction to DevSecOpsYou Build It, You Secure It: Introduction to DevSecOps
You Build It, You Secure It: Introduction to DevSecOpsSumo Logic
 
Making the Shift from DevOps to Practical DevSecOps | Sumo Logic Webinar
Making the Shift from DevOps to Practical DevSecOps | Sumo Logic WebinarMaking the Shift from DevOps to Practical DevSecOps | Sumo Logic Webinar
Making the Shift from DevOps to Practical DevSecOps | Sumo Logic WebinarSumo Logic
 
Machine Analytics: Correlate Your Logs and Metrics
Machine Analytics: Correlate Your Logs and MetricsMachine Analytics: Correlate Your Logs and Metrics
Machine Analytics: Correlate Your Logs and MetricsSumo Logic
 
Scaling Your Tools for Your Modern Application
Scaling Your Tools for Your Modern ApplicationScaling Your Tools for Your Modern Application
Scaling Your Tools for Your Modern ApplicationSumo Logic
 
Sumo Logic Search Job API
Sumo Logic Search Job APISumo Logic Search Job API
Sumo Logic Search Job APISumo Logic
 
Bring your Graphite-compatible metrics into Sumo Logic
Bring your Graphite-compatible metrics into Sumo LogicBring your Graphite-compatible metrics into Sumo Logic
Bring your Graphite-compatible metrics into Sumo LogicSumo Logic
 
Sumo Logic: Optimizing Scheduled Searches
Sumo Logic: Optimizing Scheduled SearchesSumo Logic: Optimizing Scheduled Searches
Sumo Logic: Optimizing Scheduled SearchesSumo Logic
 

Mehr von Sumo Logic (8)

Sumo Logic Cert Jam - Fundamentals (Spanish)
Sumo Logic Cert Jam - Fundamentals (Spanish)Sumo Logic Cert Jam - Fundamentals (Spanish)
Sumo Logic Cert Jam - Fundamentals (Spanish)
 
You Build It, You Secure It: Introduction to DevSecOps
You Build It, You Secure It: Introduction to DevSecOpsYou Build It, You Secure It: Introduction to DevSecOps
You Build It, You Secure It: Introduction to DevSecOps
 
Making the Shift from DevOps to Practical DevSecOps | Sumo Logic Webinar
Making the Shift from DevOps to Practical DevSecOps | Sumo Logic WebinarMaking the Shift from DevOps to Practical DevSecOps | Sumo Logic Webinar
Making the Shift from DevOps to Practical DevSecOps | Sumo Logic Webinar
 
Machine Analytics: Correlate Your Logs and Metrics
Machine Analytics: Correlate Your Logs and MetricsMachine Analytics: Correlate Your Logs and Metrics
Machine Analytics: Correlate Your Logs and Metrics
 
Scaling Your Tools for Your Modern Application
Scaling Your Tools for Your Modern ApplicationScaling Your Tools for Your Modern Application
Scaling Your Tools for Your Modern Application
 
Sumo Logic Search Job API
Sumo Logic Search Job APISumo Logic Search Job API
Sumo Logic Search Job API
 
Bring your Graphite-compatible metrics into Sumo Logic
Bring your Graphite-compatible metrics into Sumo LogicBring your Graphite-compatible metrics into Sumo Logic
Bring your Graphite-compatible metrics into Sumo Logic
 
Sumo Logic: Optimizing Scheduled Searches
Sumo Logic: Optimizing Scheduled SearchesSumo Logic: Optimizing Scheduled Searches
Sumo Logic: Optimizing Scheduled Searches
 

Kürzlich hochgeladen

AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAndrey Devyatkin
 
DBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDropbox
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businesspanagenda
 
Platformless Horizons for Digital Adaptability
Platformless Horizons for Digital AdaptabilityPlatformless Horizons for Digital Adaptability
Platformless Horizons for Digital AdaptabilityWSO2
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...DianaGray10
 
DEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 AmsterdamDEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 AmsterdamUiPathCommunity
 
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWEREMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWERMadyBayot
 
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...apidays
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingEdi Saputra
 
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...apidays
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FMESafe Software
 
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ..."I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...Zilliz
 
Mcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Mcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot ModelMcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Mcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot ModelDeepika Singh
 
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...apidays
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...apidays
 
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...Orbitshub
 

Kürzlich hochgeladen (20)

AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of Terraform
 
DBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor Presentation
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
 
Platformless Horizons for Digital Adaptability
Platformless Horizons for Digital AdaptabilityPlatformless Horizons for Digital Adaptability
Platformless Horizons for Digital Adaptability
 
Understanding the FAA Part 107 License ..
Understanding the FAA Part 107 License ..Understanding the FAA Part 107 License ..
Understanding the FAA Part 107 License ..
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
 
DEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 AmsterdamDEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
 
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWEREMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
 
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
 
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ..."I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
 
Mcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Mcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot ModelMcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Mcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot Model
 
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...
 
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
 

Sumo Logic Cert Jam - Security & Compliance

  • 1. Sumo Logic Security and Compliance Certification Welcome! Note you are currently muted. We will get started shortly. This session is being recorded Agenda: 55 min: Presentation & Labs 10 min: Break 40 min: Labs 1 hr: Exam
  • 2. Sumo Logic confidential Course Agenda Security Demo Hands On Labs: Labs 1-5: Starter SOC dashboard with lookup filters Break 5 min. 105 min. 50 min. 10 min. Labs 6-8: Export Starter SOC dashboard, Compliance, Threat Intel with Crowdstrike45 min. Sumologic Certification for Security & Compliance60 min. Introduction to Security and Compliance10 min.
  • 5. Sumo Logic Confidential Centralized log management is key to your security Human Scale Security operation is no long a human scale problem Shifts Shifts happening in threat landscape Gaps Transformation to cloud producing gaps in visibility Your data in one centralized log management source gets you to that single pane of glass SOC.
  • 6. Sumo Logic Confidential Detect, investigate, and respond in real-time O365, SF.com, Box SaaS AWS, Azure, GCP IaaS PaaS Logs|Metrics|Events Hybrid Cloud Containers, Orchestration Network Elements User Activity Apps Threat Intel • Meet compliance deadlines • Reduce security risks • Identify potential security breaches • Neutralize new threat patterns Detect • Transform reactive/ manual processes into integrated /proactive/ automated
  • 7. Sumo Logic Confidential Compliance ✓ Pre-built PCI compliance content for Firewall, AWS, Linux, and Windows ✓ Deploy and monitor controls for PCI, CIS, and HIPAA regulations ✓ Detect & respond to configuration drifts, changes, and misconfigurations ✓ Monitor & enforce your enterprise security & compliance on cloud ✓ Built on a FedRAMP Ready platform
  • 8. Sumo Logic Confidential Delivering Security & Compliance from the Cloud Global view of all security threats "With Sumo Logic, I can now see threats that are happening, and quickly react to those threats” SecOps Complianc e CISODevSecOps Machine learning to detect anomalies) Compliance insights and full stack security visibility Integrated threat intelligence (Crowdstrike, GuardDuty, etc.) Security visibility into hybrid and multicloud tools Integration with 3rd party security technology solutions such as Cisco, Cylance, Kubernetes, Milinda Rambel Stone Sr. Director of Security Out-of-the-box Apps for AWS, Office365, GCP, Salesforce, Okta, Palo Alto )
  • 9. Sumo Logic Confidential Login to training environment and go to labs Hands-on Labs: In chat click this link I shared https://help.sumologic.com/01Start-Here/Quick- Start-Tutorials/Hands- on_Labs%3A_Security_and_Compliance Training Environment: url: service.sumologic.com email: training+labs@sumologic.com password: Sumo2020!
  • 11. Sumo Logic Confidential Filter and Provide Structure Search and Parse
  • 12. Sumo Logic Confidential Data Analytics ⇨ Query Syntax Syntax: metadata Keywords and operators, separated by pipes, that build on top of each other parse filter aggregate format keywords _sourceCategory=Labs/AWS/CloudTrail and "root" | json "eventType","sourceIPAddress","userIdentity" nodrop | json field=userIdentity "type","arn" nodrop | where type="Root" | count date, eventtype, sourceipaddress, type, arn | sort date
  • 13. Sumo Logic Confidential Data Analytics ⇨ Query Syntax Syntax: Use metadata and keywords to narrow your search scope Results keyword metadata keyword | parse | filter | aggregate | format metadata + keywords
  • 14. Sumo Logic Confidential Data Analytics ⇨ Query Syntax Syntax: Extract meaningful fields to provide structure to your data Parse Anchor: | parse " *@* " as user,domain Parse Regex: | parse regex "(?<src_ip>d{1,3} .d{1,3}.d{1,3}.d{1,3})” Other Parse Operators: csv, json, keyvalue, split, xml Learn more: Parse Operators | parse | filter | aggregate | format metadata + keywords
  • 15. Sumo Logic Confidential Data Analytics ⇨ Query Syntax Syntax: Further filter results using your extracted fields where operator: | where !(status_code=304) in operator: | if(status_code in("501","502"), "Error","OK") as code_type Other Filter Operators: join, lookup, matches, filter, isEmpty, isNull, isBlank Learn more: Filter operator example | parse | filter | aggregate | format metadata + keywords
  • 16. Sumo Logic Confidential Data Analytics ⇨ Query Syntax Syntax: Evaluate messages and place them into groups count operator: | count by status_code avg operator: | avg(size) by src_ip pct operator: | pct(filesize,75) by _sourceHost Other Aggregation Operators: sum, count_distinct, stddev, min, max Learn more: Aggregation operators | parse | filter | aggregate | format metadata + keywords
  • 17. Sumo Logic Confidential Data Analytics ⇨ Query Syntax Syntax: Format to display desired results succinctly top operator: | top 5 src_ip by avg_size fields operator: | fields src_ip, avg_size transpose operator: | transpose row src_ip column url Other formatting Operators: format, formatdate, limit, sort Learn more: Trends over time using transpose | parse | filter | aggregate | format metadata + keywords
  • 18. Sumo Logic Confidential Search and Parse Search and Filter your data Search and Filter your data • _metadata • Keywords • Live Tail Parse fields to provide structure to your data • Query Parsing • Implement your Field Extraction Rules (?<>d)
  • 19. Sumo Logic Confidential Conditional Logic, Filtering, Formatting Results Simple Analytics
  • 20. Sumo Logic Confidential Simple Analytics Aggregation | count[] | sum | avg | min() | max() Conditional | if() | []matches[] | <>in() | filter | where Formatting | transpose | fields | limit | sort by | top
  • 21. Sumo Logic Confidential Parse key fields Perform additional parsing on key fields Don’t drop messages that do not match parse criteriaFurther Filter results Aggregate by desired fields Filter using metadata and keywords
  • 22. Sumo Logic Confidential Outliers, Trends, Needle in the Haystack Advanced Analytics
  • 23. Sumo Logic Confidential Advanced Analytics Find the “needle in the haystack” by identifying patterns. Compare today’s patterns with patterns in the past. _sourceCategory=Labs/snort | logreduce _sourceCategory=Labs/snort | logcompare -24h LogReduce ➜ New security attacks/breaches. LogCompare ➜ Compare attacks/breaches to other time periods.
  • 24. Sumo Logic Confidential Advanced Analytics _sourceCategory=Labs/AWS/CloudTrail | parse ""eventName":"*"" as eventName nodrop | parse ""responseElements":{"ConsoleLogin":"*"}" as loginResult nodrop | where eventName="ConsoleLogin" and loginresult="Failure" | timeslice 30m | count(eventName) as failed_login_attempts by _timeslice | outlier failed_login_attempts _sourceCategory=Labs/security/Proofpoint and Mexico | timeslice 5m | count as rogue_traffic by _timeslice | predict rogue_traffic by 5m forecast=12 Outlier ➜ Anomalies in number of Failed Logins Predict ➜ Traffic from a Rogue Country/State
  • 25. Sumo Logic Confidential Advanced Analytics _sourceCategory=Labs/PaloAltoNetworks and ",TRAFFIC," | where action="deny" | count action | compare with timeshift 15m 4 avg | if(isNull(_count), 0, _count) as _count | if(isNull(_count_60m_avg), 0, _count_60m_avg) as _count_60m_avg | where _count>(5 * _count_60m_avg) _sourceCategory=Labs/PaloAltoNetworks and ",TRAFFIC," | lookup latitude, longitude, country_code, country_name, city from geo://location on ip=dest_ip | where country_code<>"US" | count by latitude, longitude, country_code, country_name, city Time Compare ➜ Identify a 5-fold increase in Denied Traffic Geo Lookup ➜ Traffic Destinations outside the US
  • 26. Sumo Logic Confidential Advanced Analytics ((_sourceCategory=Labs/PaloAltoNetworks ",THREAT,") or (_sourceCategory=Labs/PaloAltoNetworks ",TRAFFIC," action=allow)) | concat(dest_ip,":", dest_port) as destination | transactionize src_ip (merge type, destination, src_ip takeFirst) | where type matches "*TRAFFIC*" and type matches "*THREAT*" | count src_ip, type, destination | fields - _count ((_sourceCategory=Labs/snort "[Classification: Web Application Attack]") or _sourceCategory=Labs/Apache/Access) | parse "{TCP} *:* -> *:*" as src_ip, src_port, dest_ip, dest_port nodrop | parse regex "(?<src_ip>d{1,3}.d{1,3}.d{1,3}.d{1,3})" | transaction on src_ip with states %"Labs/snort", %"Labs/Apache/Access" in _sourceCategory | where %"Labs/snort">0 and %"Labs/Apache/Access">0 Transactionize ➜ Follow a Transaction Transaction ➜ Correlate Traffic Data
  • 27. Sumo Logic Confidential Out-of-the-Box Content Security and Compliance Apps
  • 28. Sumo Logic Confidential Security and Compliance Apps ● Simplify Compliance Management ● Set up Real-time monitoring and Alerts ● Security Analytics with Threat Intelligence
  • 29. Sumo Logic Confidential Apps: Palo Alto Networks Discover threats, consumption, traffic patterns, and other security-driven issues, providing additional insight for investigations.
  • 30. Sumo Logic Confidential Apps: AWS CloudTrail Track user behavior patterns, administrator activity, or correlate with other data sets to get a broader understanding of events from operating systems, intrusion detection systems or application logs.
  • 31. Sumo Logic Confidential Apps: AWS VPC Flow Logs Track your IP network traffic and troubleshoot security issues with real-time visibility and analysis of your environment.
  • 32. Sumo Logic Confidential Apps: AWS GuardDuty Detect unexpected and potentially malicious activities in your AWS account. Analyze threats by severity, VPC, IP, account ID, region, and resource type. GuardDuty analyzes and processes VPC Flow Logs and AWS CloudTrail event logs.
  • 33. Sumo Logic Confidential Apps: Threat Intelligence for AWS Correlate CrowdStrike threat intelligence data with your AWS log data, for real-time security analytics to detect threats and protect against cyber-attacks. The Threat Intel for AWS App scans AWS CloudTrail, AWS ELB and AWS VPC Flow logs for threats based on IP address.
  • 34. Sumo Logic Confidential Apps: Threat Intelligence Quick Analysis Correlate CrowdStrike threat intelligence data with your own log data, for real-time security analytics to detect threats and protect against cyber-attacks. This app scans your selected logs for threats based on IP, filename, URL, domain, Hash 256, and email.
  • 35. Sumo Logic Confidential Apps: CrowdStrike Analyze CrowdStrike security events by type, status and detection method. The CrowdStrike Falcon platform provides Endpoint Detection and Response, Antivirus and Threat Intelligence services via the cloud.
  • 36. Sumo Logic Confidential Apps: O365 Monitor and analyze your complete Office 365 system for administrator and user activity. This app monitors Audit logs for Azure Active Directory, Exchange and SharePoint.
  • 37. Sumo Logic Confidential Deep Packet Inspection* Email Security* Out-of-the-box Security Content User ID SecurityMicroservices CDNSAAS Developer Stack Endpoint Security Network Security IAAS *Add-on Cloud SIEM Enterprise option
  • 38. Sumo Logic Confidential Global Intelligence for Amazon GuardDuty 3.0
  • 39. Sumo Logic Confidential Amazon GuardDuty: 12 threat purposes unusual outbound: network ports / suspicious IP / data transfer inbound connections from suspicious IP unusual API calls to change permissions root credential usage privilege escalation bitcoin mining on EC2 Recon: suspicious port scan launching EC2 instances Disabling CloudTrail or modifying password policy PenTest
  • 40. Sumo Logic Confidential Example: Which is more risky? bitcoin mining on your EC2 instances Recon: suspicious port scan Choices: (A)bitcoin mining (B)Recon (C)No idea
  • 41. Sumo Logic Confidential Example: Which is more risky? Does global context help?
  • 42. Sumo Logic Confidential Too many false positives https://www.reddit.com/r/aws/comments/dgfos0/is_guardduty_a_false_positive_hero/
  • 43. Sumo Logic Confidential Global Intelligence for Amazon GuardDuty 3.0 What threats are customers experiencing? How does my company compare? What should we do? As a SecOps users, use insights from Sumo Logic customers to prioritize and act on Amazon GuardDuty threats 1 2 3
  • 44. Sumo Logic Confidential What threats are customers experiencing? 1 Global Threat Mix Global Threat Share Global Threat Map Rare threats Documentation https://help.sumologic.com/07Sumo-Logic-Apps/01Amazon_and_AWS/Global_Intelligence_for_Amazon_GuardDuty
  • 45. Sumo Logic Confidential How does my company compare? 2 Threat score (100 = high risk) Threat score trend My Company v. Global Baseline of threats Documentation https://help.sumologic.com/07Sumo-Logic-Apps/01Amazon_and_AWS/Global_Intelligence_for_Amazon_GuardDuty
  • 46. Sumo Logic Confidential What should we do? 3 Action plan by affected resource Priority ● findings count ● severity ● unusualness compared to baseline Documentation https://help.sumologic.com/07Sumo-Logic-Apps/01Amazon_and_AWS/Global_Intelligence_for_Amazon_GuardDuty
  • 47. Sumo Logic Confidential for AWS CloudTrail 1.0 Global Intelligence
  • 48. Sumo Logic Confidential 0 Example of a breach EC2 instances S3 bucket Attacker: steal data from S3 Get AWS credentials from public repositories -> run AWS SDK EC2_ListSecurityGroups* -> find EC2 instances with open ports to open a remote session on machine (MITRE: Discovery) EC2_List instances* -> find IAM profiles associated with EC2 instances (MITRE: Discovery) IAM_CreateUpdatePolicy* to add S3 read privileges to EC2’s IAM role (MITRE: Privilege Escalation) Connect to S3 bucket using role and read all data (MITRE: Exfiltration) 1 2 3 4 *Notable events in AWS CloudTrail- detect & prioritize to reduce breach risk See https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_use_switch-role-ec2.html
  • 49. Sumo Logic Confidential Global Intelligence for AWS CloudTrail How does my attack surface compare to peers? How do my notable events compare to peers? What should we do? As a SecOps user, use insights from Sumo Logic customers to detect and prioritize notable security events in AWS CloudTrail 1 2 3
  • 50. Sumo Logic Confidential How does my attack surface compare to peers? 1 AWS services covered ● EC2 ● S3 ● IAM ● RDS ● Redshift ● Lambda ● CloudTrail Cohorts based on: ● Variety - Unique AWS services in use (e.g. EC2, S3) ● Volume- Count of resources ● Velocity - Create, Update, Delete events Correlated with breach risk Documentation https://help.sumologic.com/07Sumo-Logic-Apps/01Amazon_and_AWS/Global_Intelligence_for_AWS_CloudTrail
  • 51. Sumo Logic Confidential How do my notable events compare to peers? 2 Notable event counts v. peers by MITRE Att&ck Framework ● Credential Access ● Defense Evasion ● Discovery ● Execution ● Exfiltration ● Initial Access ● Lateral Movement ● Persistence ● Privilege Escalation Documentation https://help.sumologic.com/07Sumo-Logic-Apps/01Amazon_and_AWS/Global_Intelligence_for_AWS_CloudTrail
  • 52. Sumo Logic Confidential How do my notable events compare to peers? 2 Count resources affected by notable events v. peers ● EC2 (instances, AMIs) ● S3 (buckets) ● IAM (user, roles, policies) ● RDS (cluster, instances) ● Redshift (cluster) ● Lambda (functions) ● CloudTrail (trails) Documentation https://help.sumologic.com/07Sumo-Logic-Apps/01Amazon_and_AWS/Global_Intelligence_for_AWS_CloudTrail
  • 53. Sumo Logic Confidential What should we do? 3 Action plan by affected resource ● EC2 (instances, AMIs) ● S3 (buckets) ● IAM (user, roles, policies) ● RDS (cluster, instances) ● Redshift (cluster) ● Lambda (functions) ● CloudTrail (trails) Priority - Unusualness of Event Count x Number of Resources
  • 54. Sumo Logic Confidential End of Reference Slides
  • 57. Sumo Logic Confidential Assessment Description • 30 questions coming from a pool of questions • 60 minutes to take it • Need a 75% to pass • Open Resource (slides, labs, and documentation)
  • 58. Sumo Logic Confidential Certification Assessment: 1. Click > Certification 2. Click Get Certified 3. Click <course category> 4. Click <course name> 5. Click 6. Under Read Me First, click Before you start 7. Click 8. Click In order to get credit for the exam, go to your own Sumo account and login (your company account, not the training account)
  • 59. Sumo Logic Confidential Sumo Logic Confidential If you find your login is cycling back to the exam screen, do the following: ● Click on Help in the black left bar ● Click Community in the black left bar ● An email verification should be sent ● Once you verify, you should able to take the exam without any issues
  • 60. Sumo Logic Confidential In order to get credit for the assessment 1. After each section, click Next or Submit 2. When you get to the last section, click Go to results 3. When you passed the class, you’ll get a congratulations message. Then click Submit results. 4. After your feedback, you can click Close course Follow these steps:
  • 61. For passing the exam, you will earn: ● A Certificate ● An invitation to our LinkedIn Group ● The respect of your peers ● Fame, Fortune and more... Jessica Robbens
  • 62. Sumo Logic Confidential Please take our survey: https://forms.gle/2KMtxPuD 9cSYV8SJ6 How did we do?