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