Certificate Based Exclusions - CrowdStrike/falconpy GitHub Wiki
| Operation ID | Description | ||||
|---|---|---|---|---|---|
|
Find all exclusion IDs matching the query with filter | ||||
|
Create new Certificate Based Exclusions. | ||||
|
Delete the exclusions by id | ||||
|
Updates existing Certificate Based Exclusions | ||||
|
Retrieves certificate signing information for a file | ||||
|
Search for cert-based exclusions. | ||||
WARNING
client_idandclient_secretare keyword arguments that contain your CrowdStrike API credentials. Please note that all examples below do not hard code these values. (These values are ingested as strings.)CrowdStrike does not recommend hard coding API credentials or customer identifiers within source code.
Find all exclusion IDs matching the query with filter.
get_exclusions
| Method | Route |
|---|---|
/exclusions/entities/cert-based-exclusions/v1 |
- Consumes: application/json
- Produces: application/json
| Name | Service | Uber | Type | Data type | Description |
|---|---|---|---|---|---|
| ids | query | string or list of strings | The ids of the exclusions to retrieve. | ||
| parameters | query | dictionary | Full query string parameters payload in JSON format. Not required when using other keywords. |
from falconpy import CertificateBasedExclusions
falcon = CertificateBasedExclusions(client_id=CLIENT_ID,
client_secret=CLIENT_SECRET
)
id_list = 'ID1,ID2,ID3' # Can also pass a list here: ['ID1', 'ID2', 'ID3']
response = falcon.get_exclusions(ids=id_list)
print(response)from falconpy import CertificateBasedExclusions
falcon = CertificateBasedExclusions(client_id=CLIENT_ID,
client_secret=CLIENT_SECRET
)
id_list = 'ID1,ID2,ID3' # Can also pass a list here: ['ID1', 'ID2', 'ID3']
response = falcon.cb_exclusions_get_v1(ids=id_list)
print(response)from falconpy import APIHarnessV2
falcon = APIHarnessV2(client_id=CLIENT_ID,
client_secret=CLIENT_SECRET
)
id_list = 'ID1,ID2,ID3' # Can also pass a list here: ['ID1', 'ID2', 'ID3']
response = falcon.command("cb_exclusions_get_v1", ids=id_list)
print(response)Back to Table of Contents
Create new Certificate Based Exclusions.
create_exclusions
| Method | Route |
|---|---|
/exclusions/entities/cert-based-exclusions/v1 |
- Consumes: application/json
- Produces: application/json
| Name | Service | Uber | Type | Data type | Description |
|---|---|---|---|---|---|
| applied_globally | body | boolean | Boolean flag indicating if this exclusion is applied globally. | ||
| body | body | dictionary | Full body payload in JSON format. | ||
| certificate | body | dictionary | Dictionary describing the certificate. | ||
| children_cids | body | string or list of strings | List of child CIDs to apply this exclusion to. | ||
| comment | body | string | Exclusion comment. | ||
| created_by | body | string | Exclusion created by. | ||
| created_on | body | string | Exclusion creation date. UTC date formatted string. | ||
| description | body | string | Exclusion description. | ||
| host_groups | body | string or list of strings | List of host groups to apply this exclusion to. | ||
| issuer | body | string | Certificate issuer. Overwritten if certificate keyword is provided. |
||
| modified_by | body | string | Exclusion modified by. | ||
| modified_on | body | string | Exclusion last modification date. UTC date formatted string. | ||
| name | body | string | Exclusion name. | ||
| serial | body | string | Certificate serial. Overwritten if certificate keyword is provided. |
||
| status | body | string | Exclusion status. | ||
| subject | body | string | Certificate subject. Overwritten if certificate keyword is provided. |
||
| thumbprint | body | string | Certificate thumbprint. Overwritten if certificate keyword is provided. |
||
| valid_from | body | string | Certificate valid from date. UTC date formatted string. Overwritten if certificate keyword is provided. |
||
| valid_to | body | string | Certificate valid to date. UTC date formatted string. Overwritten if certificate keyword is provided. |
from falconpy import CertificateBasedExclusions
falcon = CertificateBasedExclusions(client_id=CLIENT_ID,
client_secret=CLIENT_SECRET
)
child_ids = 'CID1,CID2,CID3' # Can also pass a list here: ['CID1', 'CID2', 'CID3']
host_group_ids = 'HGID1,HGID2,HGID3' # Can also pass a list here: ['HGID1', 'HGID2', 'HGID3']
response = falcon.create_exclusions(applied_globally=boolean,
children_cids=child_ids,
comment="string",
created_by="string",
created_on="string",
description="string",
host_groups=host_group_ids,
issuer="string",
modified_by="string",
modified_on="string",
name="string",
serial="string",
status="string",
subject="string",
thumbprint="string",
valid_from="string",
valid_to="string"
)
print(response)from falconpy import CertificateBasedExclusions
falcon = CertificateBasedExclusions(client_id=CLIENT_ID,
client_secret=CLIENT_SECRET
)
child_ids = 'CID1,CID2,CID3' # Can also pass a list here: ['CID1', 'CID2', 'CID3']
host_group_ids = 'HGID1,HGID2,HGID3' # Can also pass a list here: ['HGID1', 'HGID2', 'HGID3']
response = falcon.cb_exclusions_create_v1(applied_globally=boolean,
children_cids=child_ids,
comment="string",
created_by="string",
created_on="string",
description="string",
host_groups=host_group_ids,
issuer="string",
modified_by="string",
modified_on="string",
name="string",
serial="string",
status="string",
subject="string",
thumbprint="string",
valid_from="string",
valid_to="string"
)
print(response)from falconpy import APIHarnessV2
falcon = APIHarnessV2(client_id=CLIENT_ID,
client_secret=CLIENT_SECRET
)
child_ids = 'CID1,CID2,CID3' # Can also pass a list here: ['CID1', 'CID2', 'CID3']
host_group_ids = 'HGID1,HGID2,HGID3' # Can also pass a list here: ['HGID1', 'HGID2', 'HGID3']
body_payload = {
"exclusions": [
{
"applied_globally": boolean,
"certificate": {
"issuer": "string",
"serial": "string",
"subject": "string",
"thumbprint": "string",
"valid_from": "UTC string",
"valid_to": "UTC string"
},
"children_cids": [
"string"
],
"comment": "string",
"created_by": "string",
"created_on": "UTC string",
"description": "string",
"host_groups": [
"string"
],
"modified_by": "string",
"modified_on": "UTC string",
"name": "string",
"status": "string"
}
]
}
response = falcon.command("cb_exclusions_create_v1", body=body_payload)
print(response)Back to Table of Contents
Delete the exclusions by ID.
delete_exclusions
| Method | Route |
|---|---|
/exclusions/entities/cert-based-exclusions/v1 |
- Consumes: application/json
- Produces: application/json
| Name | Service | Uber | Type | Data type | Description |
|---|---|---|---|---|---|
| ids | query | string or list of strings | The IDs of the exclusions to delete. | ||
| comment | query | string | The comment why these exclusions were deleted. | ||
| parameters | query | dictionary | Full query string parameters payload in JSON format. Not required when using other keywords. |
from falconpy import CertificateBasedExclusions
falcon = CertificateBasedExclusions(client_id=CLIENT_ID,
client_secret=CLIENT_SECRET
)
id_list = 'ID1,ID2,ID3' # Can also pass a list here: ['ID1', 'ID2', 'ID3']
response = falcon.delete_exclusions(comment="string", ids=id_list)
print(response)from falconpy import CertificateBasedExclusions
falcon = CertificateBasedExclusions(client_id=CLIENT_ID,
client_secret=CLIENT_SECRET
)
id_list = 'ID1,ID2,ID3' # Can also pass a list here: ['ID1', 'ID2', 'ID3']
response = falcon.cb_exclusions_delete_v1(comment="string", ids=id_list)
print(response)from falconpy import APIHarnessV2
falcon = APIHarnessV2(client_id=CLIENT_ID,
client_secret=CLIENT_SECRET
)
PARAMS = {
"comment": "string"
}
id_list = 'ID1,ID2,ID3' # Can also pass a list here: ['ID1', 'ID2', 'ID3']
response = falcon.command("cb_exclusions_delete_v1", parameters=PARAMS, ids=id_list)
print(response)Back to Table of Contents
Updates existing Certificate Based Exclusions.
update_exclusions
| Method | Route |
|---|---|
/exclusions/entities/cert-based-exclusions/v1 |
- Consumes: application/json
- Produces: application/json
| Name | Service | Uber | Type | Data type | Description |
|---|---|---|---|---|---|
| applied_globally | body | boolean | Boolean flag indicating if this exclusion is applied globally. | ||
| body | body | dictionary | Full body payload in JSON format. | ||
| certificate | body | dictionary | Dictionary describing the certificate. | ||
| children_cids | body | string or list of strings | List of child CIDs to apply this exclusion to. | ||
| comment | body | string | Exclusion comment. | ||
| created_by | body | string | Exclusion created by. | ||
| created_on | body | string | Exclusion creation date. UTC date formatted string. | ||
| description | body | string | Exclusion description. | ||
| host_groups | body | string or list of strings | List of host groups to apply this exclusion to. | ||
| issuer | body | string | Certificate issuer. Overwritten if certificate keyword is provided. |
||
| modified_by | body | string | Exclusion modified by. | ||
| modified_on | body | string | Exclusion last modification date. UTC date formatted string. | ||
| name | body | string | Exclusion name. | ||
| serial | body | string | Certificate serial. Overwritten if certificate keyword is provided. |
||
| status | body | string | Exclusion status. | ||
| subject | body | string | Certificate subject. Overwritten if certificate keyword is provided. |
||
| thumbprint | body | string | Certificate thumbprint. Overwritten if certificate keyword is provided. |
||
| valid_from | body | string | Certificate valid from date. UTC date formatted string. Overwritten if certificate keyword is provided. |
||
| valid_to | body | string | Certificate valid to date. UTC date formatted string. Overwritten if certificate keyword is provided. |
from falconpy import CertificateBasedExclusions
falcon = CertificateBasedExclusions(client_id=CLIENT_ID,
client_secret=CLIENT_SECRET
)
child_ids = 'CID1,CID2,CID3' # Can also pass a list here: ['CID1', 'CID2', 'CID3']
host_group_ids = 'HGID1,HGID2,HGID3' # Can also pass a list here: ['HGID1', 'HGID2', 'HGID3']
response = falcon.update_exclusions(applied_globally=boolean,
children_cids=child_ids,
comment="string",
created_by="string",
created_on="string",
description="string",
host_groups=host_group_ids,
issuer="string",
modified_by="string",
modified_on="string",
name="string",
serial="string",
status="string",
subject="string",
thumbprint="string",
valid_from="string",
valid_to="string"
)
print(response)from falconpy import CertificateBasedExclusions
falcon = CertificateBasedExclusions(client_id=CLIENT_ID,
client_secret=CLIENT_SECRET
)
child_ids = 'CID1,CID2,CID3' # Can also pass a list here: ['CID1', 'CID2', 'CID3']
host_group_ids = 'HGID1,HGID2,HGID3' # Can also pass a list here: ['HGID1', 'HGID2', 'HGID3']
response = falcon.cb_exclusions_update_v1(applied_globally=boolean,
children_cids=child_ids,
comment="string",
created_by="string",
created_on="string",
description="string",
host_groups=host_group_ids,
issuer="string",
modified_by="string",
modified_on="string",
name="string",
serial="string",
status="string",
subject="string",
thumbprint="string",
valid_from="string",
valid_to="string"
)
print(response)from falconpy import APIHarnessV2
falcon = APIHarnessV2(client_id=CLIENT_ID,
client_secret=CLIENT_SECRET
)
child_ids = 'CID1,CID2,CID3' # Can also pass a list here: ['CID1', 'CID2', 'CID3']
host_group_ids = 'HGID1,HGID2,HGID3' # Can also pass a list here: ['HGID1', 'HGID2', 'HGID3']
body_payload = {
"resources": [
{
"applied_globally": boolean,
"certificate": {
"issuer": "string",
"serial": "string",
"subject": "string",
"thumbprint": "string",
"valid_from": "UTC string",
"valid_to": "UTC string"
},
"children_cids": child_ids,
"comment": "string",
"created_by": "string",
"created_on": "UTC string",
"description": "string",
"host_groups": host_group_ids,
"modified_by": "string",
"modified_on": "UTC string",
"name": "string",
"status": "string"
}
]
}
response = falcon.command("cb_exclusions_update_v1", body=body_payload)
print(response)Back to Table of Contents
Retrieves certificate signing information for a file
get_certificates
| Method | Route |
|---|---|
/exclusions/entities/certificates/v1 |
- Consumes: application/json
- Produces: application/json
| Name | Service | Uber | Type | Data type | Description |
|---|---|---|---|---|---|
| ids | query | string | The SHA256 hash of the file to retrieve certificate signing info for. | ||
| parameters | query | dictionary | Full query string parameters payload in JSON format. Not required when using other keywords. |
from falconpy import CertificateBasedExclusions
falcon = CertificateBasedExclusions(client_id=CLIENT_ID,
client_secret=CLIENT_SECRET
)
id_list = 'ID1,ID2,ID3' # Can also pass a list here: ['ID1', 'ID2', 'ID3']
response = falcon.get_certificates(ids=id_list)
print(response)from falconpy import CertificateBasedExclusions
falcon = CertificateBasedExclusions(client_id=CLIENT_ID,
client_secret=CLIENT_SECRET
)
id_list = 'ID1,ID2,ID3' # Can also pass a list here: ['ID1', 'ID2', 'ID3']
response = falcon.certificates_get_v1(ids=id_list)
print(response)from falconpy import APIHarnessV2
falcon = APIHarnessV2(client_id=CLIENT_ID,
client_secret=CLIENT_SECRET
)
id_list = 'ID1,ID2,ID3' # Can also pass a list here: ['ID1', 'ID2', 'ID3']
response = falcon.command("certificates_get_v1", ids=id_list)
print(response)Back to Table of Contents
Search for cert-based exclusions.
query_certificates
| Method | Route |
|---|---|
/exclusions/queries/cert-based-exclusions/v1 |
- Consumes: application/json
- Produces: application/json
| Name | Service | Uber | Type | Data type | Description |
|---|---|---|---|---|---|
| filter | query | string | The filter expression that should be used to limit the results. | ||
| limit | query | integer | The maximum records to return. [1-100] | ||
| offset | query | integer | The offset to start retrieving records from | ||
| parameters | query | dictionary | Full query string parameters payload in JSON format. Not required when using other keywords. | ||
| sort | query | string | The sort expression that should be used to sort the results. |
from falconpy import CertificateBasedExclusions
falcon = CertificateBasedExclusions(client_id=CLIENT_ID,
client_secret=CLIENT_SECRET
)
response = falcon.query_certificates(filter="string",
offset=integer,
limit=integer,
sort="string"
)
print(response)from falconpy import CertificateBasedExclusions
falcon = CertificateBasedExclusions(client_id=CLIENT_ID,
client_secret=CLIENT_SECRET
)
response = falcon.cb_exclusions_query_v1(filter="string",
offset=integer,
limit=integer,
sort="string"
)
print(response)from falconpy import APIHarnessV2
falcon = APIHarnessV2(client_id=CLIENT_ID,
client_secret=CLIENT_SECRET
)
response = falcon.command("cb_exclusions_query_v1",
filter="string",
offset=integer,
limit=integer,
sort="string"
)
print(response)Back to Table of Contents
