Details
| ID | Vectra v2 |
|---|---|
| Provider | Vectra AI |
| Category | Network Security |
| From Version | 5.0.0 |
| Docker Image | demisto/python3:3.12.11.4819260 |
| Supported Modules | Agentix XSIAM |
README
Vectra is a detection product that alerts on suspicious network behavior. It can recognize certain known attacks and suspicious interactions on the network level (e.g. Reverse Shell, Port Scans, etc)
Detailed Description
-
Vectra API is available for administrators and developers to integrate Vectra's breach detection data into their applications. Vectra provides access to security event data, platform configuration, and health information via URI paths.
- Tested with API version 2.1.
- c_score and t_score fields changed to certainty and threat accordingly
Fetch Incidents
You can Fetch only Detections with Greater/Equal Certainty score and Threat score
Configure Vectra v2 on Cortex XSOAR
- Navigate to Settings > Integrations > Servers & Services.
- Search for Vectra v2.
-
Click Add instance to create and configure a new integration instance.
- Name: a textual name for the integration instance.
- Server URL (e.g. https://192.168.0.1)
- API Token
- First fetch time range ( , e.g., 1 hour, 30 minutes)</strong></li>
- Fetch only Detections with greater/equal Certainty score
- Fetch only Detections with greater/equal Threat score
- Fetch only Detections with matching State
- The number of results returned in each fetch
- Fetch incidents
- Trust any certificate (not secure)
- Incident type
- Use system proxy settings </ul> </li>
- Click Test to validate the new instance. </ol>
- vectra-get-detections: vectra-get-detections
- vectra-get-hosts: vectra-get-hosts
- vectra-triage: vectra-triage
- vectra-get-host-by-id: vectra-get-host-by-id
- vectra-get-detection-by-id: vectra-get-detection-by-id
- vectra-get-users: vectra-get-users
- vectra-get-proxies: vectra-get-proxies
- vectra-get-threatfeed: vectra-get-threatfeed
- vectra-search: vectra-search
Commands
You can execute these commands from the Cortex XSOAR CLI, as part of an automation, or in a playbook. After you successfully execute a command, a DBot message appears in the War Room with the command details.
1. vectra-get-detections
Detection objects contain all the information related to security events detected on the network
Base Command
vectra-get-detectionsInput
Argument Name Description Required detection_id Filter by detection ID Optional fields Filters objects listed Optional page Page number. Possible values are a positive integer or last Optional page_size Page size. Possible values are a positive integer or all Optional ordering Orders records by last timestamp, threat score and certainty score. The default out sorts threat and certainty score in ascending order. Scores can sorted in descending order by prepending the query with “minus” symbol Optional min_id >= the id provided Optional max_id <= the id provided Optional state filter by state: active, inactive, ignored, ignored for all Optional type_vname filter by the detection type (verbose name) Optional category filter by the detection category Optional src_ip filter by source (ip address) Optional threat_score filter by threat score Optional threat_score_gte filter by threat score >= the score provided Optional certainty_score filter by certainty score Optional certainty_score_gte filter by certainty score >= the score provided Optional last_timestamp filter by last timestamp Optional host_id filter by id of the host object a detection is attributed to Optional tags filter by a tag or a comma-separated list of tags Optional destination filter by destination in the detection detail set Optional proto filter by the protocol in the detection detail set Optional destination_port filter by the destination port in the detection detail set Optional inbound_ip filter by the inbound_ip in the relayed comm set Optional inbound_proto filter by the inbound_proto in the relayed comm set Optional inbound_port filter by the inbound_port in the relayed comm set Optional inbound_dns filter by the inbound_dns in the relayed comm set Optional outbound_ip filter by the outbound_ip in the relayed comm set Optional outbound_proto filter by the outbound_proto in the relayed comm set Optional outbound_port filter by the outbound_port in the relayed comm set Optional outbound_dns filter by the outbound_dns in the relayed_comm_set Optional dns_ip filter by the dns_ip in the dns_set Optional dns_request filter by the dns_request in the dns_set Optional resp_code filter by the resp_code in the dns_set Optional resp filter by the resp in the dns_set Optional Context Output
Path Type Description Vectra.Detection.Category String The category of the vname attack detected Vectra.Detection.TargetsKeyAsset Boolean Flag indicating if the host has a detection targeting a key asset Vectra.Detection.CertaintyScore Number The current certainty score correlated to this host Vectra.Detection.ID Number Object ID Vectra.Detection.FirstTimestamp String The timestamp when the event was first detected Vectra.Detection.LastTimestamp String The timestamp when the event was last detected Vectra.Detection.State String The state of the detection Vectra.Detection.Threat_Score Number The threat score attributed to the detection Vectra.Detection.SourceIP String The source IP address of the host attributed to the security event Vectra.Detection.SourceAccount Unknown A dictionary with fields that describe the Account the detection is from Command Example
!vectra-get-detections certainty_score_gte=20Context Example
{ "Vectra.Detection": [ { "Category": "LATERAL MOVEMENT", "CertaintyScore": 22, "Detection": "Automated Replication", "DetectionCategory": "LATERAL MOVEMENT", "DetectionType": "Automated Replication", "FirstTimestamp": "2019-10-02T22:05:34Z", "ID": 3, "LastTimestamp": "2019-10-02T22:12:39Z", "SourceHost": { "certainty": 0, "groups": [], "id": 9, "ip": "0.0.0.0", "is_key_asset": false, "name": "sandbox", "threat": 0, "url": "" }, "SourceIP": "0.0.0.0", "State": "inactive", "TargetsKeyAsset": false, "ThreatScore": 22 }, { "Category": "RECONNAISSANCE", "CertaintyScore": 80, "Detection": "Port Sweep", "DetectionCategory": "RECONNAISSANCE", "DetectionType": "Port Sweep", "FirstTimestamp": "2019-10-02T22:38:58Z", "ID": 5, "LastTimestamp": "2019-10-02T22:54:49Z", "SourceHost": { "certainty": 27, "groups": [], "id": 11, "ip": "0.0.0.0", "is_key_asset": false, "name": "Robert-MBP", "threat": 11, "url": "" }, "SourceIP": "0.0.0.0", "State": "active", "TargetsKeyAsset": false, "ThreatScore": 60 } ] }Human Readable Output
Detection table (Showing Page 1 out of 1)
id category src_ip threat certainty state detection detection_category detection_type first_timestamp tags targets_key_asset type_vname 3 LATERAL MOVEMENT 0.0.0.0 22 22 inactive Automated Replication LATERAL MOVEMENT Automated Replication 2019-10-02T22:05:34Z false 5 RECONNAISSANCE 0.0.0.0 60 80 active Port Sweep RECONNAISSANCE Port Sweep 2019-10-02T22:38:58Z false 2. vectra-get-hosts
Host information includes data that correlates the host data to detected security events
Base Command
vectra-get-hostsInput
Argument Name Description Required host_id Filter by host ID Optional fields Filters objects listed Optional page Page number. Possible values are a positive integer or last Optional page_size Page size. Possible values are a positive integer or all Optional ordering Orders records by last timestamp, threat score and certainty score. The default out sorts threat and certainty score in ascending order. Scores can sorted in descending order by prepending the query with “minus” symbol Optional name filter by name Optional state filter by state: active, inactive, suspended, ignored, ignored for all Optional last_source filter by last_source (ip address) Optional threat_score filter by threat score Optional threat_score_gte filter by threat score >= the score provided Optional certainty_score filter by certainty score Optional certainty_score_gte filter by certainty score >= the score provided Optional last_detection_timestamp filter by last_detection_timestamp Optional tags filter by a tag or a comma-separated list of tags (returns hosts that contain any of the tags specified), e.g.tags=baz | tags=foo,bar" Optional key_assest filter by key asset: True, False Optional mac_address filter by mac address Optional Context Output
Path Type Description Vectra.Host.Name String The learned hostname Vectra.Host.TargetsKeyAsset Boolean Flag indicating if the host has a detection targeting a key asset Vectra.Host.CertaintyScore Number The current certainty score correlated to this host Vectra.Host.DetectionID String List of Detections for Account Vectra.Host.KeyAsset Boolean Flag indicating if the host is a key asset Vectra.Host.State String The state of this host Vectra.Host.Threat_Score Number The current threat score correlated to this host Vectra.Host.LastDetection String Last detection activity from this host (Timestamp format: YYYY-MM-DD HH-MM-SS GMT) Vectra.Host.IP String Last source IP associated with this host Vectra.Host.ID Number ID of the Host Command Example
!vectra-get-hosts threat_score_gte=20Context Example
{ "Vectra.Host": [ { "ActiveTraffic": false, "CertaintyScore": 45, "DetectionID": [ "22", "23", "37", "42", "61", "62", "63", "64" ], "HostLuid": "duOUtBa4", "ID": 57, "IP": "0.0.0.0", "KeyAsset": true, "LastDetection": "2019-10-07T05:37:12Z", "LastDetectionTimestamp": "2019-10-07T05:37:12Z", "LastModified": "2019-10-03T07:04:06Z", "LastSource": "0.0.0.0", "Name": "leroy_brown", "Note": null, "OwnerName": "lbrown", "Severity": "low", "State": "active", "Tags": [], "ThreatScore": 34 }, { "ActiveTraffic": false, "CertaintyScore": 32, "DetectionID": [ "53", "56", "60" ], "HostLuid": "dwGUtBaK", "ID": 103, "IP": "0.0.0.0", "KeyAsset": false, "LastDetection": "2019-10-04T19:24:04Z", "LastDetectionTimestamp": "2019-10-04T19:24:04Z", "LastModified": "2019-10-04T12:40:38Z", "LastSource": "0.0.0.0", "Name": "winfs06r3u17", "Note": null, "OwnerName": null, "Severity": "low", "State": "active", "Tags": [], "ThreatScore": 22 } ] }Human Readable Output
Hosts table (Showing Page 1 out of 1)
id name state threat certainty last_source url assigned_to owner_name first_timestamp tags note 7 BThomas-Win7 active 23 33 0.0.0.0 demist.com/api/v2/hosts/7 bthomas 11 Robert-MBP active 25 46 0.0.0.0 demist.com/api/v2/hosts/11 rwilliams 3. vectra-triage
The rules branch can be used to retrieve a listing of configured Triage rules
Base Command
vectra-triageInput
There are no input arguments for this command.Context Output
Path Type Description Vectra.Rule.ID Unknown The record id Vectra.Rule.SmartCategory Unknown Custom Triage label used to recategorize specified detections Vectra.Rule.Description Unknown Name of Triage filter Vectra.Rule.Type Unknown Original detection type Vectra.Rule.Category Unknown Original detection category Vectra.Rule.Created Unknown The timestamp when this Triage filter was created Vectra.Rule.LastUpdate Unknown The timestamp when this Triage filter was triggered Vectra.Rule.Host.ID Unknown Host(s) that this Triage filter applies to Vectra.Rule.IP Unknown Host IP Vectra.Rule.Priority Unknown Used in ordering execution of Triage filters Vectra.Rule.Remote.IP Unknown Destination IP where this Triage filter will be applied to Vectra.Rule.Remote.Protocol Unknown Destination protocol where this Triage filter will be applied to Vectra.Rule.Remote.Port Unknown Destination port where this Triage filter will be applied to Vectra.Rule.Remote.DNS Unknown Destination FQDN where this Triage filter will apply to Vectra.Rule.Remote.Kerberos.Account Unknown Kerberos Account Vectra.Rule.Remote.Kerberos.Service Unknown Kerberos Service Command Example
!vectra-triageContext Example
No output examples
Human Readable Output
Couldn't find any results
4. vectra-get-host-by-id
Get host by id
Base Command
vectra-get-host-by-idInput
Argument Name Description Required host_id The id of the required host (Can get from vectra-get-hosts) Required Context Output
There are no context output for this command.Command Example
!vectra-get-host-by-id host_id=11Context Example
{ "Vectra.Host": [ { "CertaintyScore": 27, "Hostname": "Robert-MBP", "ID": 11, "IP": "0.0.0.0", "KeyAsset": false, "LastDetection": "2019-10-03T01:10:43Z", "State": "active", "TargetsKeyAsset": false, "ThreatScore": 11 } ] }Human Readable Output
Search results table
id threat certainty state first_timestamp 11 25 46 active 5. vectra-get-detection-by-id
Get detections by detetction id
Base Command
vectra-get-detection-by-idInput
Argument Name Description Required detection_id The id of the required detection (Can get from vectra-get-detections) Required
</p>6. vectra-get-users
Retrieves the current list of Users
Base Command
vectra-get-usersInput
Argument Name Description Required username Filter by username Optional role Filter by role Optional account_type Filter by account type (Local, Special, Limited Time Link, LDAP, TACACS) Optional authentication_profile Filter by authentication profile (LDAP or TACACS only) Optional last_login_gte Filters for User’s that have logged in since the given timestamp Optional Context Output
There are no context output for this command.Command Example
</p>!vectra-get-users7. vectra-get-proxies
Retrieves the current list of proxy IP addresses, or just one by Proxy ID
Base Command
vectra-get-proxiesInput
Argument Name Description Required proxy_id The id of the Proxy object Optional Context Output
Path Type Description Vectra.Proxy.Source String Whether the proxy was auto detected by Cognito or was added by user Vectra.Proxy.ID String The ID of the Proxy Vectra.Proxy.Source String Whether the proxy was auto detected by Cognito or was added by user Vectra.Proxy.ConsidersProxy String Whether to consider the object as a proxy or not Vectra.Proxy.Address String The proxy IP address Command Example
!vectra-get-proxiesContext Example
{}Human Readable Output
Couldn't find any results
8. vectra-get-threatfeed
Retrieves the current list of all ThreatFeeds, or just one by ThreatFeed ID
Base Command
vectra-get-threatfeedInput
Argument Name Description Required threatfeed_id The id of the ThreatFeed object Optional Context Output
Path Type Description Vectra.ThreatFeed.Category String The category in which the detection will fire if a match is observed with any indicator in the ThreatFeed Vectra.ThreatFeed.Name String The name of the ThreatFeed Vectra.ThreatFeed.Certainty String The default certainty to use for indicators in the STIX file Vectra.ThreatFeed.IndicatorType String The default indicatorType to use for the observables in the STIX file Vectra.ThreatFeed.Duration Number The default duration for which indicators in the ThreatFeed are valid Vectra.ThreatFeed.ID String The ID of the ThreatFeed Command Example
!vectra-get-threatfeedContext Example
{ "Vectra.ThreatFeed": [ { "Category": "exfil", "Certainty": "Medium", "Duration": 14, "ID": "50f897f3c9bdc606472e8d72348c3263", "IndicatorType": "Exfiltration", "Name": "Suspicious Domains" } ] }Human Readable Output
Rules table
id name certainty category duration indicatorType 50f897f3c9bdc606472e8d72348c3263 Suspicious Domains Medium exfil 14 Exfiltration 9. vectra-search
Advanced search on hosts and detections
Base Command
vectra-searchInput
Argument Name Description Required query_string The query that needs to be performed, e.g. `host.threat:>=50 and host.certainty:>=50` will find all hosts in the critical quadrant. `host.owner_name:bob` will find hosts with probable owner that contains the phrase “bob” in it. Required search_type The type of search to preform, can be either Hosts or Detections Required page_size Number of results returned per page. the default page_size is 50, max 5000 Optional Context Output
There are no context output for this command.Command Example
!vectra-search query_string="host.threat:>=20 and host.certainty:>=20" search_type=hostsContext Example
{ "Vectra.Host": [ { "Certainty_Score": 33, "Hostname": "BThomas-Win7", "ID": 7, "IP": "0.0.0.0", "KeyAsset": true, "LastDetection": "2019-10-03T05:56:31Z", "State": "active", "TargetsKeyAsset": false, "Threat_Score": 23 }, { "Certainty_Score": 46, "Hostname": "Robert-MBP", "ID": 11, "IP": "0.0.0.0", "KeyAsset": false, "LastDetection": "2019-10-03T01:10:43Z", "State": "active", "TargetsKeyAsset": false, "Threat_Score": 25 } ] }Human Readable Output
Search results table
# Replacement Commands Vectra has developed a new XSOAR content pack to replace the legacy Cortex XSOAR content pack. This new content pack includes commands that replace and extend the functionality of existing commands. The following table outlines which commands should be used for updating existing integrations. | Legacy Command | Replacement Command | |------------------------------|---------------------------------------------------| | `vectra-detections` | `vectra-search-detections` | | `vectra-get-detections` | `vectra-search-detections` | | `vectra-get-detection-by-id` | `vectra-detection-describe` | | `vectra-hosts` | `vectra-search-hosts` | | `vectra-get-hosts` | `vectra-search-hosts` | | `vectra-get-host-by-id` | `vectra-host-describe` | | `vectra-get-users` | `vectra-search-users` | | `vectra-search` | `vectra-search-hosts`, `vectra-search-detections` | # New Commands In addition to the replacement commands, new functionality is included with the current content pack. The following table outlines the new functionality provided. | Command | Command Description | |--------------------------------|-------------------------------------------------------------------| | `vectra-search-accounts` | Returns a list of Account objects | | `vectra-search-assignments` | Return a list of assignments | | `vectra-search-outcomes` | Returns a list of assignment outcomes | | `vectra-account-describe` | Returns a single Account details | | `vectra-account-add-tags` | Add tags to an Account | | `vectra-host-del-tags` | Delete tags from an Host | | `vectra-detection-get-pcap` | Returns a Detection's PCAP file (if available) | | `vectra-detection-markasfixed` | Marks/Unmarks a Detection as fixed by providing the Detection ID | | `vectra-detection-add-tags` | Add tags to a Detection | | `vectra-detection-del-tags` | Delete tags from a Detection | | `vectra-outcome-describe` | Returns a single outcome details | | `vectra-outcome-create` | Creates a new assignment outcome | | `vectra-assignment-describe` | Returns a single assignment details | | `vectra-assignment-assign` | Assigns an Account/Host entity to a Vectra User for investigation | | `vectra-assignment-resolve` | Resolves an assignment by selecting resolution scheme |id threat certainty state first_timestamp 7 23 33 active 11 25 46 active
Configuration parameters
server— Server URL (e.g., https://192.168.0.1) (required)token— API Token (required)first_fetch_time— First fetch time range (<number> <time unit>, e.g., 1 hour, 30 minutes)c_score_gte— Fetch only Detections with greater/equal Certainty scoret_score_gte— Fetch Detections with a threat score greater than or equal tostate— Fetch only Detections with matching Statefetch_size— The number of results returned in each fetchisFetch— Fetch incidentsinsecure— Trust any certificate (not secure)incidentType— Incident typeproxy— Use system proxy settings
Commands (9)
-
vectra-get-detection-by-idDeprecatedReturns detections by detection ID.
-
vectra-get-detectionsDeprecatedReturns a list of detection objects, which contain all the information related to security events detected on the network.
-
vectra-get-host-by-idDeprecatedReturns a host by ID.
-
vectra-get-hostsDeprecatedReturns host information, which includes data that correlates the host data to detected security events.
-
vectra-get-proxiesDeprecatedRetrieves the current list of proxy IP addresses, or single proxy IP address by proxy ID.
-
vectra-get-threatfeedDeprecatedRetrieves the current list of all ThreatFeeds, or single ThreatFeed by ThreatFeed ID.
-
vectra-get-usersDeprecatedRetrieves the current list of Users.
-
vectra-searchDeprecatedRuns an advanced search on hosts and detections.
-
vectra-triageDeprecatedThe rules branch can be used to retrieve a listing of configured Triage rules.
commonfields: id: Vectra v2 version: -1 name: Vectra v2 display: Vectra v2 (Deprecated) category: Network Security provider: Vectra AI description: Deprecated. Use Vectra Detect instead. configuration: - display: Server URL (e.g., https://192.168.0.1) name: server defaultvalue: "" type: 0 required: true - display: API Token name: token defaultvalue: "" type: 4 required: true - defaultvalue: 7 days display: First fetch time range (<number> <time unit>, e.g., 1 hour, 30 minutes) name: first_fetch_time type: 0 required: false - defaultvalue: '0' display: Fetch only Detections with greater/equal Certainty score name: c_score_gte type: 0 required: false - defaultvalue: '0' display: Fetch Detections with a threat score greater than or equal to name: t_score_gte type: 0 required: false - display: 'Fetch only Detections with matching State ' name: state defaultvalue: all type: 15 options: - all - ignored - active - inactive required: false - defaultvalue: '20' display: The number of results returned in each fetch name: fetch_size type: 0 required: false - display: Fetch incidents name: isFetch type: 8 required: false - display: Trust any certificate (not secure) name: insecure type: 8 required: false - display: Incident type name: incidentType type: 13 required: false - display: Use system proxy settings name: proxy type: 8 required: false script: script: '' type: python subtype: python3 commands: - name: vectra-get-detections arguments: - name: detection_id description: Filter by detection ID. - name: fields description: Filters objects listed. - name: page description: Page number. Possible values are a positive integer or "last". - name: page_size description: Page size. Possible values are a positive integer or "all". - name: ordering description: Orders records by last timestamp, threat score, and certainty score. The default out sorts threat and certainty score in ascending order. Scores can be sorted in descending order by pre-pending the query with minus symbol (-). - name: min_id description: 'Less than or equal to the specified ID.' - name: max_id description: Greater than or equal to the specified ID. - name: state description: 'Filters by state ("active", "inactive", "ignored" - for all).' auto: PREDEFINED predefined: - active - inactive - ignored - ignored for all - name: type_vname description: Filters by the detection type (verbose name). - name: category description: Filters. by the detection category. - name: src_ip description: Filters by the source (IP address). - name: threat_score description: Filters by the threat score. - name: threat_score_gte description: Filters by the threat score that is greater than or equal to the score provided. - name: certainty_score description: Filters by the certainty score. - name: certainty_score_gte description: Filters by the certainty score greater than or equal to the score provided. - name: last_timestamp description: Filters by last timestamp. - name: host_id description: Filters by the ID of the host object to which a detection is attributed. - name: tags description: Filters by a comma-separated list tags. - name: destination description: Filters by the destination in the detection detail set. - name: proto description: Filters by the protocol in the detection detail set. - name: destination_port description: Filters by the destination port in the detection detail set. - name: inbound_ip description: Filters by the inbound_ip in the relayed comm set. - name: inbound_proto description: Filters by the inbound_proto in the relayed comm set. - name: inbound_port description: Filters by the inbound_port in the relayed comm set. - name: inbound_dns description: Filters by the inbound_dns in the relayed comm set. - name: outbound_ip description: Filters by the outbound_ip in the relayed comm set. - name: outbound_proto description: Filters by the outbound_proto in the relayed comm set. - name: outbound_port description: Filters by the outbound_port in the relayed comm set. - name: outbound_dns description: Filters by the outbound_dns in the relayed comm set. - name: dns_ip description: Filters by the dns_ip in the dns set. - name: dns_request description: Filters by the dns_request in the dns set. - name: resp_code description: Filters by the resp_code in the dns set. - name: resp description: filter by the resp in the dns_set. outputs: - contextPath: Vectra.Detection.Category description: 'The category of the detected vname attack.' type: String - contextPath: Vectra.Detection.TargetsKeyAsset description: 'Flag indicating if the host has a detection targeting a key asset.' type: Boolean - contextPath: Vectra.Detection.CertaintyScore description: 'The current certainty score correlated to this host.' type: Number - contextPath: Vectra.Detection.ID description: 'Object ID.' type: Number - contextPath: Vectra.Detection.FirstTimestamp description: 'The timestamp when the event was first detected.' type: String - contextPath: Vectra.Detection.LastTimestamp description: 'The timestamp when the event was last detected.' type: String - contextPath: Vectra.Detection.State description: 'The state of the detection.' type: String - contextPath: Vectra.Detection.Threat_Score description: 'The threat score attributed to the detection.' type: Number - contextPath: Vectra.Detection.SourceIP description: 'The source IP address of the host attributed to the security event.' type: String - contextPath: Vectra.Detection.SourceAccount description: 'A dictionary with fields that describe the Account from which the detection originates.' description: Returns a list of detection objects, which contain all the information related to security events detected on the network. deprecated: true - name: vectra-get-hosts arguments: - name: host_id description: Filters by host ID. - name: fields description: Filters objects listed. - name: page description: Page number. Possible values are a positive integer or "last". - name: page_size description: Page size. Possible values are a positive integer or "all". - name: ordering description: Orders records by last timestamp, threat score, and certainty score. The default out sorts threat and certainty score in ascending order. Scores can sorted in descending order by pre-pending the query with minus symbol (-). - name: name description: Filters by name. - name: state description: 'Filters by state ("active", "inactive", "suspended", "ignored", "ignored" - for all).' auto: PREDEFINED predefined: - active - inactive - ignored - ignored for all - name: last_source description: Filters by the last_source (IP address). - name: threat_score description: Filters by the threat score. - name: threat_score_gte description: Filters by the threat score, greater than or equal to the score provided. - name: certainty_score description: filter by certainty score. - name: certainty_score_gte description: Filters by the certainty score, greater than or equal to the score provided. - name: last_detection_timestamp description: Filters by the last_detection_timestamp. - name: tags description: 'Filters by a comma-separated list of tags. Returns hosts that contain any of the tags specified, e.g., tags=baz | tags=foo,bar.' - name: key_assest description: 'Filters by the key asset. Can be "True" or "False".' - name: mac_address description: Filters by the MAC address. outputs: - contextPath: Vectra.Host.Name description: 'The learned hostname.' type: String - contextPath: Vectra.Host.TargetsKeyAsset description: 'Flag indicating if the host has a detection targeting a key asset.' type: Boolean - contextPath: Vectra.Host.CertaintyScore description: 'The current certainty score correlated to this host.' type: Number - contextPath: Vectra.Host.DetectionID description: 'List of Detections for Account.' type: String - contextPath: Vectra.Host.KeyAsset description: 'Flag indicating if the host is a key asset.' type: Boolean - contextPath: Vectra.Host.State description: 'The state of this host.' type: String - contextPath: Vectra.Host.Threat_Score description: 'The current threat score correlated to this host.' type: Number - contextPath: Vectra.Host.LastDetection description: 'Last detection activity from this host (Timestamp format: YYYY-MM-DD HH-MM-SS GMT).' type: String - contextPath: Vectra.Host.IP description: 'Last source IP address associated with this host.' type: String - contextPath: Vectra.Host.ID description: 'ID of the host.' type: Number description: Returns host information, which includes data that correlates the host data to detected security events. deprecated: true - name: vectra-triage arguments: [] outputs: - contextPath: Vectra.Rule.ID description: The record ID. - contextPath: Vectra.Rule.SmartCategory description: Custom Triage label used to re-categorize the specified detections. - contextPath: Vectra.Rule.Description description: Name of the Triage filter. - contextPath: Vectra.Rule.Type description: Original detection type. - contextPath: Vectra.Rule.Category description: Original detection category. - contextPath: Vectra.Rule.Created description: The timestamp when this Triage filter was created. - contextPath: Vectra.Rule.LastUpdate description: The timestamp when this Triage filter was triggered. - contextPath: Vectra.Rule.Host.ID description: The hosts to which this Triage filter applies. - contextPath: Vectra.Rule.IP description: Host IP address. - contextPath: Vectra.Rule.Priority description: Used in ordering execution of Triage filters. - contextPath: Vectra.Rule.Remote.IP description: Destination IP address to where this Triage filter will be applied. - contextPath: Vectra.Rule.Remote.Protocol description: Destination protocol to where this Triage filter will be applied. - contextPath: Vectra.Rule.Remote.Port description: Destination port to where this Triage filter will be applied. - contextPath: Vectra.Rule.Remote.DNS description: Destination FQDN to where this Triage filter will be applied. - contextPath: Vectra.Rule.Remote.Kerberos.Account description: Kerberos Account. - contextPath: Vectra.Rule.Remote.Kerberos.Service description: Kerberos Service. description: The rules branch can be used to retrieve a listing of configured Triage rules. deprecated: true - name: vectra-get-host-by-id arguments: - name: host_id required: true default: true description: The ID of the required host. Can be retrieved from the vectra-get-hosts command. description: Returns a host by ID. deprecated: true - name: vectra-get-detection-by-id arguments: - name: detection_id required: true default: true description: The ID of the required detection. Can be retrieve from the vectra-get-detections command. description: Returns detections by detection ID. deprecated: true - name: vectra-get-users description: Retrieves the current list of Users. arguments: - name: username description: 'Filters by username.' - name: role description: 'Filters by role.' - name: account_type description: 'Filters by account type (Local, Special, Limited Time Link, LDAP, TACACS).' - name: authentication_profile description: 'Filter by authentication profile (LDAP or TACACS only).' - name: last_login_gte description: 'Filters for users that have logged in since the given timestamp.' deprecated: true - name: vectra-get-proxies arguments: - name: proxy_id description: 'The ID of the Proxy object.' outputs: - contextPath: Vectra.Proxy.Source description: 'Whether the proxy was auto-detected by Cognito or was added by a user.' type: String - contextPath: Vectra.Proxy.ID description: 'The ID of the Proxy.' type: String - contextPath: Vectra.Proxy.Source description: 'Whether the proxy was auto-detected by Cognito or was added by a user.' type: String - contextPath: Vectra.Proxy.ConsidersProxy description: 'Whether to consider the object as a proxy.' type: String - contextPath: Vectra.Proxy.Address description: 'The proxy IP address.' type: String description: Retrieves the current list of proxy IP addresses, or single proxy IP address by proxy ID. deprecated: true - name: vectra-get-threatfeed arguments: - name: threatfeed_id description: 'The ID of the ThreatFeed object.' outputs: - contextPath: Vectra.ThreatFeed.Category description: 'The category in which the detection will fire if a match is observed with any indicator in the ThreatFeed.' type: String - contextPath: Vectra.ThreatFeed.Name description: 'The name of the ThreatFeed.' type: String - contextPath: Vectra.ThreatFeed.Certainty description: 'The default certainty to use for indicators in the STIX file.' type: String - contextPath: Vectra.ThreatFeed.IndicatorType description: 'The default indicatorType to use for the observables in the STIX file.' type: String - contextPath: Vectra.ThreatFeed.Duration description: 'The default duration for which indicators in the ThreatFeed are valid.' type: Number - contextPath: Vectra.ThreatFeed.ID description: 'The ID of the ThreatFeed.' type: String description: Retrieves the current list of all ThreatFeeds, or single ThreatFeed by ThreatFeed ID. deprecated: true - name: vectra-search arguments: - name: query_string required: true description: 'The query to perform, e.g., `host.threat:>=50 and host.certainty:>=50` will find all hosts in the critical quadrant. `host.owner_name:bob` will find hosts with probable owner that contains the phrase “bob” in it.' - name: search_type description: 'The type of search to perform. Can be "Hosts" or "Detections".' required: true auto: PREDEFINED predefined: - hosts - detections - name: page_size description: 'Number of results returned per page. The default page_size is 50, max. is 5000.' description: "Runs an advanced search on hosts and detections." deprecated: true isfetch: true dockerimage: demisto/python3:3.12.11.4819260 tests: - No tests (deprecated) fromversion: 5.0.0 deprecated: true