mirror of
https://github.com/valitydev/osquery-1.git
synced 2024-11-08 10:23:54 +00:00
cd7d68c994
Chrome (non-Opera) may use multiple profiles before the extensions dir. Use a glob before searching for extensions/versions.
32 lines
866 B
C++
32 lines
866 B
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/tables/applications/browser_utils.h>
|
|
|
|
namespace fs = boost::filesystem;
|
|
namespace pt = boost::property_tree;
|
|
|
|
namespace osquery {
|
|
namespace tables {
|
|
|
|
/// Each home directory will include custom extensions.
|
|
#ifdef __APPLE__
|
|
#define kChromePath "/Library/Application Support/Google/Chrome/%/"
|
|
#else
|
|
#define kChromePath "/.config/google-chrome/%/"
|
|
#endif
|
|
#define kChromeExtensionsPath "Extensions/"
|
|
|
|
QueryData genChromeExtensions(QueryContext& context) {
|
|
return genChromeBasedExtensions(context, (kChromePath kChromeExtensionsPath));
|
|
}
|
|
}
|
|
}
|