javadmohebbi / gravityzone-extra

This repo intent to add extra report to Bitdefender GravityZone

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Bitdefender GravityZone Extra

This repo intent to add extra reports to Bitdefender GravityZone

List of available reports:

  • Application Inventory Report: First, you must run inventory task on your endpoits. Then, this app will help you get a CSV comma delimited report on the app. inventory.
  • Detected Hardware Report: This app will fetch devices which are detected by GravityZone device control module from database & write the result in CSV comma delimited file.

Application Inventory Report

To get application inventory report, do the following steps on your GravityZone Appliance:

wget -O /home/bdadmin/get-inventory-report  https://github.com/javadmohebbi/gravityzone-extra/raw/main/build/get-inventory-report

chmod +x -v /home/bdadmin/get-inventory-report

/home/bdadmin/get-inventory-report -mongo-pass {MONGO_DB_PASS}

#*** replace your mongo database password with {MONGO_DB_PASS}

  • *** Mongo DB password must be encoded using percent encoding. Use this website to encode your password.
  • This tiny app will extract needed information and will create two csv file:
    • apps.csv: A comma delimited CSV file with the further template:
      • Application Name, Application Group, Hash, Version, Discover Date, NumberOfEndpoints
    • app_details.csv: A comma delimited CSV file with the further template:
      • Endpoint Name, Endpoint OS, Application Name, Application Group, Hash, Version, Discover Date
  • By default mentioned csv files will placed in /home/bdadmin

Detected Hardwares Report

Get detected hardwares on the managed endpoints. To get that do the following steps on your GravityZone Appliance

wget -O /home/bdadmin/hardware-report  https://github.com/javadmohebbi/gravityzone-extra/raw/main/build/hardware-report

chmod +x -v /home/bdadmin/hardware-report

/home/bdadmin/hardware-report -mongo-pass {MONGO_DB_PASS}

#*** replace your mongo database password with {MONGO_DB_PASS}

  • *** Mongo DB password must be encoded using percent encoding. Use this website to encode your password.
  • This tiny app will extract needed information and will create two csv file:
    • hwds.csv: A comma delimited CSV file with the further template:
      • DeviceId, DeviceName, LastDetectionDate, Number of Endpoints
    • hwds_details.csv: A comma delimited CSV file with the further template:
      • EndpointName, OS, DeviceId, DeviceName, LastDetectionDate
  • By default mentioned csv files will placed in /home/bdadmin

Need more custom report?

Just send a request to javad [at] openintelligence24 [dot] com

About

This repo intent to add extra report to Bitdefender GravityZone


Languages

Language:Go 100.0%