Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Table of Contents
maxLevel2
minLevel2
typeflat

Introduction

The tags beginning withav.mcafee identify events generated by McAfee antivirus services.

Valid tags and data tables

The full tag must have 4 levels. The first two are fixed as av.mcafee. The third level identifies the type of events sent, and the fourth level indicates the event subtype.

These are the valid tags and corresponding data tables that will receive the parsers' data:

Product / Service

Tags

Data tables

McAfee ePolicy Orchestrator (McAfee ePO)

av.mcafee.epo.agent

av.mcafee.epo.agent

av.mcafee.epo.endpointsecurity

av.mcafee.epo.endpointsecurity

av.mcafee.epo.virusscan

av.mcafee.epo.virusscan

How is data sent to Devo?

McAfee ePO can be configured to synchronize with a Syslog server. You can take advantage of this to send the data to a Devo Relay and then forward it to Devo. According to McAfee documentation, their Syslog forwarding only supports TCP over TLS, so you would need to install Stunnel in your Devo Relay machine, create your certificates and configure Stunnel.

The Stunnel configuration must include the incoming port where the McAfee ePO will send the logs to the Stunnel, the outgoing port where the Stunnel will forward the decrypted logs to the Devo Relay, and the necessary certificates. For more information about Stunnel, you can check this Devo’s documentation page and the official Stunnel website.

Devo Relay rules

Logs generated by McAfee ePO must be sent to the Devo platform via the Devo Relay to secure communication. When your Devo Relay is receiving Syslog messages through port 13006, the relay will be able to forward these logs to the right Devo tables. See the required relay rules below:

Relay rule 1 - McAfee ePO

  • Source port - 13006

  • Source data - ProductName=\"McAfee Agent\"

  • Target tag -av.mcafee.epo.agent

  • Stop processing -

  • Sent without syslog tag -


Relay rule 2 - McAfee Endpoint Security

  • Source port -13006

  • Source data -ProductName=\"McAfee Endpoint Security\"

  • Target tag -av.mcafee.epo.endpointsecurity

  • Stop processing -

  • Sent without syslog tag -


Relay rule 3 - McAfee VirusScan

  • Source port - 13006

  • Source data -ProductName=\"VirusScan Enterprise\"

  • Target tag -av.mcafee.epo.virusscan

  • Stop processing -

  • Sent without syslog tag -


Relay rule 4 - McAfee others

Use this rule you want to send to a my.app table all logs that do not match the previous rules.

  • Source port - 13006

  • Target tag -my.app.mcafee.epo

  • Stop processing -

  • Sent without syslog tag -

Logstash method

Events generated by McAfee EPO Console are stored in its SQL database in a table named EPOEventsMT or EPOEvents. We can use Logstash to extract the events from the database using JDBC, apply the av.mcafee.epo.events tag to each event, then send them in syslog format to port 13000 on the Devo Relay. 

Because Logstash saves the ID of the last record read in a dedicated file, each time the query is run only new records are retrieved and sent to Devo.

Prerequisites

  • Logstash requires a database user with read permissions on the EPO tables.

  • Some database fields need to be converted from signed int to a varchar IP address. The following function can do this for you.

    Code Block
    CREATE FUNCTION [dbo].[IntegerToIPAddress] (@ipin int)
    RETURNS CHAR(15)
    AS
    BEGIN
    declare @o1 bigint, @o2 bigint, @o3 bigint, @o4 bigint;
    declare @ip bigint;
    -- This is the magic epo conversion size...
    set @ip = (CAST(@ipin as bigint) + 2147483647) + 1;
    SET @o1 = @ip / 16777216;
    SET @ip = @ip % 16777216;
    SET @o2 = @ip / 65536;
    SET @ip = @ip % 65536;
    SET @o3 = @ip / 256;
    SET @ip = @ip % 256;
    SET @o4 = @ip;
    RETURN
    CONVERT(VARCHAR(4), @o1) + '.' +
    CONVERT(VARCHAR(4), @o2) + '.' +
    CONVERT(VARCHAR(4), @o3) + '.' +
    CONVERT(VARCHAR(4), @o4)
    END
  • Install Logstash on the same machine as the Devo Relay and download the logstash-output-syslog plugin.

  • Download and decompress the Microsoft JDBC Driver 4.1 for SQL Server into the /var/lib/logstash directory on the Devo Relay machine.

Configure Logstash

Create the configuration file that will direct the extraction and sending of events in /etc/logstash/conf.d. For example, /etc/logstash/conf.d/epo-DevoRelay.conf.

The following configuration file is a model which will extract new events from the database using the JDBC driver every one minute and send them using the syslog plugin to port 13000 on the Devo Relay. The parameters enclosed in angled brackets (<>) should be modified for your environment.

