CyberArk Audit Source

The CyberArk Identity Security platform is a comprehensive identity management solution that enhances enterprise security through features such as single sign-on, multi-factor authentication, and privileged access control. It streamlines identity operations while providing extensive protection against both external and internal cyber threats.
The Audit service offers detailed audit trails for activities, events, and sessions conducted by any integrated service on the Shared Services platform. An audit trail is a recorded history of activities that have taken place within the system. This information can be utilized for various purposes, including security, regulatory compliance, incident response investigations, and troubleshooting.
Data collected​
Polling Interval | Data |
---|---|
5 minutes | Audits |
Setup​
Vendor configuration​
In this configuration, you will set up a CyberArk audit source and configure it to be authorized and authenticated to use CyberArk Audit SIEM API. CyberArk audit supports OAuth authentication.
Follow the instructions mentioned in the CyberArk Documentation to retrieve the following parameters to configure the CyberArk audit source.
- Identity Id
- App Id
- Username(Client ID)
- Password(Client Secret)
- Tenant URL
- API Key
Source configuration​
When you create a CyberArk Audit Source, you add it to a Hosted Collector. Before creating the Source, identify the Hosted Collector you want to use or create a new Hosted Collector. For instructions, see Configure a Hosted Collector.
To configure a CyberArk Audit source, follow the steps below:
- Classic UI. In the main Sumo Logic menu, select Manage Data > Collection > Collection.
New UI. In the Sumo Logic top menu select Configuration, and then under Data Collection select Collection. You can also click the Go To... menu at the top of the screen and select Collection. - On the Collection page, click Add Source next to a Hosted Collector.
- Search for and select CyberArk Audit.
- Name. Enter a name to display for the source. The description is optional.
- (Optional) For Source Category, enter any string to tag the output collected from the source. Category metadata is stored in a searchable field called
_sourceCategory
. - (Optional) Fields. Click the +Add button to define the fields you want to associate. Each field needs a name (key) and value.
 A green circle with a check mark is shown when the field exists in the Fields table schema.
 An orange triangle with an exclamation point is shown when the field doesn't exist in the Fields table schema. In this case, an option to automatically add the nonexistent fields to the Fields table schema is provided. If a field is sent to Sumo Logic that does not exist in the Fields schema is ignored, known as dropped.
- Identity ID. Enter your identity ID collected from the Vendor configuration section. For example,
ac212
. - Web Application ID. Enter your application ID collected from the Vendor configuration section. For example,
sumologic
. - Username. Enter your username(client-id) collected from the Vendor configuration section. For example,
user@cyberark.cloud.1234
. - Password. Enter your password(client-secret) collected from the Vendor configuration section.
- Tenant URL. Enter your tenant URL collected from the Vendor configuration section. For example,
https://sumologic.audit.cyberark.cloud
. - API Key. Enter your API key collected from the Vendor configuration section.
- (Optional) Service Type. Enter the service types to filter the audits.
- (Optional) Status Type. Enter the status types to filter the audits.
- (Optional) Action Type. Enter the action types to filter the audits.
- Polling Interval. The polling interval is the frequency at which the CyberArk Audit C2C source will check for updates from the CyberArk Audit API. By default, the polling interval is set to 5 minutes.
- (Optional) Processing Rules for Logs. Configure any desired filters, such as allowlist, denylist, hash, or mask, as described in Create a Processing Rule.
- When you are finished configuring the Source, click Save.
JSON schema​
Sources can be configured using UTF-8 encoded JSON files with the Collector Management API. See how to use JSON to configure Sources for details.Â
Parameter | Type | Value | Required | Description |
---|---|---|---|---|
schemaRef | JSON Object | {“type”: “CyberArk Audit”} | Yes | Define the specific schema type. |
sourceType | String | "Universal" | Yes | Type of source. |
config | JSON Object | Configuration object | Yes | Source type specific values. |
Configuration Object​
Parameter | Type | Required | Default | Description | Example |
---|---|---|---|---|---|
name | String | Yes | null | Type a desired name of the source. The name must be unique per Collector. This value is assigned to the metadata field _source . | "mySource" |
description | String | No | null | Type a description of the source. | "Testing source" |
category | String | No | null | Type a category of the source. This value is assigned to the metadata field _sourceCategory . See best practices for details. | "mySource/test" |
fields | JSON Object | No | null | JSON map of key-value fields (metadata) to apply to the collector or source. Use the boolean field _siemForward to enable forwarding to SIEM. | {"_siemForward": false, "fieldA": "valueA"} |
identityId | String | Yes | null | Identity ID for your CyberArk account. | ac212 |
appId | String | Yes | null | App ID for your CyberArk account. | sumologic |
username | String | Yes | null | Username(Client ID) for your configured server. | myuser@cyberark.cloud.1234 |
password | String | Yes | null | Password for your configured server. | |
tenantURL | String | Yes | null | Tenant URL for your configured server. | https://sumologic.audit.cyberark.cloud |
apiKey | String | Yes | null | API key for your configured server. | |
serviceType | Array | No | null | Type of audit services to filter data from. | |
statusType | Array | No | null | Type of audit statuses to filter data from. | |
actionType | Array | No | null | Type of audit actions to filter data from. | |
pollingIntervalMin | integer | Yes | 5 minutes | Frequency of C2C updates from CyberArk Audit. |
JSON example​
{
"api.version": "v1",
"source": {
"config": {
"name": "CyberArkAudit",
"identityId": "ac212",
"appId": "sumologic",
"username": "user@cyberark.cloud.1234",
"password": "******",
"tenantURL": "https://sumologic.audit.cyberark.cloud",
"apiKey": "*******",
"serviceType": [],
"statusType": [],
"actionType": [],
"pollingIntervalMin": 5
},
"schemaRef": {
"type": "CyberArk Audit"
},
"sourceType": "Universal"
}
}
Terraform example​
resource "sumologic_cloud_to_cloud_source" "cyberark_audit_test_source" {
collector_id = sumologic_collector.collector.id
schema_ref = {
type = "CyberArk Audit"
}
config = jsonencode({
"name": "CyberArkAudit",
"identityId": "ac212",
"appId": "sumologic",
"username": "user@cyberark.cloud.1234",
"password": "******",
"tenantURL": "https://sumologic.audit.cyberark.cloud",
"apiKey": "*******",
"serviceType": [],
"statusType": [],
"actionType": [],
"pollingIntervalMin": 5
})
}
resource "sumologic_collector" "collector" {
name = "my-collector"
description = "Just testing this"
}
FAQ​
Click here for more information about Cloud-to-Cloud sources.