Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/alan-turing-institute/causal-cyber-defence
This repository contains glue-code necessary to run dynamic Causal Bayesian optimisation within the Yawning Titan cyber-simulation environment.
https://github.com/alan-turing-institute/causal-cyber-defence
bayesian-optimization causal-inference causal-models causality cybersecurity decision-making-algorithms decision-making-under-uncertainty dynamics gym-environment time-series
Last synced: 3 months ago
JSON representation
This repository contains glue-code necessary to run dynamic Causal Bayesian optimisation within the Yawning Titan cyber-simulation environment.
- Host: GitHub
- URL: https://github.com/alan-turing-institute/causal-cyber-defence
- Owner: alan-turing-institute
- License: mit
- Created: 2022-07-28T09:14:15.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-08-05T15:17:51.000Z (over 2 years ago)
- Last Synced: 2024-03-20T20:58:10.441Z (11 months ago)
- Topics: bayesian-optimization, causal-inference, causal-models, causality, cybersecurity, decision-making-algorithms, decision-making-under-uncertainty, dynamics, gym-environment, time-series
- Language: Jupyter Notebook
- Homepage:
- Size: 1.04 MB
- Stars: 8
- Watchers: 3
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Developing Optimal Causal Cyber-Defence Agents via Cyber Security Simulation
This repository holds code for reproducing the results from the experimental section of the paper [Developing Optimal Causal Cyber-Defence Agents via Cyber-Security Simulation](https://www.researchgate.net/publication/362252214_Developing_Optimal_Causal_Cyber-Defence_Agents_via_Cyber_Security_Simulation).
## Abstract
In this paper we explore cyber security defence, through the unification of a novel cyber security simulator with models for (causal) decision-making through optimisation. Particular attention is paid to a recently published approach: dynamic causal Bayesian optimisation (DCBO). We propose that DCBO can act as a blue agent when provided with a view of a simulated network and a causal model of how a red agent spreads within that network. To investigate how DCBO can perform optimal interventions on host nodes, in order to reduce the cost of intrusions caused by the red agent. Through this we demonstrate a complete cyber-simulation system, which we use to generate observational data for DCBO and provide numerical quantitative results which lay the foundations for future work in this space.
## Installation
Use conda to create the environment from the `environment.yml` file:
```bash
conda env create -f environment.yml
```
Clone DCBO and YAWNING TITAN to the working directory:```bash
cd ..
git clone https://github.com/neildhir/DCBO.git
git clone https://github.com/dstl/YAWNING-TITAN.git
cd causal-cyber-defence
```
Run through the [Example.ipynb](Example.ipynb) notebook!## Citation
Please cite the ML4Cyber Workshop paper if you reference this work:
```
@inproceedings{inproceedings,
author = {Andrew, Alex and Spillard, Sam and Collyer, Joshua and Dhir, Neil},
year = {2022},
month = {07},
title = {Developing Optimal Causal Cyber-Defence Agents via Cyber Security Simulation},
maintitle = {International Confernece on Machine Learning (ICML)},
booktitle = {Workshop on Machine Learning for Cybersecurity (ML4Cyber)}
}
```