Collect Preempt Auth logs

Supported in:

This document explains how to ingest Preempt Auth logs to Google Security Operations using the Bindplane agent.

Preempt Auth is an authentication event monitoring solution that generates detailed authentication logs for Active Directory environments. It captures successful and failed login events, LDAP searches, service access, and authentication types across endpoints.

Before you begin

Make sure you have the following prerequisites:

  • A Google SecOps instance
  • Windows Server 2016 or later, or Linux host with systemd
  • Network connectivity between the Bindplane agent and the Preempt server
  • If running behind a proxy, ensure firewall ports are open per the Bindplane agent requirements
  • Privileged access to Preempt Auth (CrowdStrike Identity Protection) with administrator permissions

Get Google SecOps ingestion authentication file

  1. Sign in to the Google SecOps console.
  2. Go to SIEM Settings > Collection Agents.
  3. Download the Ingestion Authentication File.
  4. Save the file securely on the system where Bindplane will be installed.

Get Google SecOps customer ID

  1. Sign in to the Google SecOps console.
  2. Go to SIEM Settings > Profile.
  3. 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

  1. Open Command Prompt or PowerShell as an administrator.
  2. Run the following command:

    msiexec /i "https://github.com/observIQ/bindplane-agent/releases/latest/download/observiq-otel-collector.msi" /quiet
    
  3. Wait for the installation to complete.

  4. Verify the installation by running:

    sc query observiq-otel-collector
    

    The service should show as RUNNING.

Linux installation

  1. Open a terminal with root or sudo privileges.
  2. Run the following command:

    sudo sh -c "$(curl -fsSlL https://github.com/observiq/bindplane-agent/releases/latest/download/install_unix.sh)" install_unix.sh
    
  3. Wait for the installation to complete.

  4. 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:

    sudo nano /opt/observiq-otel-collector/config.yaml
    
  • Windows:

    notepad "C:\Program Files\observIQ OpenTelemetry Collector\config.yaml"
    

Edit the configuration file

  • Replace the entire contents of config.yaml with the following configuration:

    receivers:
        tcplog:
            listen_address: "0.0.0.0:514"
    
    exporters:
        chronicle/preempt_auth:
            compression: gzip
            creds_file_path: '<CREDS_FILE_PATH>'
            customer_id: '<CUSTOMER_ID>'
            endpoint: <REGION_ENDPOINT>
            log_type: PREEMPT_AUTH
            raw_log_field: body
            ingestion_labels:
                env: production
    
    service:
        pipelines:
            logs/preempt_auth_to_chronicle:
                receivers:
                    - tcplog
                exporters:
                    - chronicle/preempt_auth
    

Configuration parameters

Replace the following placeholders:

  • Receiver configuration:

    • tcplog: Receives syslog over TCP. Use udplog if your Preempt deployment forwards over UDP.
    • 0.0.0.0:514: Listens on all interfaces on port 514. Change the port if needed (for example, 1514 for non-root Linux).
  • Exporter configuration:

    • <CREDS_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
    • <CUSTOMER_ID>: Customer ID from the Get Google SecOps customer ID step.
    • <REGION_ENDPOINT>: 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 complete list.

Save the configuration file

  • After editing, save the file:
    • Linux: Press Ctrl+O, then Enter, then Ctrl+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-collector
    
    1. Verify the service is running:

      sudo systemctl status observiq-otel-collector
      
    2. Check 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:

      1. Press Win+R, type services.msc, and press Enter.
      2. Locate observIQ OpenTelemetry Collector.
      3. Right-click and select Restart.
      4. Verify the service is running:

        sc query observiq-otel-collector
        
      5. Check logs for errors:

        type "C:\Program Files\observIQ OpenTelemetry Collector\log\collector.log"
        

Configure Preempt Auth syslog forwarding

  1. Sign in to the Preempt management console.
  2. Navigate to Settings > SIEM Integration.
  3. Enable syslog forwarding for authentication events.
  4. Provide the following configuration details:
    • Protocol: Select TCP (must match the Bindplane agent receiver configuration).
    • Syslog server address: Enter the IP address of the Bindplane agent host (for example, 192.168.1.100).
    • Port: Enter 514 (must match the Bindplane agent receiver port).
  5. Select the authentication event types to forward:
    • Successful authentication events
    • Failed authentication events
    • LDAP searches
    • Service access events
  6. Click Save or Apply.
  7. Verify that logs are being sent by checking the Bindplane agent logs.

UDM mapping table

Log Field UDM Mapping Logic
authenticationType extensions.auth.type Set to "SSO" if authenticationType matches SSO_LOGIN or LDAP_AUTHENTICATION; "MACHINE" if DOMAIN_LOGIN; "AUTHTYPE_UNSPECIFIED" if NTLM_AUTHENTICATION
extensions.auth.mechanism Set to "MECHANISM_UNSPECIFIED"
inter_ip intermediary.hostname Set if inter_ip is not a valid IP address
inter_ip intermediary.ip Set if inter_ip is a valid IP address
eventLabel metadata.description Value copied directly
eventType metadata.event_type Set to "USER_LOGIN" if eventType is SUCCESSFUL_AUTHENTICATION or FAILED_AUTHENTICATION; "SERVICE_UNSPECIFIED" if SERVICE_ACCESS or LDAP_SEARCH and principal_host_set is true
eventType metadata.product_event_type Value copied directly
endpointDisplayName, ipAddress principal.hostname Set if endpointDisplayName != ipAddress and endpointDisplayName != ""
ipAddress, inter_ip principal.ip Value from ipAddress if ipAddress != inter_ip, else from inter_ip
networkType principal.resource.name Value copied directly
principal.resource.type Set to "Network type"
userDisplayName principal.user.email_addresses Set if userDisplayName matches email regex
userDisplayName principal.user.user_display_name Value copied directly
userEntity.secondaryDisplayName, userDisplayName principal.user.userid Value from userEntity.secondaryDisplayName if not empty, else from userDisplayName if userEntity.secondaryDisplayName is empty
eventType security_result.action Set to "ALLOW" if SUCCESSFUL_AUTHENTICATION, "BLOCK" if FAILED_AUTHENTICATION
eventSeverity security_result.severity_details Value copied directly
authenticationType security_result.summary Value copied directly
targetEntity.primaryDisplayName, targetServiceIdentifier, eventType, targetEntity.type target.application Value from targetEntity.primaryDisplayName if targetEntity.type == "CLOUD_SERVICE"; else from targetServiceIdentifier if targetServiceIdentifier != "" and not previously set; else "LDAP" if eventType == "LDAP_SEARCH" and not previously set
targetEntity.primaryDisplayName, targetEntity.type target.hostname Set if targetEntity.type == "ENDPOINT"
targetServiceType target.resource.name Set if targetServiceType != "" and != "UNKNOWN"
targetServiceType target.resource.type Set to "Service Type" if targetServiceType != "" and != "UNKNOWN"
targetEntity.primaryDisplayName, targetEntity.type target.user.user_display_name Set if targetEntity.type == "USER"
targetEntity.secondaryDisplayName, targetEntity.type target.user.userid Set if targetEntity.type == "USER"
metadata.product_name Set to "PREEMPT_AUTH"
metadata.vendor_name Set to "Preempt"

Need more help? Get answers from Community members and Google SecOps professionals.