Code Block
input {
	jdbc {
        jdbc_driver_library => "/var/lib/logstash/sqljdbc_4.1/enu/sqljdbc41.jar"
        jdbc_driver_class => "com.microsoft.sqlserver.jdbc.SQLServerDriver"
        jdbc_connection_string => "jdbc:sqlserver://<ip_epo_server>\EPOSERVER:<port>;databaseName=<db_instance_name>"
        jdbc_user => "<username>"
        jdbc_password => "<password>"
        schedule => "* * * * *"   #each 1 minute
        use_column_value => true
        tracking_column => "autoid"
        last_run_metadata_path => "/var/lib/logstash/.logstash_jdbc_last_run"
        statement => "select autoid,AutoGUID,ServerID,CONVERT(varchar(24),DetectedUTC,120) as detectedUTC,dbo.IntegerToIPAddress(SourceIPV4) as SourceIP,dbo.IntegerToIPAddress(TargetIPV4) as TargetIP,TargetUserName,TargetFileName,SourceHostName,TargetHostName,ThreatCategory,ThreatEventID,ThreatSeverity,ThreatName,ThreatActionTaken,ThreatHandled from dbo.EPOEventsMT where autoid > :sql_last_value"
    }
}
# filter {
#
# }

output {
	syslog {
        facility => "local7"
        severity => "informational"
    	host => "localhost"
    	port => 13000 
        sourcehost => "<epo_server_name>"
    	appname => "av.mcafee.epo.events"
        protocol => "tcp"
        codec => line {
            format => "mcafeeEPO,%{autoid},%{autoguid},%{serverid},%{detectedutc},%{sourceip},%{targetip},%{targetusername},%{targetfilename},%{sourcehostname},%{targethostname},%{threatcategory},%{threateventid},%{threatseverity},%{threatname},%{threatactiontaken},%{threathandled}"
        }
	}
}
  • Add the Logstash service to be started at bootup using this command:

    Code Block
    update-rc.d - f logstash defaults 50
  • Finally, start the Logstash service:

    Code Block
    /etc/init.d/logstash start

Now you can confirm that the events are being correctly extracted and sent to Devo.

  • Log in to the Devo web application and domain to which you are sending the EPO events.

  • Open the finder in the Data Search area and locate the av.mcafee.epo.events table.

Table structure

These are the fields displayed in these tables:

Rw ui tabs macro
Rw tab
titleav.mcafee.epo.endpointsecurity

Field

Type

Extra fields

eventdate

timestamp

EventReceivedTime

str

tenantId

str

bpsId

str

tenantGUID

str

tenantNodePath

str

AgentGUID

str

MachineName

str

RawMACAddress

str

IPAddress

ip4

AgentVersion

str

OSName

str

TimeZoneBias

str

UserName

str

ProductName

str

ProductVersion

str

ProductFamily

str

ProductID

str

EventID

str

Severity

str

GMTTime

str

Locale

str

Error

str

Type

str

Version

str

InitiatorID

str

InitiatorType

str

SiteName

str

Description

str

Analyzer

str

AnalyzerName

str

AnalyzerVersion

str

AnalyzerDetectionMethod

str

AnalyzerHostName

str

AnalyzerDATVersion

str

AnalyzerEngineVersion

str

ThreatActionTaken

str

ThreatName

str

ThreatType

str

ThreatCategory

str

ThreatHandled

str

ThreatSeverity

str

TargetHostName

str

TargetUserName

str

TargetFileName

str

TargetName

str

TaskName

str

TargetPath

str

TargetHash

str

DataType

str

CorrelationID

str

CustomFields

str

Data

str

hostchain

str

tag

str

message

str

rawMessage

str

Rw tab
titleav.mcafee.epo.agent

Field

Type

Extra fields

eventdate

timestamp

EventReceivedTime

str

tenantId

str

bpsId

str

tenantGUID

str

tenantNodePath

str

AgentGUID

str

MachineName

str

RawMACAddress

str

IPAddress

ip4

AgentVersion

str

OSName

str

TimeZoneBias

str

UserName

str

ProductName

str

ProductVersion

str

ProductFamily

str

EventID

str

Severity

str

GMTTime

str

ProductID

str

Locale

str

Error

str

Type

str

Version

str

InitiatorID

str

InitiatorType

str

SiteName

str

Description

str

ThreatActionTaken

str

ThreatName

str

TargetHostName

str

TargetUserName

str

TargetFileName

str

TargetName

str

TaskName

str

TargetPath

str

TargetHash

str

DataType

str

CorrelationID

str

CustomFields

str

Data

str

hostchain

str

tag

str

Rw tab
titleav.mcafee.epo.virusscan

Field

Type

Extra fields

eventdate

timestamp

EventReceivedTime

str

tenantId

str

bpsId

str

tenantGUID

str

tenantNodePath

str

AgentGUID

str

MachineName

str

RawMACAddress

str

IPAddress

ip4

AgentVersion

str

OSName

str

TimeZoneBias

str

UserName

str

ProductName

str

ProductVersion

str

ProductFamily

str

EventID

str

Severity

str

GMTTime

str

UTCTime

str

ProductID

str

Locale

str

Error

str

Type

str

Version

str

InitiatorID

str

InitiatorType

str

SiteName

str

Description

str

ThreatActionTaken

str

ThreatName

str

TargetHostName

str

TargetUserName

str

TargetFileName

str

TargetName

str

TaskName

str

TargetPath

str

TargetHash

str

DataType

str

CorrelationID

str

CustomFields

str

Data

str

Analyzer

str

AnalyzerName

str

AnalyzerVersion

str

AnalyzerDATVersion

str

AnalyzerDetectionMethod

str

AnalyzerEngineVersion

str

DATVersion

str

EngineVersion

str

ScannerType

str

RuleName

str

ProcessName

str

FileName

str

Source

str

ActionsBlocked

str

szActionsBlocked

str

hostchain

str

tag

str