Collect STIX Threat Intelligence logs
This document explains how to ingest STIX Threat Intelligence logs to Google Security Operations using the Bindplane agent.
STIX (Structured Threat Information Expression) is a standardized language and format for sharing indicators of compromise (IOCs) and threat intelligence data between organizations. STIX data is typically received as JSON or XML files from TAXII servers or threat intelligence platforms. The Bindplane agent collects STIX data files directly from the local file system.
Before you begin
Make sure you have the following prerequisites:
- A Google SecOps instance
- Windows Server 2016 or later, or Linux host with
systemd - If running behind a proxy, ensure firewall ports are open per the Bindplane agent requirements
- A TAXII client or threat intelligence platform that saves STIX-formatted files (JSON or XML) to a local directory
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" /quietWait for the installation to complete.
Verify the installation by running:
sc query observiq-otel-collectorThe 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)" install_unix.shWait for the installation to complete.
Verify the installation by running:
sudo systemctl status observiq-otel-collectorThe 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 logs and send to Google SecOps
Locate the configuration file
Linux:
sudo nano /opt/observiq-otel-collector/config.yamlWindows:
notepad "C:\Program Files\observIQ OpenTelemetry Collector\config.yaml"
Edit the configuration file
Replace the entire contents of
config.yamlwith the following configuration:receivers: filelog: include: - /var/log/stix/*.json start_at: beginning exporters: chronicle/stix: compression: gzip creds_file_path: '/etc/bindplane-agent/ingestion-auth.json' customer_id: '<customer_id>' endpoint: malachiteingestion-pa.googleapis.com log_type: STIX raw_log_field: body ingestion_labels: env: production service: pipelines: logs/stix_to_chronicle: receivers: - filelog exporters: - chronicle/stix
Configuration parameters
Replace the following placeholders:
Receiver configuration:
filelog: The receiver type for collecting log files from diskinclude: List of file paths to monitor. Set this to the directory where STIX files are saved:- Linux:
/var/log/stix/*.json - Windows:
C:\Logs\stix\*.json
- Linux:
start_at: Set tobeginningto read existing logs orendto only read new entries
Exporter configuration:
stix: Descriptive name for the exportercreds_file_path: Full path to ingestion authentication file:- Linux:
/etc/bindplane-agent/ingestion-auth.json - Windows:
C:\Program Files\observIQ OpenTelemetry Collector\ingestion-auth.json
- Linux:
<customer_id>: Customer ID from the previous stependpoint: Regional endpoint URL:- US:
malachiteingestion-pa.googleapis.com - Europe:
europe-malachiteingestion-pa.googleapis.com - Asia:
asia-southeast1-malachiteingestion-pa.googleapis.com - See Regional Endpoints for the complete list
- US:
STIX: Log type exactly as it appears in Chronicleingestion_labels: Optional labels in YAML format (for example,env: production)
Pipeline configuration:
stix_to_chronicle: Descriptive name for the pipeline
Save the configuration file
- After editing, save the file:
- Linux: Press
Ctrl+O, thenEnter, thenCtrl+X - Windows: Click File > Save
- Linux: Press
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-collectorServices console:
- Press
Win+R, typeservices.msc, and press Enter. - Locate observIQ OpenTelemetry Collector.
- Right-click and select Restart.
Verify the service is running:
sc query observiq-otel-collectorCheck logs for errors:
type "C:\Program Files\observIQ OpenTelemetry Collector\log\collector.log"
- Press
Configure STIX data file collection
STIX is a data format, not a product. STIX threat intelligence data is typically received as JSON or XML files from TAXII clients, threat intelligence platforms, or manual downloads. You need to ensure these files are placed in a directory that the Bindplane agent monitors.
Linux
Create a directory to store STIX data files:
sudo mkdir -p /var/log/stixConfigure your TAXII client or threat intelligence platform to save STIX files to
/var/log/stix/.Ensure the Bindplane agent service account has read access to the directory:
sudo chmod 755 /var/log/stix
Windows
Create a directory to store STIX data files:
mkdir C:\Logs\stixConfigure your TAXII client or threat intelligence platform to save STIX files to `C:\Logs\stix`.
Update the Bindplane agent
includepath inconfig.yamlto match:include: - C:\Logs\stix\*.json
UDM mapping table
| Log Field | UDM Mapping | Logic |
|---|---|---|
| entity.administrative_domain | Set to "TEST" | |
| assetid_value | entity.asset.asset_id | Value from assetid_value if not empty |
| condition_label, related_indicators_relationship_label, related_indicators_scope, indicator_types_label, valid_start_time_label, controlled_structure_label, marking_structure_label | entity.asset.attribute.labels | Merged from various labels |
| name | entity.file.full_path | Value copied directly |
| val, hash.simple_hash_value, MD5_val, hash_value | entity.file.md5 | Value from val if matches md5 regex, else hash.simple_hash_value if type MD5, else MD5_val, else hash_value |
| value | entity.file.names | Value copied directly |
| val, hash.simple_hash_value, sha1_val, hash_value | entity.file.sha1 | Value from val if matches sha1 regex, else hash.simple_hash_value if type SHA1, else sha1_val, else hash_value |
| val, hash.simple_hash_value, sha256val, sha_value, sha_value | entity.file.sha256 | Value from val if matches sha256 regex, else hash.simple_hash_value if type SHA256, else sha256val, else sha_value |
| observable.object.properties.value, dom, value, host, name, external_references.0.source_name | entity.hostname | Value from observable.object.properties.value if type FQDN, else dom from grok, else value if type domain-name, else host, else name if main_observable_type domain/hostname, else external_references.0.source_name |
| ip_val, ipval, ip, source_ip, value, src_ip | entity.ip | Value from ip_val if grok matched, else ipval if category ipv4-addr, else ip from pattern grok, else source_ip, else value if type ipv4, else src_ip from grok |
| source_port, src_port | entity.port | Value from source_port or src_port |
| indicator_label, extension_value1, extension_value2, extension_value3, extension_value4, revoked_value, spec_version_value, object_marking_ref_value, label_value | entity.resource.attribute.labels | Merged from various labels |
| observable.object.properties.value, url_val, value, observable_properties_value | entity.url | Value from observable.object.properties.value if type URL, else url_val from grok, else value if type url, else observable_properties_value if not empty |
| email_val, mail, value | entity.user.email_addresses | Value from email_val if grok matched, else mail from grok, else value if type email-addr |
| timestamp | metadata.collected_timestamp | Converted using date match ISO8601/RFC3339 |
| title, description | metadata.description | Value from title or description |
| entity_type | metadata.entity_type | Value copied directly |
| timestamp, valid_until | metadata.interval.end_time | Converted from timestamp or valid_until using date match ISO8601/RFC3339 |
| timestamp, valid_from, created | metadata.interval.start_time | Converted from timestamp, valid_from, created, or timestamp using date match ISO8601/RFC3339 |
| id | metadata.product_entity_id | Value copied directly |
| version | metadata.product_version | Value copied directly |
| threat_detail | metadata.threat | Merged from threat_detail |
| threat_detail_category | threat.category | Value copied directly |
| confidence_value, confidence, x_stix_confidence, x_ctix_confidence_score | threat.confidence_details | Value from confidence_value, else confidence if no_value, else x_stix_confidence, else x_ctix_confidence_score |
| value, confidence, x_ctix_confidence_score | threat.confidence_score | Value from value if name Confidence Score, else confidence, else x_ctix_confidence_score, converted to float |
| property_label, sha512_value, observable_id, observable_object_id, keyword_label | threat.detection_fields | Merged from various labels |
| description | threat.description | Value copied directly |
| value, extensions.extension-definition--ea279b3e-5c71-4632-ac08-831c66a786ba.score | threat.risk_score | Value from value if name Risk, else extensions score, converted to float |
| metadata.product_name | Set to "STIX" | |
| metadata.vendor_name | Set to "STIX" |
Need more help? Get answers from Community members and Google SecOps professionals.