mirror of
https://github.com/valitydev/osquery-1.git
synced 2024-11-08 18:33:54 +00:00
104 lines
2.8 KiB
C++
104 lines
2.8 KiB
C++
/*
|
|
* 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 <osquery/logger.h>
|
|
#include <osquery/tables/applications/browser_utils.h>
|
|
|
|
namespace osquery {
|
|
namespace tables {
|
|
|
|
#define kManifestFile "/manifest.json"
|
|
|
|
const std::map<std::string, std::string> kExtensionKeys = {
|
|
{"version", "version"},
|
|
{"name", "name"},
|
|
{"description", "description"},
|
|
{"default_locale", "locale"},
|
|
{"update_url", "update_url"},
|
|
{"author", "author"},
|
|
{"background.persistent", "persistent"},
|
|
};
|
|
|
|
void genExtension(const std::string& path, QueryData& results) {
|
|
std::string json_data;
|
|
if (!readFile(path + kManifestFile, json_data).ok()) {
|
|
VLOG(1) << "Could not read file: " << path + kManifestFile;
|
|
return;
|
|
}
|
|
|
|
// Read the extensions data into a JSON blob, then property tree.
|
|
pt::ptree tree;
|
|
std::stringstream json_stream;
|
|
json_stream << json_data;
|
|
try {
|
|
pt::read_json(json_stream, tree);
|
|
} catch (const pt::json_parser::json_parser_error& e) {
|
|
VLOG(1) << "Could not parse JSON from: " << path + kManifestFile;
|
|
return;
|
|
}
|
|
|
|
Row r;
|
|
// Most of the keys are in the top-level JSON dictionary.
|
|
for (const auto& it : kExtensionKeys) {
|
|
try {
|
|
r[it.second] = tree.get<std::string>(it.first);
|
|
} catch (const pt::ptree_error& e) {
|
|
r[it.second] = "";
|
|
}
|
|
|
|
// Convert JSON bool-types to an integer.
|
|
if (r[it.second] == "true") {
|
|
r[it.second] = INTEGER(1);
|
|
} else if (r[it.second] == "false") {
|
|
r[it.second] = INTEGER(0);
|
|
}
|
|
}
|
|
|
|
// Set the default persistence setting to false
|
|
if (r.at("persistent") == "") {
|
|
r["persistent"] = INTEGER(0);
|
|
}
|
|
|
|
r["identifier"] = fs::path(path).parent_path().leaf().string();
|
|
r["path"] = path;
|
|
results.push_back(r);
|
|
}
|
|
|
|
QueryData genChromeBasedExtensions(QueryContext& context, const fs::path sub_dir) {
|
|
QueryData results;
|
|
|
|
auto homes = osquery::getHomeDirectories();
|
|
for (const auto& home : homes) {
|
|
// For each user, enumerate all of their opera profiles.
|
|
std::vector<std::string> extensions;
|
|
fs::path extension_path = home.string() + sub_dir.string();
|
|
if (!listDirectoriesInDirectory(extension_path, extensions).ok()) {
|
|
continue;
|
|
}
|
|
|
|
// Generate an addons list from their extensions JSON.
|
|
for (const auto& extension : extensions) {
|
|
std::vector<std::string> versions;
|
|
if (!listDirectoriesInDirectory(extension, versions).ok()) {
|
|
continue;
|
|
}
|
|
|
|
// Extensions use /<ID>/<VERSION>/manifest.json.
|
|
for (const auto& version : versions) {
|
|
genExtension(version, results);
|
|
}
|
|
}
|
|
}
|
|
|
|
return results;
|
|
}
|
|
}
|
|
}
|