Skip to content

Latest commit

 

History

History
20 lines (17 loc) · 764 Bytes

README.md

File metadata and controls

20 lines (17 loc) · 764 Bytes

AttackVectorsTree

A web-based visualization of cyber security attack vactors.

Update Mindmap

  1. Download and open Freemind.
  2. Open the file attack-vectors.mm from the repositories` root folder.
  3. Use the function Export > with XSLT. Select the mm2json.xls and the attack-vectors.json to transform the mindmap into a json tree.
  4. Copy the entire content of the resulting attack-vectors.json into the main.js file located in the assets/js directory. Put the content into the returned object of the function getTree like shown below.
function getTree(rootName) {
    return {
      name: rootName,
      children: [
        // content of attack-vector.json goes here...
        ]
    };
}