A data science framework for analyzing Chrome browser extensions.
Go to file
Achim D. Brucker 1da6840988 Improved installation instruction. 2018-08-22 19:58:21 +01:00
.paket Updated packet scripts (migration to latest ProjectScaffold). 2018-07-07 00:10:03 +01:00
docsrc Replaced plain text LICENSE file by a Markdown version. 2018-07-27 06:20:17 +01:00
src/LogicalHacking.ExtensionDsLab Fixed load order of included scripts. 2018-08-16 19:24:02 +01:00
tests/LogicalHacking.ExtensionDsLab.Tests Renamed ExtensionCore to ExtensionQueries (a module that should only contain queries related to extensions). 2018-07-28 17:50:14 +01:00
.gitattributes Updated git configuration (starting migration to latest ProjectScaffold). 2018-07-06 22:41:14 +01:00
.gitignore Basic setup of a test that runs against the actual data base. 2018-07-20 08:28:46 +01:00
LICENSE.md Improved Markdown. 2018-08-18 22:22:08 +01:00
LogicalHacking.ExtensionDsLab.sln Updated project files (compiles, based on latest ProjectScaffold). 2018-07-08 00:12:30 +01:00
README.md Improved installation instruction. 2018-08-22 19:58:21 +01:00
RELEASE_NOTES.md Basic import of FSharp.ProjectScaffold setup. 2017-08-06 17:59:09 +01:00
build.cmd Updated build scripts (migration to latest ProjectScaffold). 2018-07-06 22:49:17 +01:00
build.fsx Replaced plain text LICENSE file by a Markdown version. 2018-07-27 06:20:17 +01:00
build.proj Updated build scripts (migration to latest ProjectScaffold). 2018-07-07 00:10:25 +01:00
build.sh Updated build scripts (migration to latest ProjectScaffold). 2018-07-06 22:49:17 +01:00
configure.sh Switched to MariaDB/MySql setup (from SQLite). 2017-09-03 01:23:12 +01:00
fsc.props Added fix for type providers. 2018-07-07 00:32:21 +01:00
paket.dependencies Updated dependencies (in particular, ensure latest FSlab). 2018-07-17 06:54:07 +01:00

README.md

ExtensionDsLab

ExtensionDsLab is a data science and machine learning framework for analyzing security and privacy related properties of the browser extensions (and Chrome Apps) offered in the Chrome Web Store.

Installation

First Time

Ensure that both

  • mono (tested with version 5.14) and
  • dotnet SDK (tested with version 2.1)

are installed. Moreover, [FAKE] needs to be installed

    dotnet tool install fake-cli -g

and added to the PATH so that you can call fake on the command line. This might require

    export PATH=$HOME/.dotnet/tools/fake:$PATH

After cloning the repository, call

    ./configure.sh  

to initialize the paket configuration.

(Re-) Compiling

After that, the project can be build using

    ./build.sh

Note for Windows Users

On Windows (untested), configure.sh can be replaced by configuring paket manually

    .paket/paket.bootstrapper.exe
    .paket/paket.exe install

After that, the project can be build using

    build.cmd

Team

License

This project is licensed under the GPL 3.0 (or any later version).

SPDX-License-Identifier: GPL-3.0-or-later

Master Repository

The master git repository for this project is hosted by the Software Assurance & Security Research Team at https://git.logicalhacking.com/BrowserSecurity/ExtensionDsLab.