Skip to content

Commit 948a2d5

Browse files
authored
Merge pull request #34 from ByteRay-Labs/submission/a43cd0f4-e0bc-47aa-bc6c-e7e005389c3e
New Query: Identify Shadow SaaS
2 parents f378e6d + 776ef0d commit 948a2d5

1 file changed

Lines changed: 38 additions & 0 deletions

File tree

queries/identify_shadow_saas.yml

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
# --- Query Metadata ---
2+
# Human-readable name for the query. Will be displayed as the title.
3+
name: Identify Shadow SaaS
4+
5+
# MITRE ATT&CK technique IDs
6+
mitre_ids:
7+
- T1526
8+
9+
# Description of what the query does and its purpose.
10+
description: |
11+
This query identifies SaaS services supported by Falcon Shield and helps detect which SaaS products are actively used within the environment.
12+
13+
# The author or team that created the query.
14+
author: ByteRay GmbH
15+
16+
# The required log sources to run this query successfully in Next-Gen SIEM.
17+
log_sources:
18+
- Endpoint
19+
20+
# The CrowdStrike modules required to run this query.
21+
cs_required_modules:
22+
- Insight
23+
24+
# Tags for filtering and categorization.
25+
tags:
26+
- Monitoring
27+
28+
# --- Query Content ---
29+
# The actual CrowdStrike Query Language (CQL) code.
30+
# Using the YAML block scalar `|` allows for multi-line strings.
31+
cql: |
32+
#event_simpleName=DnsRequest DomainName=*
33+
| match(file="shadow-saas.csv", field=[DomainName], column=[Domains], strict=true,mode=glob)
34+
| Category=?Category
35+
| Vendor=?Vendor
36+
| Application=?Application
37+
| groupBy(ComputerName, Vendor, Application, Category)
38+

0 commit comments

Comments
 (0)