|
| 1 | +--- |
| 2 | +title: CrowdStrike |
| 3 | +description: Search Falcon sensors, CrowdScore, incidents, and behaviors |
| 4 | +--- |
| 5 | + |
| 6 | +import { BlockInfoCard } from "@/components/ui/block-info-card" |
| 7 | + |
| 8 | +<BlockInfoCard |
| 9 | + type="crowdstrike" |
| 10 | + color="#E01F3D" |
| 11 | +/> |
| 12 | + |
| 13 | +## Usage Instructions |
| 14 | + |
| 15 | +Integrate CrowdStrike Falcon into workflows to search identity sensors, environment CrowdScore, incidents, and behaviors using documented Falcon query endpoints. |
| 16 | + |
| 17 | + |
| 18 | + |
| 19 | +## Tools |
| 20 | + |
| 21 | +### `crowdstrike_query_behaviors` |
| 22 | + |
| 23 | +Search CrowdStrike behaviors by filter, sort order, and pagination |
| 24 | + |
| 25 | +#### Input |
| 26 | + |
| 27 | +| Parameter | Type | Required | Description | |
| 28 | +| --------- | ---- | -------- | ----------- | |
| 29 | +| `clientId` | string | Yes | CrowdStrike Falcon API client ID | |
| 30 | +| `clientSecret` | string | Yes | CrowdStrike Falcon API client secret | |
| 31 | +| `cloud` | string | Yes | CrowdStrike Falcon cloud region | |
| 32 | +| `filter` | string | No | Falcon Query Language filter for behavior search | |
| 33 | +| `limit` | number | No | Maximum number of behavior records to return | |
| 34 | +| `offset` | number | No | Pagination offset for the behavior query | |
| 35 | +| `sort` | string | No | Sort expression for behavior results | |
| 36 | + |
| 37 | +#### Output |
| 38 | + |
| 39 | +| Parameter | Type | Description | |
| 40 | +| --------- | ---- | ----------- | |
| 41 | +| `behaviors` | array | Matching CrowdStrike behavior records | |
| 42 | +| ↳ `behaviorId` | string | Behavior identifier | |
| 43 | +| ↳ `incidentId` | string | Parent incident identifier | |
| 44 | +| ↳ `name` | string | Behavior name | |
| 45 | +| ↳ `createdTimestamp` | string | Behavior creation timestamp | |
| 46 | +| `count` | number | Number of behaviors returned | |
| 47 | +| `pagination` | json | Pagination metadata \(offset, limit, total, expiresAt\) | |
| 48 | +| ↳ `expiresAt` | number | Pagination cursor expiry timestamp | |
| 49 | +| ↳ `limit` | number | Page size used for the query | |
| 50 | +| ↳ `offset` | number | Offset returned by CrowdStrike | |
| 51 | +| ↳ `total` | number | Total records available | |
| 52 | + |
| 53 | +### `crowdstrike_query_crowdscore` |
| 54 | + |
| 55 | +Retrieve environment-wide CrowdScore entities from CrowdStrike Falcon |
| 56 | + |
| 57 | +#### Input |
| 58 | + |
| 59 | +| Parameter | Type | Required | Description | |
| 60 | +| --------- | ---- | -------- | ----------- | |
| 61 | +| `clientId` | string | Yes | CrowdStrike Falcon API client ID | |
| 62 | +| `clientSecret` | string | Yes | CrowdStrike Falcon API client secret | |
| 63 | +| `cloud` | string | Yes | CrowdStrike Falcon cloud region | |
| 64 | +| `filter` | string | No | Falcon Query Language filter for CrowdScore search | |
| 65 | +| `limit` | number | No | Maximum number of CrowdScore records to return | |
| 66 | +| `offset` | number | No | Pagination offset for CrowdScore results | |
| 67 | +| `sort` | string | No | Sort expression for CrowdScore results | |
| 68 | + |
| 69 | +#### Output |
| 70 | + |
| 71 | +| Parameter | Type | Description | |
| 72 | +| --------- | ---- | ----------- | |
| 73 | +| `crowdScores` | array | CrowdStrike CrowdScore entities | |
| 74 | +| ↳ `entityId` | string | Entity identifier | |
| 75 | +| ↳ `entityType` | string | Entity type | |
| 76 | +| ↳ `lastUpdated` | string | Last update timestamp | |
| 77 | +| ↳ `score` | number | CrowdScore value | |
| 78 | +| `count` | number | Number of CrowdScore records returned | |
| 79 | +| `pagination` | json | Pagination metadata \(offset, limit, total, expiresAt\) | |
| 80 | +| ↳ `expiresAt` | number | Pagination cursor expiry timestamp | |
| 81 | +| ↳ `limit` | number | Page size used for the query | |
| 82 | +| ↳ `offset` | number | Offset returned by CrowdStrike | |
| 83 | +| ↳ `total` | number | Total records available | |
| 84 | + |
| 85 | +### `crowdstrike_query_incidents` |
| 86 | + |
| 87 | +Search CrowdStrike incidents by filter, sort order, and pagination |
| 88 | + |
| 89 | +#### Input |
| 90 | + |
| 91 | +| Parameter | Type | Required | Description | |
| 92 | +| --------- | ---- | -------- | ----------- | |
| 93 | +| `clientId` | string | Yes | CrowdStrike Falcon API client ID | |
| 94 | +| `clientSecret` | string | Yes | CrowdStrike Falcon API client secret | |
| 95 | +| `cloud` | string | Yes | CrowdStrike Falcon cloud region | |
| 96 | +| `filter` | string | No | Falcon Query Language filter for incident search | |
| 97 | +| `limit` | number | No | Maximum number of incident records to return | |
| 98 | +| `offset` | number | No | Pagination offset for the incident query | |
| 99 | +| `sort` | string | No | Sort expression for incident results | |
| 100 | + |
| 101 | +#### Output |
| 102 | + |
| 103 | +| Parameter | Type | Description | |
| 104 | +| --------- | ---- | ----------- | |
| 105 | +| `incidents` | array | Matching CrowdStrike incident records | |
| 106 | +| ↳ `incidentId` | string | Incident identifier | |
| 107 | +| ↳ `name` | string | Incident name | |
| 108 | +| ↳ `createdTimestamp` | string | Incident creation timestamp | |
| 109 | +| ↳ `status` | string | Incident status | |
| 110 | +| ↳ `severity` | string | Incident severity | |
| 111 | +| `count` | number | Number of incidents returned | |
| 112 | +| `pagination` | json | Pagination metadata \(offset, limit, total, expiresAt\) | |
| 113 | +| ↳ `expiresAt` | number | Pagination cursor expiry timestamp | |
| 114 | +| ↳ `limit` | number | Page size used for the query | |
| 115 | +| ↳ `offset` | number | Offset returned by CrowdStrike | |
| 116 | +| ↳ `total` | number | Total records available | |
| 117 | + |
| 118 | +### `crowdstrike_query_sensors` |
| 119 | + |
| 120 | +Search CrowdStrike identity protection sensors by hostname, IP, or related fields |
| 121 | + |
| 122 | +#### Input |
| 123 | + |
| 124 | +| Parameter | Type | Required | Description | |
| 125 | +| --------- | ---- | -------- | ----------- | |
| 126 | +| `clientId` | string | Yes | CrowdStrike Falcon API client ID | |
| 127 | +| `clientSecret` | string | Yes | CrowdStrike Falcon API client secret | |
| 128 | +| `cloud` | string | Yes | CrowdStrike Falcon cloud region | |
| 129 | +| `filter` | string | No | Falcon Query Language filter for identity sensor search | |
| 130 | +| `limit` | number | No | Maximum number of sensor records to return | |
| 131 | +| `offset` | number | No | Pagination offset for the identity sensor query | |
| 132 | +| `sort` | string | No | Sort expression for identity sensor results | |
| 133 | + |
| 134 | +#### Output |
| 135 | + |
| 136 | +| Parameter | Type | Description | |
| 137 | +| --------- | ---- | ----------- | |
| 138 | +| `sensors` | array | Matching CrowdStrike identity sensor records | |
| 139 | +| ↳ `agentId` | string | Sensor agent identifier | |
| 140 | +| ↳ `hostname` | string | Sensor hostname | |
| 141 | +| ↳ `ipAddress` | string | Sensor IP address | |
| 142 | +| ↳ `macAddress` | string | Sensor MAC address | |
| 143 | +| `count` | number | Number of sensors returned | |
| 144 | +| `pagination` | json | Pagination metadata \(offset, limit, total, expiresAt\) | |
| 145 | +| ↳ `expiresAt` | number | Pagination cursor expiry timestamp | |
| 146 | +| ↳ `limit` | number | Page size used for the query | |
| 147 | +| ↳ `offset` | number | Offset returned by CrowdStrike | |
| 148 | +| ↳ `total` | number | Total records available | |
| 149 | + |
| 150 | + |
0 commit comments