šŸ’ Official Elastic Integration?

Currently there is no native integration with Elastic for some of the Netwrix products.

Would Netwrix be willing to build the integration with Elastic so customers can easily ingest all the juicy data from the Netwrix product line for Security Operations?

Here is how you can get started: integrations/CONTRIBUTING.md at main Ā· elastic/integrations

Here are a couple of GitHub issues out there for the need on these integrations.

[Netwrix_PAM] New integration, Netwrix Privilege Access Management Ā· Issue #11856 Ā· elastic/integrations

[Netwrix_Threat_Manager] New integration, Netwrix Threat Manager Ā· Issue #11857 Ā· elastic/integrations

3 Likes

Hi, we should be able to do what NPS is doing in the link you pasted.

This may even be possible today if you post in your format into the ā€œcustom templateā€ section.

We will look into this on our side.

3 Likes

Elasticsearch and Replication

1 Like

Hey Jonathan, how does your link relate to this post?

Hi Nicholas,

That’s really interesting feedback thank you.

For Threat Manager, as Greg mentioned it is possible today but you may have to do an extra step.

You can use the Elastic Logstash Cef codec plugin to create a pipeline that would work like this:
Threat Manager (CEF) → Elastic Logstash CEF plugin → Elasticsearch

Otherwise you may use the Custom template feature.
I am not familiar with what fields Elastic accepts, but it seems to be JSON.

Here is a conversion of our current (v3.0.493) custom SIEM template to JSON:

{
  "syslog_date": "%SYSLOG_DATE%", 
  "host": "%HOST%", 
  "LEEF_version": "1.0",
  "company": "%COMPANY%", 
  "product": "%PRODUCT%", 
  "product_version": "%PRODUCT_VERSION%", 
  "threat_type": "%THREAT_TYPE%", 
  "dev_time": "%THREAT_TIME%",
  "dev_time_format": "yyyy-MM-dd HH:mm:ss",
  "threat_type_detail": "%THREAT_TYPE%",
  "users": "%USERS%", 
  "computers": "%COMPUTERS%", 
  "file_name": "%FILENAME%", 
  "new_file_name": "%NEW_FILENAME%", 
  "process": "%PROCESS%"
}

You would have to make sure the field mapping matches what Elastic accepts.

An official integration is definitively something to look into. Thanks for sharing this :+1:.

1 Like

Elasticsearch can trivially ingest JSON data.

We don’t use Logstash but rather Elastic Agent with either a push or pull method. This gives us some ideas to what we can do here but really, Netwrix has a great opportunity to build an integration that all can take advantage of. This post is a good place to track said integration. Thank you!

2 Likes