├── LICENSE ├── README.md ├── cicat ├── .gitkeep ├── cicat2 │ ├── .gitkeep │ └── settings.py ├── data │ ├── .gitkeep │ ├── 800-53 │ │ └── controls.2.xlsx │ ├── ATK │ │ ├── .gitkeep │ │ └── attack.json │ ├── ATK4ICS.xlsx │ ├── ATKPROFILES.xlsx │ ├── CVE │ │ └── CVE-year-2019.xml │ ├── TB_infrastructure.xlsx │ └── TB_scenarios.xlsx ├── example │ ├── CCATrun.bat │ ├── CICAT brief.ap1000.pptx │ ├── INFRASTRUCTURE.ap1000.xlsx │ ├── RESULTS.ap1000.xlsx │ └── SCENARIOS.ap1000.xlsx ├── generator │ ├── .gitkeep │ ├── SSoutput.py │ ├── TACSequence.py │ ├── TTPFilter.py │ ├── actorGEN.py │ ├── actorlists.py │ ├── afactory.py │ ├── amodel.py │ ├── atk2xl.py │ ├── atk4ics.py │ ├── cicat.py │ ├── columnloader.py │ ├── dbLoad.py │ ├── fastcache.py │ ├── ffactory.py │ ├── ifactory.py │ ├── imodel.py │ ├── loaddata.py │ ├── mitGEN.py │ ├── scenGEN.py │ ├── spreadout.py │ ├── stats.py │ ├── tfactory.py │ ├── tmodel.py │ ├── topology.py │ ├── vfactory.py │ └── zoneCrawlr.py ├── requirements └── utests │ ├── .gitkeep │ └── utests.bat ├── docker └── Dockerfile ├── docker_info.txt └── shared └── placeholder.txt /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/CICAT/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/CICAT/HEAD/README.md -------------------------------------------------------------------------------- /cicat/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cicat/cicat2/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cicat/cicat2/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/CICAT/HEAD/cicat/cicat2/settings.py -------------------------------------------------------------------------------- /cicat/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cicat/data/800-53/controls.2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/CICAT/HEAD/cicat/data/800-53/controls.2.xlsx -------------------------------------------------------------------------------- /cicat/data/ATK/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cicat/data/ATK/attack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/CICAT/HEAD/cicat/data/ATK/attack.json -------------------------------------------------------------------------------- /cicat/data/ATK4ICS.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/CICAT/HEAD/cicat/data/ATK4ICS.xlsx -------------------------------------------------------------------------------- /cicat/data/ATKPROFILES.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/CICAT/HEAD/cicat/data/ATKPROFILES.xlsx -------------------------------------------------------------------------------- /cicat/data/CVE/CVE-year-2019.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/CICAT/HEAD/cicat/data/CVE/CVE-year-2019.xml -------------------------------------------------------------------------------- /cicat/data/TB_infrastructure.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/CICAT/HEAD/cicat/data/TB_infrastructure.xlsx -------------------------------------------------------------------------------- /cicat/data/TB_scenarios.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/CICAT/HEAD/cicat/data/TB_scenarios.xlsx -------------------------------------------------------------------------------- /cicat/example/CCATrun.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/CICAT/HEAD/cicat/example/CCATrun.bat -------------------------------------------------------------------------------- /cicat/example/CICAT brief.ap1000.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/CICAT/HEAD/cicat/example/CICAT brief.ap1000.pptx -------------------------------------------------------------------------------- /cicat/example/INFRASTRUCTURE.ap1000.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/CICAT/HEAD/cicat/example/INFRASTRUCTURE.ap1000.xlsx -------------------------------------------------------------------------------- /cicat/example/RESULTS.ap1000.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/CICAT/HEAD/cicat/example/RESULTS.ap1000.xlsx -------------------------------------------------------------------------------- /cicat/example/SCENARIOS.ap1000.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/CICAT/HEAD/cicat/example/SCENARIOS.ap1000.xlsx -------------------------------------------------------------------------------- /cicat/generator/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cicat/generator/SSoutput.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/CICAT/HEAD/cicat/generator/SSoutput.py -------------------------------------------------------------------------------- /cicat/generator/TACSequence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/CICAT/HEAD/cicat/generator/TACSequence.py -------------------------------------------------------------------------------- /cicat/generator/TTPFilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/CICAT/HEAD/cicat/generator/TTPFilter.py -------------------------------------------------------------------------------- /cicat/generator/actorGEN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/CICAT/HEAD/cicat/generator/actorGEN.py -------------------------------------------------------------------------------- /cicat/generator/actorlists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/CICAT/HEAD/cicat/generator/actorlists.py -------------------------------------------------------------------------------- /cicat/generator/afactory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/CICAT/HEAD/cicat/generator/afactory.py -------------------------------------------------------------------------------- /cicat/generator/amodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/CICAT/HEAD/cicat/generator/amodel.py -------------------------------------------------------------------------------- /cicat/generator/atk2xl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/CICAT/HEAD/cicat/generator/atk2xl.py -------------------------------------------------------------------------------- /cicat/generator/atk4ics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/CICAT/HEAD/cicat/generator/atk4ics.py -------------------------------------------------------------------------------- /cicat/generator/cicat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/CICAT/HEAD/cicat/generator/cicat.py -------------------------------------------------------------------------------- /cicat/generator/columnloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/CICAT/HEAD/cicat/generator/columnloader.py -------------------------------------------------------------------------------- /cicat/generator/dbLoad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/CICAT/HEAD/cicat/generator/dbLoad.py -------------------------------------------------------------------------------- /cicat/generator/fastcache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/CICAT/HEAD/cicat/generator/fastcache.py -------------------------------------------------------------------------------- /cicat/generator/ffactory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/CICAT/HEAD/cicat/generator/ffactory.py -------------------------------------------------------------------------------- /cicat/generator/ifactory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/CICAT/HEAD/cicat/generator/ifactory.py -------------------------------------------------------------------------------- /cicat/generator/imodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/CICAT/HEAD/cicat/generator/imodel.py -------------------------------------------------------------------------------- /cicat/generator/loaddata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/CICAT/HEAD/cicat/generator/loaddata.py -------------------------------------------------------------------------------- /cicat/generator/mitGEN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/CICAT/HEAD/cicat/generator/mitGEN.py -------------------------------------------------------------------------------- /cicat/generator/scenGEN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/CICAT/HEAD/cicat/generator/scenGEN.py -------------------------------------------------------------------------------- /cicat/generator/spreadout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/CICAT/HEAD/cicat/generator/spreadout.py -------------------------------------------------------------------------------- /cicat/generator/stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/CICAT/HEAD/cicat/generator/stats.py -------------------------------------------------------------------------------- /cicat/generator/tfactory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/CICAT/HEAD/cicat/generator/tfactory.py -------------------------------------------------------------------------------- /cicat/generator/tmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/CICAT/HEAD/cicat/generator/tmodel.py -------------------------------------------------------------------------------- /cicat/generator/topology.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/CICAT/HEAD/cicat/generator/topology.py -------------------------------------------------------------------------------- /cicat/generator/vfactory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/CICAT/HEAD/cicat/generator/vfactory.py -------------------------------------------------------------------------------- /cicat/generator/zoneCrawlr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/CICAT/HEAD/cicat/generator/zoneCrawlr.py -------------------------------------------------------------------------------- /cicat/requirements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/CICAT/HEAD/cicat/requirements -------------------------------------------------------------------------------- /cicat/utests/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cicat/utests/utests.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/CICAT/HEAD/cicat/utests/utests.bat -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/CICAT/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docker_info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/CICAT/HEAD/docker_info.txt -------------------------------------------------------------------------------- /shared/placeholder.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitre/CICAT/HEAD/shared/placeholder.txt --------------------------------------------------------------------------------