Analysis To Determine FireEye Version on Linux

Hi everyone. I’m somewhat new to BigFix analysis. I have a need to create an analysis that will interrogate my Linux servers for a FireEye version number. Anyone have any idea how to code this, please?

Thank you!
Tony

version of package whose (name of it = “xagt”) of rpm

2 Likes

If you have a mix of RPM and DPKG Linux distros you could also use property introspection to dynamically call either the “rpm” or “debianpackge” inspectors.

(version of packages "xagt" of (if exists properties whose (it as string contains "debianpackage:") then debianpackages else if exists properties whose (it as string contains "rpm:") then rpms else ERROR "The operators are not defined.") as string | "")

4 Likes

Thank you very much vk!!!