-
Notifications
You must be signed in to change notification settings - Fork 119
Incidents
Joshua Hiller edited this page Apr 17, 2021
·
21 revisions
API Function | Description |
---|---|
CrowdScore | Query environment wide CrowdScore and return the entity data |
GetBehaviors | Get details on behaviors by providing behavior IDs |
PerformIncidentAction | Perform a set of actions on one or more incidents, such as adding tags or comments or updating the incident name or description |
GetIncidents | Get details on incidents by providing incident IDs |
QueryBehaviors | Search for behaviors by providing an FQL filter, sorting, and paging details |
QueryIncidents | Search for incidents by providing an FQL filter, sorting, and paging details |
Query environment wide CrowdScore and return the entity data
- Consumes: application/json
- Produces: application/json
Required | Name | Type | Datatype | Description |
---|---|---|---|---|
filter | query | string | Optional filter and sort criteria in the form of an FQL query. For more information about FQL queries, see our FQL documentation in Falcon. | |
offset | query | string | Starting index of overall result set from which to return ids. | |
limit | query | integer | The maximum records to return. [1-2500] | |
sort | query | string | The property to sort on, followed by a dot (.), followed by the sort direction, either "asc" or "desc". |
from falconpy import incidents as FalconIncidents
falcon = FalconIncidents.Incidents(creds={
'client_id': falcon_client_id,
'client_secret': falcon_client_secret
})
PARAMS = {
'filter': 'string',
'offset': 'string',
'limit': integer,
'sort': 'string'
}
response = falcon.CrowdScore(parameters=PARAMS)
print(response)
from falconpy import api_complete as FalconSDK
falcon = FalconSDK.APIHarness(creds={
'client_id': falcon_client_id,
'client_secret': falcon_client_secret
}
)
PARAMS = {
'filter': 'string',
'offset': 'string',
'limit': integer,
'sort': 'string'
}
response = falcon.command('CrowdScore', parameters=PARAMS)
print(response)
falcon.deauthenticate()
Get details on behaviors by providing behavior IDs
- Consumes: application/json
- Produces: application/json
Required | Name | Type | Datatype | Description |
---|---|---|---|---|
✅ | body | body | string |
from falconpy import incidents as FalconIncidents
falcon = FalconIncidents.Incidents(creds={
'client_id': falcon_client_id,
'client_secret': falcon_client_secret
})
BODY = {
'Body Payload': 'See body description above'
}
response = falcon.GetBehaviors(body=BODY)
print(response)
from falconpy import api_complete as FalconSDK
falcon = FalconSDK.APIHarness(creds={
'client_id': falcon_client_id,
'client_secret': falcon_client_secret
}
)
BODY = {
'Body Payload': 'See body description above'
}
response = falcon.command('GetBehaviors', body=BODY)
print(response)
falcon.deauthenticate()
Perform a set of actions on one or more incidents, such as adding tags or comments or updating the incident name or description
- Consumes: application/json
- Produces: application/json
Required | Name | Type | Datatype | Description |
---|---|---|---|---|
✅ | body | body | string |
from falconpy import incidents as FalconIncidents
falcon = FalconIncidents.Incidents(creds={
'client_id': falcon_client_id,
'client_secret': falcon_client_secret
})
BODY = {
'Body Payload': 'See body description above'
}
response = falcon.PerformIncidentAction(body=BODY)
print(response)
from falconpy import api_complete as FalconSDK
falcon = FalconSDK.APIHarness(creds={
'client_id': falcon_client_id,
'client_secret': falcon_client_secret
}
)
BODY = {
'Body Payload': 'See body description above'
}
response = falcon.command('PerformIncidentAction', body=BODY)
print(response)
falcon.deauthenticate()
Get details on incidents by providing incident IDs
- Consumes: application/json
- Produces: application/json
Required | Name | Type | Datatype | Description |
---|---|---|---|---|
✅ | body | body | string |
from falconpy import incidents as FalconIncidents
falcon = FalconIncidents.Incidents(creds={
'client_id': falcon_client_id,
'client_secret': falcon_client_secret
})
BODY = {
'Body Payload': 'See body description above'
}
response = falcon.GetIncidents(body=BODY)
print(response)
from falconpy import api_complete as FalconSDK
falcon = FalconSDK.APIHarness(creds={
'client_id': falcon_client_id,
'client_secret': falcon_client_secret
}
)
BODY = {
'Body Payload': 'See body description above'
}
response = falcon.command('GetIncidents', body=BODY)
print(response)
falcon.deauthenticate()
Search for behaviors by providing an FQL filter, sorting, and paging details
- Consumes: application/json
- Produces: application/json
Required | Name | Type | Datatype | Description |
---|---|---|---|---|
filter | query | string | Optional filter and sort criteria in the form of an FQL query. For more information about FQL queries, see our FQL documentation in Falcon. | |
offset | query | string | Starting index of overall result set from which to return ids. | |
limit | query | integer | The maximum records to return. [1-500] | |
sort | query | string | The property to sort on, followed by a dot (.), followed by the sort direction, either "asc" or "desc". |
from falconpy import incidents as FalconIncidents
falcon = FalconIncidents.Incidents(creds={
'client_id': falcon_client_id,
'client_secret': falcon_client_secret
})
PARAMS = {
'filter': 'string',
'offset': 'string',
'limit': integer,
'sort': 'string'
}
response = falcon.QueryBehaviors(parameters=PARAMS)
print(response)
from falconpy import api_complete as FalconSDK
falcon = FalconSDK.APIHarness(creds={
'client_id': falcon_client_id,
'client_secret': falcon_client_secret
}
)
PARAMS = {
'filter': 'string',
'offset': 'string',
'limit': integer,
'sort': 'string'
}
response = falcon.command('QueryBehaviors', parameters=PARAMS)
print(response)
falcon.deauthenticate()
Search for incidents by providing an FQL filter, sorting, and paging details
- Consumes: application/json
- Produces: application/json
Required | Name | Type | Datatype | Description |
---|---|---|---|---|
sort | query | string | The property to sort on, followed by a dot (.), followed by the sort direction, either "asc" or "desc". | |
filter | query | string | Optional filter and sort criteria in the form of an FQL query. For more information about FQL queries, see our FQL documentation in Falcon. | |
offset | query | string | Starting index of overall result set from which to return ids. | |
limit | query | integer | The maximum records to return. [1-500] |
from falconpy import incidents as FalconIncidents
falcon = FalconIncidents.Incidents(creds={
'client_id': falcon_client_id,
'client_secret': falcon_client_secret
})
PARAMS = {
'sort': 'string',
'filter': 'string',
'offset': 'string',
'limit': integer
}
response = falcon.QueryIncidents(parameters=PARAMS)
print(response)
from falconpy import api_complete as FalconSDK
falcon = FalconSDK.APIHarness(creds={
'client_id': falcon_client_id,
'client_secret': falcon_client_secret
}
)
PARAMS = {
'sort': 'string',
'filter': 'string',
'offset': 'string',
'limit': integer
}
response = falcon.command('QueryIncidents', parameters=PARAMS)
print(response)
falcon.deauthenticate()
- Home
- Discussions Board
- Glossary of Terms
- Installation, Upgrades and Removal
- Samples Collection
- Using FalconPy
- API Operations
-
Service Collections
- Alerts
- API Integrations
- Cloud Connect AWS (deprecated)
- Cloud Snapshots
- Configuration Assessment
- Configuration Assessment Evaluation Logic
- Container Alerts
- Container Detections
- Container Images
- Container Packages
- Container Vulnerabilities
- CSPM Registration
- Custom IOAs
- Custom Storage
- D4C Registration (deprecated)
- Detects
- Device Control Policies
- Discover
- Drift Indicators
- Event Streams
- Exposure Management
- Falcon Complete Dashboard
- Falcon Container
- Falcon Intelligence Sandbox
- FDR
- FileVantage
- Firewall Management
- Firewall Policies
- Foundry LogScale
- Host Group
- Hosts
- Identity Protection
- Image Assessment Policies
- Incidents
- Installation Tokens
- Intel
- IOA Exclusions
- IOC
- IOCs (deprecated)
- Kubernetes Protection
- MalQuery
- Message Center
- ML Exclusions
- Mobile Enrollment
- MSSP (Flight Control)
- OAuth2
- ODS (On Demand Scan)
- Overwatch Dashboard
- Prevention Policy
- Quarantine
- Quick Scan
- Real Time Response
- Real Time Response Admin
- Real Time Response Audit
- Recon
- Report Executions
- Response Policies
- Sample Uploads
- Scheduled Reports
- Sensor Download
- Sensor Update Policy
- Sensor Visibility Exclusions
- Spotlight Evaluation Logic
- Spotlight Vulnerabilities
- Tailored Intelligence
- ThreatGraph
- Unidentified Containers
- User Management
- Workflows
- Zero Trust Assessment
- Documentation Support
-
CrowdStrike SDKs
- Crimson Falcon - Ruby
- FalconPy - Python 3
- FalconJS - Javascript
- goFalcon - Go
- PSFalcon - Powershell
- Rusty Falcon - Rust