Collect Trellix Network Security Audit (formerly FireEye NX Audit) logs
This document explains how to ingest Trellix Network Security Audit (formerly known as FireEye NX Audit) logs to Google Security Operations using Bindplane.
Trellix Network Security is a network security appliance that detects and blocks attacks from the web, protecting against drive-by malware and highly targeted zero-day exploits. It leverages the Multi-Vector Virtual Execution (MVX) engine to identify malicious activity and command-and-control callbacks with extremely low false positive rates.
Before you begin
Make sure you have the following prerequisites:
- A Google SecOps instance.
- A Windows Server 2016 or later, or a Linux host with
systemd. - Network connectivity between the Bindplane agent and the FireEye NX Audit appliance.
- If running behind a proxy, ensure firewall ports are open per the Bindplane agent requirements.
- Privileged access to the FireEye NX Audit management console or appliance.
Get Google SecOps ingestion authentication file
- Sign in to the Google SecOps console.
- Go to SIEM Settings > Collection Agents.
- Download the Ingestion Authentication File.
- Save the file securely on the system where Bindplane will be installed.
Get Google SecOps customer ID
- Sign in to the Google SecOps console.
- Go to SIEM Settings > Profile.
- Copy and save the Customer ID from the Organization Details section.
Install the Bindplane agent
Install the Bindplane agent on your Windows or Linux operating system according to the following instructions.
Windows installation
- Open Command Prompt or PowerShell as an administrator.
Run the following command:
msiexec /i "[https://github.com/observIQ/bindplane-agent/releases/latest/download/observiq-otel-collector.msi](https://github.com/observIQ/bindplane-agent/releases/latest/download/observiq-otel-collector.msi)" /quietWait for the installation to complete.
Verify the installation by running:
sc query observiq-otel-collector
The service should show as RUNNING.
Linux installation
- Open a terminal with root or sudo privileges.
Run the following command:
sudo sh -c "$(curl -fsSlL [https://github.com/observiq/bindplane-agent/releases/latest/download/install_unix.sh](https://github.com/observiq/bindplane-agent/releases/latest/download/install_unix.sh))" install_unix.shWait for the installation to complete.
Verify the installation by running:
sudo systemctl status observiq-otel-collector
The service should show as active (running).
Additional installation resources
For additional installation options and troubleshooting, see the Bindplane agent installation guide.
Configure the Bindplane agent to ingest syslog and send to Google SecOps
Locate the configuration file
- Linux:
/etc/bindplane-agent/config.yaml - Windows:
C:\Program Files\observIQ OpenTelemetry Collector\config.yaml
Edit the configuration file
Replace the entire contents of
config.yamlwith the following configuration:receivers: udplog: listen_address: "0.0.0.0:514" exporters: chronicle/fireeye_nx: compression: gzip creds_file_path: '/etc/bindplane-agent/ingestion-auth.json' customer_id: 'YOUR_CUSTOMER_ID' endpoint: malachiteingestion-pa.googleapis.com log_type: FIREEYE_NX_AUDIT raw_log_field: body ingestion_labels: env: production source: trellix_nx service: pipelines: logs/fireeye_nx_to_chronicle: receivers: - udplog exporters: - chronicle/fireeye_nx
Configuration parameters
Replace the following placeholders:
Receiver configuration:
listen_address: IP address and port to listen on. *0.0.0.0:514(requires root/admin privileges). *0.0.0.0:1514for unprivileged port (recommended for Linux non-root).
Exporter configuration:
creds_file_path: Full path to ingestion authentication file.customer_id: Your Google SecOps customer ID.endpoint: Regional endpoint URL (e.g.,malachiteingestion-pa.googleapis.com).log_type: Set toFIREEYE_NX_AUDIT.ingestion_labels: Optional labels for categorizing logs.
Save the configuration file
- Linux: Press
Ctrl+O, thenEnter, thenCtrl+X. - Windows: Click File > Save.
Restart the Bindplane agent to apply the changes
To restart the Bindplane agent in Linux:
Run the following command:
sudo systemctl restart observiq-otel-collectorVerify the service is running:
sudo systemctl status observiq-otel-collectorCheck logs for errors:
sudo journalctl -u observiq-otel-collector -f
To restart the Bindplane agent in Windows:
Choose one of the following options:
- Command Prompt or PowerShell as administrator:
net stop observiq-otel-collector && net start observiq-otel-collector- Services console:
- Press
Win+R, typeservices.msc, and press Enter. - Locate observIQ OpenTelemetry Collector.
- Right-click and select Restart.
- Press
Verify the service is running:
sc query observiq-otel-collectorCheck logs for errors:
type "C:\Program Files\observIQ OpenTelemetry Collector\log\collector.log"
Configure FireEye NX Audit syslog forwarding
- Sign in to the FireEye NX Audit console.
- Go to Settings > Notifications.
- Click the rsyslog tab.
- Select the Event type checkbox.
In the Settings panel, select CEF (Common Event Format) as the Default format.
In the Rsyslog Server Listing section:
- Add a new server (e.g.,
Google SecOps Bindplane). - IP Address: Enter the IP address of the Bindplane agent host.
- Port: Enter the Bindplane agent port number (e.g.,
514). - Protocol: Select UDP or TCP based on your Bindplane receiver configuration.
- Delivery: Select Per Event.
- Notifications: Select All Events.
- Add a new server (e.g.,
Click Update to save.
UDM mapping table
| Log field | UDM mapping | Logic |
|---|---|---|
alert.dst.ip |
target.ip |
Direct mapping. |
alert.dst.port |
target.port |
Direct mapping. |
alert.src.ip |
principal.ip |
Direct mapping. |
alert.occurred |
metadata.event_timestamp |
Direct mapping. |
alert.name |
metadata.product_event_type |
Direct mapping. |
security_result.action |
security_result.action |
ALLOW if "notified", BLOCK if "blocked". |
metadata.log_type |
metadata.log_type |
Set to FIREEYE_NX_AUDIT. |
metadata.vendor_name |
metadata.vendor_name |
Set to FireEye. |
Need more help? Get answers from Community members and Google SecOps professionals.