Skip to main content

Bitdefender

In the context of Fluency SIEM, this plugin integration is named as follows:

PLUGIN_NAME = Bitdefender

Platform_PluginLambda

The Platform_PluginLambda function is a built-in function that allows the FPL script to access and (remotely) call the corresponder vendor plugin(s) for the APIs listed below.

The CUSTOMER argument is used to specify one or more running instance(s) of the same type of plugin, in the case of multiple customer's data going into a single Fluency SIEM deployment.

Note: Wildcards * are accepted for this argument to facilitate selection

The LAMBDA_FUNCTION argument is a lambda that provides the actual logic that will be performed remotely on the selected plugin.

    Platform_PluginLambda(<PLUGIN_NAME>, <CUSTOMER>, <LAMBDA_FUNCTION>)

Example:

function main() {
return Platform_PluginLambda("Bitdefender", "*", (customer) => {
let endpoints = Plugin_Bitdefender_LoadEndpoint((obj) => {
let {id, name, operatingSystemVersion, ip, isManaged} = obj
return {id, name, operatingSystemVersion, ip, isManaged}
})
return {endpoints}
})
}

Plugin_Bitdefender_LoadEndpoint

  • Plugin_Bitdefender_LoadEndpoint()
    • Loads the Bitdefender endpoints