List of Valid FQL <property> values? #149
-
Hi, been working with the falconpy library the last week or so, and I think I'm getting a better handle on how it works and what it expects. But I've been searching the source code and the documentation (github wiki + crowdstrike docs ). Is there a list of valid values for ? I'm having trouble tying together what I see in crowdstrike dashboards and what I can current pull from the API. Ive tried looking at URLs while applying filters to dashboard and I'm not sure if I'm asking the wrong endpoint, or using the wrong property name for example Any help is great, thanks |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hi @mbullmanFHCRC - First off, thank you for pointing out the deprecated link in our swagger. I've submitted an internal ticket to have this link updated. A couple of notes regarding filtering and sorting with FQL (Falcon Query Language):
There is not currently a singular list of all of the acceptable fields for each API. As a work-around, here are some other places you can check:
Detects APIThere is documentation for the Detects API here: https://falcon.crowdstrike.com/documentation/86/detections-monitoring-apis#filtering-options that has a pretty large appendix of possible values. I was also able to pull these values out of swagger or by making test calls: Sort
Filter
Examplefrom falconpy.detects import Detects
detects = Detects(creds={"client_id": client_id, "client_secret": client_secret})
result = detects.QueryDetects(parameters={"filter": "filename:'chrome.exe'"})
|
Beta Was this translation helpful? Give feedback.
Hi @mbullmanFHCRC -
First off, thank you for pointing out the deprecated link in our swagger. I've submitted an internal ticket to have this link updated.
A couple of notes regarding filtering and sorting with FQL (Falcon Query Language):
There is not currently a singular list of all of the acceptable fields for each API.
As a work-around, here are some other places you can check: