Threat Report: Exposing Malware in Linux-Based Multi-Cloud Environments | Download Now

Cb Response: Where can I get the information of sensor version in the database?

Cb Response: Where can I get the information of sensor version in the database?

Environment

  • Cb Response Console: All Versions

Question

Where can I get the information of sensor version in the database? 

Answer

  1. The 'sensors_registrations' table has a BUILD_ID column that shows the version build number: 
psql -d cb -p 5002 -c "select count(build_id) as count,build_id from sensor_registrations group by build_id order by count desc;"
  1. Then, correlate the build ID's with the version numbers from the sensor_builds table: 
psql -d cb -p 5002 -c "select * from sensor_builds;"

Additional Notes

  • The 'sensor_registrations' table in PSQL also has the information about the status of the endpoints (uninstalled, check-in times, etc)

Related Content


Labels (1)
Tags (2)
Was this article helpful? Yes No
No ratings
Article Information
Author:
Creation Date:
‎11-21-2018
Views:
312
Contributors