Enumeration of data sources that can be used to provide context to security events
This repository keeps a list of the data sources that are potentially relevant to cyber security and the source for the web site to make the data sources easy to read.
Data sources are enumerated as a JSON array. Data source files are read from the data
directory. The format for each data source is:
{
"name": "required name of the data source"
, "url": "optional URL to download data from"
, "type": "optional type [web, Atom, RSS, API]"
, "info": "optional URL to find out more information"
, "description": "optional description about the data source"
, "categories": ["optional array of categories for the data source"]
}
There is a git pre-commit hook that will build the site using the default grunt task and add the deploy directory to the commit. To use it, create a symlink:
ln -s ../../pre-commit.sh .git/hooks/pre-commit
A git post-commit hook will merge the changes with the gh-pages branch for deployment on github pages. To use it, create the symlink:
ln -s ../../post-commit.sh .git/hooks/post-commit