项目作者: pranayVyas

项目描述 :
convert your JSON events to CEF format
高级语言: Java
项目地址: git://github.com/pranayVyas/jsontocef.git
创建时间: 2018-09-07T05:04:52Z
项目社区:https://github.com/pranayVyas/jsontocef

开源协议:GNU General Public License v3.0

下载


JSON TO CEF CONVERTOR

Description

The program converts JSON to CEF. This was built to generate CEF events to be passed to arcsight from Metron.
Download the contents and perform mvn install.

To run as standalone

java -classpath jsontocef-V1.1.jar org.hortonworks.com.jsontocef.CefWriter

To call from other class

  • CefWriter cf = new CefWriter(Path json to cef property file)
  • String CEFDATA = cf.jsonToCef(String jsondata);

Parameters required are

  • argument1: path to json to cef properties file.
  • argument2: path or array of json objects. multiline json is not supported.
  • argument4: output directory to write cef file.

  • The program can run as individual job or can be called.

CEF HEADERS

By default the program will look for below fields for CEF HEADERS

  • CEF Version - hardcoded to be “CEF:0”
  • deviceVendor
  • deviceProduct
  • deviceVersion
  • deviceEvent
  • Name
  • severity

CEF:0|deviceVendor|deviceProduct|deviceVersion|deviceEvent|Name|severity|
If your JSON field names for headers are different than above, you can modify the code in CefWriter.java between lines 141-156