A web-based visualization of cyber security attack vactors.
- Download and open Freemind.
- Open the file
attack-vectors.mm
from the repositories` root folder. - Use the function
Export > with XSLT
. Select themm2json.xls
and theattack-vectors.json
to transform the mindmap into a json tree. - Copy the entire content of the resulting
attack-vectors.json
into themain.js
file located in theassets/js
directory. Put the content into the returned object of the functiongetTree
like shown below.
function getTree(rootName) {
return {
name: rootName,
children: [
// content of attack-vector.json goes here...
]
};
}