├── .gitignore ├── README.md ├── __init__.py ├── attack_capabilities.py ├── attack_goal.py ├── attack_lib.py ├── attack_start.py ├── attack_stealth.py ├── data_types.py ├── login_synthesis.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantho/lateral-movement-simulator/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantho/lateral-movement-simulator/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /attack_capabilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantho/lateral-movement-simulator/HEAD/attack_capabilities.py -------------------------------------------------------------------------------- /attack_goal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantho/lateral-movement-simulator/HEAD/attack_goal.py -------------------------------------------------------------------------------- /attack_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantho/lateral-movement-simulator/HEAD/attack_lib.py -------------------------------------------------------------------------------- /attack_start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantho/lateral-movement-simulator/HEAD/attack_start.py -------------------------------------------------------------------------------- /attack_stealth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantho/lateral-movement-simulator/HEAD/attack_stealth.py -------------------------------------------------------------------------------- /data_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantho/lateral-movement-simulator/HEAD/data_types.py -------------------------------------------------------------------------------- /login_synthesis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantho/lateral-movement-simulator/HEAD/login_synthesis.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grantho/lateral-movement-simulator/HEAD/utils.py --------------------------------------------------------------------------------