-
Notifications
You must be signed in to change notification settings - Fork 130
Device Control Policies
API Function | Description |
---|---|
queryCombinedDeviceControlPolicyMembers | Search for members of a Device Control Policy in your environment by providing an FQL filter and paging details. Returns a set of host details which match the filter criteria |
queryCombinedDeviceControlPolicies | Search for Device Control Policies in your environment by providing an FQL filter and paging details. Returns a set of Device Control Policies which match the filter criteria |
performDeviceControlPoliciesAction | Perform the specified action on the Device Control Policies specified in the request |
setDeviceControlPoliciesPrecedence | Sets the precedence of Device Control Policies based on the order of IDs specified in the request. The first ID specified will have the highest precedence and the last ID specified will have the lowest. You must specify all non-Default Policies for a platform when updating precedence |
getDeviceControlPolicies | Retrieve a set of Device Control Policies by specifying their IDs |
createDeviceControlPolicies | Create Device Control Policies by specifying details about the policy to create |
deleteDeviceControlPolicies | Delete a set of Device Control Policies by specifying their IDs |
updateDeviceControlPolicies | Update Device Control Policies by specifying the ID of the policy and details to update |
queryDeviceControlPolicyMembers | Search for members of a Device Control Policy in your environment by providing an FQL filter and paging details. Returns a set of Agent IDs which match the filter criteria |
queryDeviceControlPolicies | Search for Device Control Policies in your environment by providing an FQL filter and paging details. Returns a set of Device Control Policy IDs which match the filter criteria |
Search for members of a Device Control Policy in your environment by providing an FQL filter and paging details. Returns a set of host details which match the filter criteria
- Produces: application/json
Required | Name | Type | Datatype | Description |
---|---|---|---|---|
id | query | string | The ID of the Device Control Policy to search for members of | |
filter | query | string | The filter expression that should be used to limit the results | |
offset | query | integer | The offset to start retrieving records from | |
limit | query | integer | The maximum records to return. [1-5000] | |
sort | query | string | The property to sort by |
from falconpy import device_control_policies as FalconDCP
falcon = FalconDCP.Device_Control_Policies(creds={
'client_id': falcon_client_id,
'client_secret': falcon_client_secret
})
PARAMS = {
'id': 'string',
'filter': 'string',
'offset': integer,
'limit': integer,
'sort': 'string'
}
response = falcon.queryCombinedDeviceControlPolicyMembers(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 = {
'id': 'string',
'filter': 'string',
'offset': integer,
'limit': integer,
'sort': 'string'
}
response = falcon.command('queryCombinedDeviceControlPolicyMembers', parameters=PARAMS)
print(response)
falcon.deauthenticate()
Search for Device Control Policies in your environment by providing an FQL filter and paging details. Returns a set of Device Control Policies which match the filter criteria
- Produces: application/json
Required | Name | Type | Datatype | Description |
---|---|---|---|---|
filter | query | string | The filter expression that should be used to limit the results | |
offset | query | integer | The offset to start retrieving records from | |
limit | query | integer | The maximum records to return. [1-5000] | |
sort | query | string | The property to sort by |
from falconpy import device_control_policies as FalconDCP
falcon = FalconDCP.Device_Control_Policies(creds={
'client_id': falcon_client_id,
'client_secret': falcon_client_secret
})
PARAMS = {
'filter': 'string',
'offset': integer,
'limit': integer,
'sort': 'string'
}
response = falcon.queryCombinedDeviceControlPolicies(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': integer,
'limit': integer,
'sort': 'string'
}
response = falcon.command('queryCombinedDeviceControlPolicies', parameters=PARAMS)
print(response)
falcon.deauthenticate()
Perform the specified action on the Device Control Policies specified in the request
- Produces: application/json
Required | Name | Type | Datatype | Description |
---|---|---|---|---|
✅ | action_name | query | string | The action to perform |
✅ | body | body | string |
from falconpy import device_control_policies as FalconDCP
falcon = FalconDCP.Device_Control_Policies(creds={
'client_id': falcon_client_id,
'client_secret': falcon_client_secret
})
PARAMS = {
'action_name': 'string'
}
BODY = {
'Body Payload': 'See body description above'
}
response = falcon.performDeviceControlPoliciesAction(parameters=PARAMS, 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
}
)
PARAMS = {
'action_name': 'string'
}
BODY = {
'Body Payload': 'See body description above'
}
response = falcon.command('performDeviceControlPoliciesAction', parameters=PARAMS, body=BODY)
print(response)
falcon.deauthenticate()
Sets the precedence of Device Control Policies based on the order of IDs specified in the request. The first ID specified will have the highest precedence and the last ID specified will have the lowest. You must specify all non-Default Policies for a platform when updating precedence
- Produces: application/json
Required | Name | Type | Datatype | Description |
---|---|---|---|---|
✅ | body | body | string |
from falconpy import device_control_policies as FalconDCP
falcon = FalconDCP.Device_Control_Policies(creds={
'client_id': falcon_client_id,
'client_secret': falcon_client_secret
})
BODY = {
'Body Payload': 'See body description above'
}
response = falcon.setDeviceControlPoliciesPrecedence(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('setDeviceControlPoliciesPrecedence', body=BODY)
print(response)
falcon.deauthenticate()
Retrieve a set of Device Control Policies by specifying their IDs
- Produces: application/json
Required | Name | Type | Datatype | Description |
---|---|---|---|---|
✅ | ids | query | array (string) | The IDs of the Device Control Policies to return |
from falconpy import device_control_policies as FalconDCP
falcon = FalconDCP.Device_Control_Policies(creds={
'client_id': falcon_client_id,
'client_secret': falcon_client_secret
})
IDS = 'ID1,ID2,ID3'
response = falcon.getDeviceControlPolicies(ids=IDS)
print(response)
from falconpy import api_complete as FalconSDK
falcon = FalconSDK.APIHarness(creds={
'client_id': falcon_client_id,
'client_secret': falcon_client_secret
}
)
IDS = 'ID1,ID2,ID3'
response = falcon.command('getDeviceControlPolicies', ids=IDS)
print(response)
falcon.deauthenticate()
Create Device Control Policies by specifying details about the policy to create
- Produces: application/json
Required | Name | Type | Datatype | Description |
---|---|---|---|---|
✅ | body | body | string |
from falconpy import device_control_policies as FalconDCP
falcon = FalconDCP.Device_Control_Policies(creds={
'client_id': falcon_client_id,
'client_secret': falcon_client_secret
})
BODY = {
'Body Payload': 'See body description above'
}
response = falcon.createDeviceControlPolicies(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('createDeviceControlPolicies', body=BODY)
print(response)
falcon.deauthenticate()
Delete a set of Device Control Policies by specifying their IDs
- Produces: application/json
Required | Name | Type | Datatype | Description |
---|---|---|---|---|
✅ | ids | query | array (string) | The IDs of the Device Control Policies to delete |
from falconpy import device_control_policies as FalconDCP
falcon = FalconDCP.Device_Control_Policies(creds={
'client_id': falcon_client_id,
'client_secret': falcon_client_secret
})
IDS = 'ID1,ID2,ID3'
response = falcon.deleteDeviceControlPolicies(ids=IDS)
print(response)
from falconpy import api_complete as FalconSDK
falcon = FalconSDK.APIHarness(creds={
'client_id': falcon_client_id,
'client_secret': falcon_client_secret
}
)
IDS = 'ID1,ID2,ID3'
response = falcon.command('deleteDeviceControlPolicies', ids=IDS)
print(response)
falcon.deauthenticate()
Update Device Control Policies by specifying the ID of the policy and details to update
- Produces: application/json
Required | Name | Type | Datatype | Description |
---|---|---|---|---|
✅ | body | body | string |
from falconpy import device_control_policies as FalconDCP
falcon = FalconDCP.Device_Control_Policies(creds={
'client_id': falcon_client_id,
'client_secret': falcon_client_secret
})
BODY = {
'Body Payload': 'See body description above'
}
response = falcon.updateDeviceControlPolicies(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('updateDeviceControlPolicies', body=BODY)
print(response)
falcon.deauthenticate()
Search for members of a Device Control Policy in your environment by providing an FQL filter and paging details. Returns a set of Agent IDs which match the filter criteria
- Produces: application/json
Required | Name | Type | Datatype | Description |
---|---|---|---|---|
id | query | string | The ID of the Device Control Policy to search for members of | |
filter | query | string | The filter expression that should be used to limit the results | |
offset | query | integer | The offset to start retrieving records from | |
limit | query | integer | The maximum records to return. [1-5000] | |
sort | query | string | The property to sort by |
from falconpy import device_control_policies as FalconDCP
falcon = FalconDCP.Device_Control_Policies(creds={
'client_id': falcon_client_id,
'client_secret': falcon_client_secret
})
PARAMS = {
'id': 'string',
'filter': 'string',
'offset': integer,
'limit': integer,
'sort': 'string'
}
response = falcon.queryDeviceControlPolicyMembers(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 = {
'id': 'string',
'filter': 'string',
'offset': integer,
'limit': integer,
'sort': 'string'
}
response = falcon.command('queryDeviceControlPolicyMembers', parameters=PARAMS)
print(response)
falcon.deauthenticate()
Search for Device Control Policies in your environment by providing an FQL filter and paging details. Returns a set of Device Control Policy IDs which match the filter criteria
- Produces: application/json
Required | Name | Type | Datatype | Description |
---|---|---|---|---|
filter | query | string | The filter expression that should be used to limit the results | |
offset | query | integer | The offset to start retrieving records from | |
limit | query | integer | The maximum records to return. [1-5000] | |
sort | query | string | The property to sort by |
from falconpy import device_control_policies as FalconDCP
falcon = FalconDCP.Device_Control_Policies(creds={
'client_id': falcon_client_id,
'client_secret': falcon_client_secret
})
PARAMS = {
'filter': 'string',
'offset': integer,
'limit': integer,
'sort': 'string'
}
response = falcon.queryDeviceControlPolicies(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': integer,
'limit': integer,
'sort': 'string'
}
response = falcon.command('queryDeviceControlPolicies', 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
- ASPM
- CAO Hunting
- Certificate Based Exclusions
- Cloud AWS Registration
- Cloud Azure Registration
- Cloud OCI Registration
- Cloud Connect AWS (deprecated)
- Cloud Security Assets
- Cloud Snapshots
- Configuration Assessment
- Configuration Assessment Evaluation Logic
- Container Alerts
- Container Detections
- Container Image Compliance
- Container Images
- Container Packages
- Container Vulnerabilities
- Content Update Policies
- Correlation Rules
- CSPM Registration
- Custom IOAs
- Custom Storage
- D4C Registration (deprecated)
- DataScanner (deprecated)
- Delivery Settings
- Deployments
- Detects
- Device Content
- Device Control Policies
- Discover
- Downloads
- Drift Indicators
- Event Streams
- Exposure Management
- FaaS Execution
- Falcon Complete Dashboard
- Falcon Container
- Falcon Intelligence Sandbox
- FDR
- FileVantage
- Firewall Management
- Firewall Policies
- Foundry LogScale
- Host Group
- Host Migration
- Hosts
- Identity Protection
- Image Assessment Policies
- Incidents
- Installation Tokens
- Intel
- Intelligence Feeds
- Intelligence Indicator Graph
- IOA Exclusions
- IOC
- IOCs (deprecated)
- Kubernetes Protection
- MalQuery
- Message Center
- ML Exclusions
- Mobile Enrollment
- MSSP (Flight Control)
- NGSIEM
- OAuth2
- ODS (On Demand Scan)
- Overwatch Dashboard
- Prevention Policy
- Quarantine
- Quick Scan
- Quick Scan Pro
- 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 Usage
- Sensor Visibility Exclusions
- Serverless Vulnerabilities
- 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