Security Event Counts by OS Platform |
Displays a pie chart of security event counts by OS platform.
Hide Query Show Query #Vendor="google"
|host.os.type=?os_platform
|groupBy(host.os.type)
|rename(host.os.type,as="OS Platform")
| Pie Chart |
Potential Credential Leak Websites |
Displays a table of URLs via Chrome that may have credential
leaks, including bad navigation events or password reuse events
and limits results to the first 10 entries.
Hide Query Show Query #Vendor="google"
|event.action=/^(badNavigationEvent|passwordReuseEvent)$/
|event.reason="SOCIAL_ENGINEERING"
|url.original=?url
|rename(url.original, as="URL")
|top(["URL"],limit=10,rest=others,as="Count")
| Table |
Unique Device IDs |
Displays the number of unique device IDs.
Hide Query Show Query #Vendor="google"
|device.id=?device_id
|count("device.id", distinct=true, as="Count")
| Single Value |
Security Events by Reason |
Displays a chart of Google security events by reason.
Hide Query Show Query #Vendor="google"
|groupBy("event.reason")
| Bar Chart |
Trigger Types | | Note |
Problematic Hostnames |
Displays a table of problematic host names and limits results to
the first 10 entries.
Hide Query Show Query #Vendor="google"
|event.action=/^(badNavigationEvent|passwordReuseEvent|dangerousDownloadEvent)$/
|url.original=?url
|rename(url.domain, as="Hostname")
|top(["Hostname"],limit=10,rest=others,as="Count")
| Table |
Unique Trigger Types |
Displays a list of unique trigger types by vendor.
Hide Query Show Query count(Vendor.trigger_type, distinct=true)
| Single Value |
Unique Users with Security Events |
Displays a list of unique users with security events.
Hide Query Show Query count(user.name, distinct=true)
| Single Value |
Devices | | Note |
Top Security Event Results |
Displays a table of the top 10 Google security events.
Hide Query Show Query #Vendor="google"
|top(Vendor.result,limit=10,rest=others,as="Count")
|rename(Vendor.result,as="Result")
|select(["Result","Count"])
| Table |
Security Events by Trigger Type |
Displays a list of vendor security events by trigger type.
Hide Query Show Query #Vendor="google"
|top(Vendor.trigger_type, as="Count")
|rename(Vendor.trigger_type,as="Trigger Type")
|select(["Trigger Type","Count"])
| Table |
Users with Events |
Displays a table of events by device user.
Hide Query Show Query #Vendor="google"
|top(user.name, as="Count")
|rename(user.name,as="Device User")
| Table |
Websites | | Note |
Device User to Device Mapping |
Displays a flow chart of device users to devices using Google
data.
Hide Query Show Query #Vendor="google"
|user.name=?device_user
|device.id=?device_id
|rename(user.name, as="Device User")
|rename(device.id, as="Device ID")
|sankey(source="Device User", target="Device ID")
| Sankey |
Device ID to Host Mapping |
Displays a table of device data such as device name, device ID,
Device user, etc.
Hide Query Show Query #Vendor="google"
|device.id=?device_id | device.model.name=?device_name | user.name=?device_user | Vendor.profile_user=?profile_user
|groupBy(["device.id", "device.model.name", "user.name", "Vendor.profile_user"])
|rename(device.id, as="Device ID") |rename(device.model.name, as="Device Name") |rename(user.name, as="Device User") |rename(Vendor.profile_user, as="Profile User")
|select(["Device Name","Device ID", "Device User", "Profile User"])
| Table |
Security Events by Event Type |
Displays a table of the top 10 Google security events by event
type.
Hide Query Show Query #Vendor="google"
|event.action=?{event=*}
|top(event.action,limit=10,rest=others,as="Count")
|rename(event.action, as="Event Type")
|select(["Event Type","Count"])
| Table |
Security Events by Chrome User |
Displays a list of security events by Chrome user profile and
limits the results to the first 10 entries.
Hide Query Show Query #Vendor="google"
|Vendor.profile_user!=""
|Vendor.profile_user=?profile_user
|top(Vendor.profile_user,limit=10,rest=others,as="Count")
|rename(Vendor.profile_user,as="Profile User")
|select(["Profile User", "Count"])
| Table |
Unique OSs with Security Events |
Displays unique OSs with security events.
Hide Query Show Query #Vendor="google"
|host.os.type=?os_platform
|count(host.os.type, distinct=true, as="OS Platform")
| Single Value |
Events by Chrome Browser Version |
Displays a pie chart of Google Chrome browser versions.
Hide Query Show Query #Vendor="google"
|groupBy(Vendor.browser_version)
| Pie Chart |
User Events and Browser Summary | | Note |
Top OS Platforms with Security Events |
Displays a table of the top 10 OS platforms with security events.
Hide Query Show Query #Vendor="google"
|host.os.type=?os_platform
|top(host.os.type,limit=10,rest=others,as="Count")
|rename(host.os.type,as="OS Platform")
|select(["OS Platform","Count"])
| Table |
Potential Malware Websites |
Displays a table of potential malware websites by URL and limits
results to the first 10 entries.
Hide Query Show Query #Vendor="google"
|event.action=/^(badNavigationEvent|passwordReuseEvent|dangerousDownloadEvent)$/
|event.reason="MALWARE"
|url.original=?url
|rename(url.original, as="URL")
|top(["URL"],limit=10,rest=others,as="Count")
| Table |
Top Device Users with Events |
Displays a table of the top 10 device users and their events.
Hide Query Show Query #Vendor="google"
|user.name=?device_user
|top(user.name,limit=10,rest=others,as="Count")
|rename(user.name,as="Device User")
|select(["Device User","Count"])
| Table |
Operating System | | Note |