- Import MITRE for ICS as JSON
- Export JSON to neo4j
- Make sure it's getting everything in JSON
- Enrich nodes with more information like references, aliases, dates, etc.
- use logging lib
- use env password os.getenv instead of hardcoded
- Look into better using neo4j functions to avoid writing out commands
- Create a neo4j db with password "neo4MITRE"
- Run script in venv
- Check your graph by running:
MATCH (g)-[r]->(n) WHERE g.name = "APT1" RETURN g,r,n
MATCH (n {name:"Lazarus Group"})-[r]-(n2) RETURN n,r,n2