sean.cavanaugh
10/15/2025, 5:17 PMjetbrains_plugins table with success? I'm unable to get it to return results on hosts that have jetbrains plugins installed. Trying both via osqueryi locally and w/ distributed queries via Fleet.Gray Williams
10/16/2025, 8:34 AMselect * from users cross join jetbrains_plugins using (uid)
Don't forget to restart the IDE after installing a plugin, otherwise it may not have created the /plugins/ folder yet.
Hope that helps 🙂seph
sean.cavanaugh
10/16/2025, 4:26 PMSELECT
users.username,
jetbrains_plugins.name AS plugin_name,
jetbrains_plugins.version,
jetbrains_plugins.path AS plugin_path
FROM
jetbrains_plugins
JOIN
users
ON
jetbrains_plugins.uid = users.uid;