Questo documento spiega come importare i log di Automation Anywhere in Google Security Operations utilizzando un agente Bindplane. Il parser estrae le informazioni chiave dai log in formato SYSLOG + KV, le trasforma in un formato strutturato e le mappa ai campi Unified Data Model (UDM), consentendo l'analisi della sicurezza standardizzata e la correlazione degli eventi. Si concentra in particolare sull'identificazione delle azioni degli utenti, delle interazioni con le risorse e dei risultati di sicurezza dai dati di log.
Prima di iniziare
Assicurati di avere un'istanza Google SecOps.
Assicurati di utilizzare Windows 2016 o versioni successive oppure un host Linux con systemd.
Se l'esecuzione avviene tramite un proxy, assicurati che le porte del firewall siano aperte.
Assicurati di disporre dell'accesso con privilegi ad Automation Anywhere.
Recuperare il file di autenticazione importazione di Google SecOps
Accedi alla console Google SecOps.
Vai a Impostazioni SIEM > Agenti di raccolta.
Scarica il file di autenticazione importazione. Salva il file in modo sicuro sul sistema in cui verrà installato Bindplane.
Recuperare l'ID cliente Google SecOps
Accedi alla console Google SecOps.
Vai a Impostazioni SIEM > Profilo.
Copia e salva l'ID cliente dalla sezione Dettagli dell'organizzazione.
Installa l'agente Bindplane
Installazione di Windows
Apri il prompt dei comandi o PowerShell come amministratore.
Configura l'agente Bindplane per importare Syslog e inviarli a Google SecOps
Accedi al file di configurazione:
Individua il file config.yaml. In genere, si trova nella directory /etc/bindplane-agent/ su Linux o nella directory di installazione su Windows.
Apri il file utilizzando un editor di testo (ad esempio nano, vi o Blocco note).
Modifica il file config.yaml come segue:
receivers:udplog:# Replace the port and IP address as requiredlisten_address:"0.0.0.0:514"exporters:chronicle/chronicle_w_labels:compression:gzip# Adjust the path to the credentials file you downloaded in Step 1creds:'/path/to/ingestion-authentication-file.json'# Replace with your actual customer ID from Step 2customer_id:<customer_id>
endpoint:malachiteingestion-pa.googleapis.com# Add optional ingestion labels for better organizationingestion_labels:log_type:AUTOMATION_ANYWHEREraw_log_field:bodyservice:pipelines:logs/source0__chronicle_w_labels-0:receivers:-udplogexporters:-chronicle/chronicle_w_labels
Sostituisci la porta e l'indirizzo IP in base alle esigenze della tua infrastruttura.
Sostituisci <customer_id> con l'ID cliente effettivo.
Riavvia l'agente Bindplane per applicare le modifiche
Per riavviare l'agente Bindplane in Linux, esegui questo comando:
sudosystemctlrestartbindplane-agent
Per riavviare l'agente Bindplane in Windows, puoi utilizzare la console Servizi o inserire il seguente comando:
net stop BindPlaneAgent && net start BindPlaneAgent
Configurare Syslog su Automation Anywhere
Accedi all'interfaccia utente web di Automation Anywhere Control Room.
Vai ad Amministrazione > Impostazioni > Impostazioni di rete.
Fai clic sul segno più (+).
Fornisci i dettagli di configurazione di Syslog:
Server Syslog: indirizzo IP di Bindplane.
Port (Porta): numero di porta Bindplane (ad esempio, 514 per UDP).
Protocollo: seleziona UDP.
(Facoltativo) Connessione sicura utente: questa configurazione è disponibile solo per la comunicazione TCP.
Fai clic su Salva modifiche.
Tabella di mappatura UDM
Campo log
Mappatura UDM
Logic
ATTIVITÀ ALLE
metadata.event_timestamp
Il timestamp dell'evento viene estratto dal campo ACTIVITY AT nel log non elaborato.
AZIONE ESEGUITA DA
target.user.userid
L'utente che ha eseguito l'azione viene estratto dal campo ACTION TAKEN BY nel log non elaborato.
TIPO DI AZIONE
security_result.summary
Un riepilogo dell'azione intrapresa viene estratto dal campo ACTION TYPE nel log non elaborato.
NOME ARTICOLO
target.file.full_path
Il nome del file o dell'elemento coinvolto nell'evento viene estratto dal campo ITEM NAME nel log non elaborato.
ID RICHIESTA
target.user.product_object_id
Un identificatore univoco per la richiesta viene estratto dal campo REQUEST ID nel log non elaborato.
ORIGINE
metadata.product_event_type
L'origine dell'evento viene presa dal campo SOURCE nel log non elaborato.
DISPOSITIVO DI ORIGINE
target.hostname | target.ip
Se il campo SOURCE DEVICE contiene un indirizzo IP valido, viene mappato a target.ip. In caso contrario, viene mappato su target.hostname.
STATO
security_result.action
L'azione di sicurezza (ALLOW, BLOCK, UNKNOWN_ACTION) viene determinata in base al campo STATUS nel log non elaborato: Successful corrisponde ad ALLOW, Unsuccessful corrisponde a BLOCK e Unknown corrisponde a UNKNOWN_ACTION.
-
metadata.event_type
Il tipo di evento viene determinato in base al campo ACTION TYPE nel log non elaborato utilizzando una serie di corrispondenze con espressioni regolari. Se non viene trovata alcuna corrispondenza, il valore predefinito è GENERIC_EVENT.
-
metadata.log_type
Imposta su AUTOMATION_ANYWHERE.
-
metadata.product_name
Imposta su AUTOMATION_ANYWHERE.
-
metadata.vendor_name
Imposta su AUTOMATION_ANYWHERE.
-
extensions.auth
Viene aggiunto un oggetto vuoto per gli eventi USER_LOGIN.
[[["Facile da capire","easyToUnderstand","thumb-up"],["Il problema è stato risolto","solvedMyProblem","thumb-up"],["Altra","otherUp","thumb-up"]],[["Difficile da capire","hardToUnderstand","thumb-down"],["Informazioni o codice di esempio errati","incorrectInformationOrSampleCode","thumb-down"],["Mancano le informazioni o gli esempi di cui ho bisogno","missingTheInformationSamplesINeed","thumb-down"],["Problema di traduzione","translationIssue","thumb-down"],["Altra","otherDown","thumb-down"]],["Ultimo aggiornamento 2025-09-04 UTC."],[],[],null,["# Collect Automation Anywhere logs\n================================\n\nSupported in: \nGoogle secops [SIEM](/chronicle/docs/secops/google-secops-siem-toc)\n| **Note:** This feature is covered by [Pre-GA Offerings Terms](https://chronicle.security/legal/service-terms/) of the Google Security Operations Service Specific Terms. Pre-GA features might have limited support, and changes to pre-GA features might not be compatible with other pre-GA versions. For more information, see the [Google SecOps Technical Support Service guidelines](https://chronicle.security/legal/technical-support-services-guidelines/) and the [Google SecOps Service Specific Terms](https://chronicle.security/legal/service-terms/).\n\nThis document explains how you to ingest Automation Anywhere logs to Google Security Operations by using a Bindplane agent. The parser extracts key information from SYSLOG + KV format logs, transforms it into a structured format, and maps it to the Unified Data Model (UDM) fields, enabling standardized security analysis and event correlation. It specifically focuses on identifying user actions, resource interactions, and security outcomes from the log data.\n\nBefore you begin\n----------------\n\n- Ensure that you have a Google SecOps instance.\n- Ensure that you are using Windows 2016 or later, or a Linux host with `systemd`.\n- If running behind a proxy, ensure firewall [ports](/chronicle/docs/ingestion/use-bindplane-agent#verify_the_firewall_configuration) are open.\n- Ensure that you have privileged access to Automation Anywhere.\n\n### Get Google SecOps ingestion authentication file\n\n1. Sign in to the Google SecOps console.\n2. Go to **SIEM Settings \\\u003e Collection Agents**.\n3. Download the **Ingestion Authentication File**. Save the file securely on the system where Bindplane will be installed.\n\nGet Google SecOps customer ID\n-----------------------------\n\n1. Sign in to the Google SecOps console.\n2. Go to **SIEM Settings \\\u003e Profile**.\n3. Copy and save the **Customer ID** from the **Organization Details** section.\n\nInstall the Bindplane agent\n---------------------------\n\n### Windows installation\n\n1. Open the **Command Prompt** or **PowerShell** as an administrator.\n2. Run the following command:\n\n msiexec /i \"https://github.com/observIQ/bindplane-agent/releases/latest/download/observiq-otel-collector.msi\" /quiet\n\n### Linux installation\n\n1. Open a terminal with root or sudo privileges.\n2. Run the following command:\n\n sudo sh -c \"$(curl -fsSlL https://github.com/observiq/bindplane-agent/releases/latest/download/install_unix.sh)\" install_unix.sh\n\n### Additional installation resources\n\n- For additional installation options, consult this [installation guide](/chronicle/docs/ingestion/use-bindplane-agent#install_the_bindplane_agent).\n\nConfigure the Bindplane agent to ingest Syslog and send to Google SecOps\n------------------------------------------------------------------------\n\n1. Access the configuration file:\n\n 1. Locate the `config.yaml` file. Typically, it's in the `/etc/bindplane-agent/` directory on Linux or in the installation directory on Windows.\n 2. Open the file using a text editor (for example, `nano`, `vi`, or Notepad).\n2. Edit the `config.yaml` file as follows:\n\n receivers:\n udplog:\n # Replace the port and IP address as required\n listen_address: \"0.0.0.0:514\"\n\n exporters:\n chronicle/chronicle_w_labels:\n compression: gzip\n # Adjust the path to the credentials file you downloaded in Step 1\n creds: '/path/to/ingestion-authentication-file.json'\n # Replace with your actual customer ID from Step 2\n customer_id: \u003ccustomer_id\u003e\n endpoint: malachiteingestion-pa.googleapis.com\n # Add optional ingestion labels for better organization\n ingestion_labels:\n log_type: AUTOMATION_ANYWHERE\n raw_log_field: body\n\n service:\n pipelines:\n logs/source0__chronicle_w_labels-0:\n receivers:\n - udplog\n exporters:\n - chronicle/chronicle_w_labels\n\n3. Replace the port and IP address as required in your infrastructure.\n\n4. Replace `\u003ccustomer_id\u003e` with the actual customer ID.\n\n5. Update `/path/to/ingestion-authentication-file.json` to the path where the authentication file was saved in the\n [Get Google SecOps ingestion authentication file](/chronicle/docs/ingestion/default-parsers/automation-anywhere#get-auth-file) section.\n\nRestart the Bindplane agent to apply the changes\n------------------------------------------------\n\n- To restart the Bindplane agent in Linux, run the following command:\n\n sudo systemctl restart bindplane-agent\n\n- To restart the Bindplane agent in Windows, you can either use the **Services** console or enter the following command:\n\n net stop BindPlaneAgent && net start BindPlaneAgent\n\nConfigure Syslog on Automation Anywhere\n---------------------------------------\n\n1. Sign in to the **Automation Anywhere Control Room** web UI.\n2. Go to **Administration \\\u003e Settings \\\u003e Network settings**.\n3. Click **plus (+)**.\n4. Provide the syslog configuration details:\n - **Syslog server**: Bindplane IP address.\n - **Port** : Bindplane port number (for example, `514` for **UDP**).\n - **Protocol** : Select **UDP**.\n - Optional: **User Secure Connection** : This configuration is available only for **TCP** communication.\n5. Click **Save changes**.\n\nUDM Mapping Table\n-----------------\n\n**Need more help?** [Get answers from Community members and Google SecOps professionals.](https://security.googlecloudcommunity.com/google-security-operations-2)"]]