The VMware Carbon Black Tech Zone is live! Checkout this great resource: Mastering Carbon Black Audit & Remediation.

Installed Firefox add-ons without Default

Description: This query help for get all installed add-ons on Firefox without default say (Pocket, Web Compat).

What The Data Shows: This will help during IR and analysis of FF browser. 

SQL: 

SELECT name, version, path
FROM users JOIN firefox_addons USING (uid)
WHERE name NOT IN('Form Autofill','Firefox Screenshots','WebCompat Reporter','Web Compat','Pocket','Application Update Service Helper');

 

 

2 Comments
jnelson
Carbon Black Employee
Status changed to: Approved
 
jnelson
Carbon Black Employee

@sk-mobily thanks for the submissions! Here is an alternative way to write this query that might be easier to read from some:

SELECT name, version, path

FROM users
JOIN firefox_addons USING (uid)
WHERE name NOT IN('Form Autofill','Firefox Screenshots','WebCompat Reporter','Web Compat','Pocket','Application Update Service Helper');