osquery-1/osquery/tables/applications/browser_firefox.cpp

111 lines
3.3 KiB
C++
Raw Normal View History

/*
* Copyright (c) 2014, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*
*/
#include <boost/property_tree/json_parser.hpp>
#include <osquery/filesystem.h>
#include <osquery/logger.h>
#include <osquery/tables.h>
namespace fs = boost::filesystem;
namespace pt = boost::property_tree;
namespace osquery {
namespace tables {
/// Each home directory will include custom extensions.
#ifdef __APPLE__
#define kFirefoxPath "/Library/Application Support/Firefox/Profiles/"
#else
#define kFirefoxPath "/.mozilla/firefox/"
#endif
#define kFirefoxExtensionsFile "/extensions.json"
/// Not parsed, but may be helpful later.
#define kFirefoxAddonsFile "/addons.json"
#define kFirefoxWebappsFile "/webapps/webapps.json"
const std::map<std::string, std::string> kFirefoxAddonKeys = {
{"defaultLocale.name", "name"},
{"id", "identifier"},
{"type", "type"},
{"version", "version"},
{"defaultLocale.creator", "creator"},
{"defaultLocale.description", "description"},
{"sourceURI", "source_url"},
{"visible", "visible"},
{"active", "active"},
{"applyBackgroundUpdates", "autoupdate"},
{"hasBinaryComponents", "native"},
{"location", "location"},
{"descriptor", "path"},
};
void genFirefoxAddonsFromExtensions(const std::string& path,
QueryData& results) {
pt::ptree tree;
2015-04-10 23:58:11 +00:00
if (!osquery::parseJSON(path + kFirefoxExtensionsFile, tree).ok()) {
TLOG << "Could not parse JSON from: " << path + kFirefoxExtensionsFile;
return;
}
for (const auto& addon : tree.get_child("addons")) {
Row r;
// Most of the keys are in the top-level JSON dictionary.
for (const auto& it : kFirefoxAddonKeys) {
2015-04-10 23:58:11 +00:00
if (addon.second.count(it.first)) {
r[it.second] = addon.second.get<std::string>(it.first, "");
}
// Convert bool-types to an integer.
if (r[it.second] == "true" || r[it.second] == "YES" ||
r[it.first] == "Yes") {
r[it.second] = INTEGER(1);
} else if (r[it.second] == "false" || r[it.second] == "NO" ||
r[it.second] == "No") {
r[it.second] = INTEGER(0);
}
}
// There are several ways to disabled the addon, check each.
if (addon.second.get<std::string>("softDisable", "false") == "true" ||
addon.second.get<std::string>("appDisabled", "false") == "true" ||
addon.second.get<std::string>("userDisabled", "false") == "true") {
r["disabled"] = INTEGER(1);
} else {
r["disabled"] = INTEGER(0);
}
results.push_back(r);
}
}
QueryData genFirefoxAddons(QueryContext& context) {
QueryData results;
auto homes = osquery::getHomeDirectories();
for (const auto& home : homes) {
// For each user, enumerate all of their Firefox profiles.
std::vector<std::string> profiles;
if (!listDirectoriesInDirectory(home / kFirefoxPath, profiles).ok()) {
continue;
}
// Generate an addons list from their extensions JSON.
for (const auto& profile : profiles) {
genFirefoxAddonsFromExtensions(profile, results);
}
}
return results;
}
}
}