├── .gitignore ├── resources └── Sentinel │ └── SentinelRule-StorageAccounts-BlobRead_operation_on_sensitive_file_detected.json ├── terraform ├── main.tf ├── outputs.tf ├── resources │ └── StorageAccount │ │ ├── hr-documents │ │ ├── job-posting-personalassistent-draft.txt │ │ └── job-posting-secops-azure-draft.txt │ │ └── secretdata │ │ └── final-instructions.txt ├── security.tf ├── storage.tf ├── users.tf └── variables.tf └── workbook ├── base_config.yml ├── docs ├── css │ ├── custom.css │ ├── html.css │ └── jquery.fancybox.min.css ├── exercises │ ├── exercise1.md │ ├── exercise2.md │ ├── exercise3.md │ ├── exercise4.md │ ├── exercise5.md │ └── exercise6.md ├── img │ ├── 1.png │ ├── 10.png │ ├── 11.png │ ├── 12.png │ ├── 13.png │ ├── 14.png │ ├── 15.png │ ├── 16.png │ ├── 17.png │ ├── 18.png │ ├── 19.png │ ├── 2.png │ ├── 20.png │ ├── 21.png │ ├── 22.png │ ├── 23.png │ ├── 24.png │ ├── 25.png │ ├── 26.png │ ├── 27.png │ ├── 28.png │ ├── 29.png │ ├── 3.png │ ├── 30.png │ ├── 31.png │ ├── 32.png │ ├── 33.png │ ├── 34.png │ ├── 35.png │ ├── 36.png │ ├── 37.png │ ├── 38.png │ ├── 39.png │ ├── 4.png │ ├── 40.png │ ├── 41.png │ ├── 42.png │ ├── 43.png │ ├── 44.png │ ├── 45.png │ ├── 46.png │ ├── 47.png │ ├── 48.png │ ├── 49.png │ ├── 5.png │ ├── 50.png │ ├── 51.png │ ├── 52.png │ ├── 53.png │ ├── 54.png │ ├── 55.png │ ├── 56.png │ ├── 57.png │ ├── 58.png │ ├── 59.png │ ├── 6.png │ ├── 60.png │ ├── 61.png │ ├── 62.png │ ├── 63.png │ ├── 64.png │ ├── 65.png │ ├── 66.png │ ├── 67.png │ ├── 68.png │ ├── 69.png │ ├── 7.png │ ├── 70.png │ ├── 8.png │ ├── 9.png │ ├── detection-build-process.png │ ├── ex2-ch2-notimeforthat.gif │ ├── ex3-ch1-attention.gif │ ├── ex5-ch3-reboot-0.gif │ ├── ex5-ch3-reboot-1.gif │ ├── favicon.ico │ └── placeholder.png ├── index.md └── js │ ├── jquery-3.4.1.min.js │ ├── jquery.fancybox.min.js │ ├── jquery.min.js │ ├── jquery.min.map │ └── workbook.js ├── mkdocs.yml └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluemountaincyber/building-detections-azure/HEAD/.gitignore -------------------------------------------------------------------------------- /resources/Sentinel/SentinelRule-StorageAccounts-BlobRead_operation_on_sensitive_file_detected.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluemountaincyber/building-detections-azure/HEAD/resources/Sentinel/SentinelRule-StorageAccounts-BlobRead_operation_on_sensitive_file_detected.json -------------------------------------------------------------------------------- /terraform/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluemountaincyber/building-detections-azure/HEAD/terraform/main.tf -------------------------------------------------------------------------------- /terraform/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluemountaincyber/building-detections-azure/HEAD/terraform/outputs.tf -------------------------------------------------------------------------------- /terraform/resources/StorageAccount/hr-documents/job-posting-personalassistent-draft.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluemountaincyber/building-detections-azure/HEAD/terraform/resources/StorageAccount/hr-documents/job-posting-personalassistent-draft.txt -------------------------------------------------------------------------------- /terraform/resources/StorageAccount/hr-documents/job-posting-secops-azure-draft.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluemountaincyber/building-detections-azure/HEAD/terraform/resources/StorageAccount/hr-documents/job-posting-secops-azure-draft.txt -------------------------------------------------------------------------------- /terraform/resources/StorageAccount/secretdata/final-instructions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluemountaincyber/building-detections-azure/HEAD/terraform/resources/StorageAccount/secretdata/final-instructions.txt -------------------------------------------------------------------------------- /terraform/security.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluemountaincyber/building-detections-azure/HEAD/terraform/security.tf -------------------------------------------------------------------------------- /terraform/storage.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluemountaincyber/building-detections-azure/HEAD/terraform/storage.tf -------------------------------------------------------------------------------- /terraform/users.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluemountaincyber/building-detections-azure/HEAD/terraform/users.tf -------------------------------------------------------------------------------- /terraform/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluemountaincyber/building-detections-azure/HEAD/terraform/variables.tf -------------------------------------------------------------------------------- /workbook/base_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluemountaincyber/building-detections-azure/HEAD/workbook/base_config.yml -------------------------------------------------------------------------------- /workbook/docs/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluemountaincyber/building-detections-azure/HEAD/workbook/docs/css/custom.css -------------------------------------------------------------------------------- /workbook/docs/css/html.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluemountaincyber/building-detections-azure/HEAD/workbook/docs/css/html.css -------------------------------------------------------------------------------- /workbook/docs/css/jquery.fancybox.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluemountaincyber/building-detections-azure/HEAD/workbook/docs/css/jquery.fancybox.min.css -------------------------------------------------------------------------------- /workbook/docs/exercises/exercise1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluemountaincyber/building-detections-azure/HEAD/workbook/docs/exercises/exercise1.md -------------------------------------------------------------------------------- /workbook/docs/exercises/exercise2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluemountaincyber/building-detections-azure/HEAD/workbook/docs/exercises/exercise2.md -------------------------------------------------------------------------------- /workbook/docs/exercises/exercise3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluemountaincyber/building-detections-azure/HEAD/workbook/docs/exercises/exercise3.md -------------------------------------------------------------------------------- /workbook/docs/exercises/exercise4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluemountaincyber/building-detections-azure/HEAD/workbook/docs/exercises/exercise4.md -------------------------------------------------------------------------------- /workbook/docs/exercises/exercise5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluemountaincyber/building-detections-azure/HEAD/workbook/docs/exercises/exercise5.md -------------------------------------------------------------------------------- /workbook/docs/exercises/exercise6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluemountaincyber/building-detections-azure/HEAD/workbook/docs/exercises/exercise6.md -------------------------------------------------------------------------------- /workbook/docs/img/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluemountaincyber/building-detections-azure/HEAD/workbook/docs/img/1.png -------------------------------------------------------------------------------- /workbook/docs/img/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluemountaincyber/building-detections-azure/HEAD/workbook/docs/img/10.png -------------------------------------------------------------------------------- /workbook/docs/img/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluemountaincyber/building-detections-azure/HEAD/workbook/docs/img/11.png -------------------------------------------------------------------------------- /workbook/docs/img/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluemountaincyber/building-detections-azure/HEAD/workbook/docs/img/12.png -------------------------------------------------------------------------------- /workbook/docs/img/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluemountaincyber/building-detections-azure/HEAD/workbook/docs/img/13.png -------------------------------------------------------------------------------- /workbook/docs/img/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluemountaincyber/building-detections-azure/HEAD/workbook/docs/img/14.png -------------------------------------------------------------------------------- /workbook/docs/img/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluemountaincyber/building-detections-azure/HEAD/workbook/docs/img/15.png -------------------------------------------------------------------------------- /workbook/docs/img/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluemountaincyber/building-detections-azure/HEAD/workbook/docs/img/16.png -------------------------------------------------------------------------------- /workbook/docs/img/17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluemountaincyber/building-detections-azure/HEAD/workbook/docs/img/17.png -------------------------------------------------------------------------------- /workbook/docs/img/18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluemountaincyber/building-detections-azure/HEAD/workbook/docs/img/18.png -------------------------------------------------------------------------------- /workbook/docs/img/19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluemountaincyber/building-detections-azure/HEAD/workbook/docs/img/19.png -------------------------------------------------------------------------------- /workbook/docs/img/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluemountaincyber/building-detections-azure/HEAD/workbook/docs/img/2.png -------------------------------------------------------------------------------- /workbook/docs/img/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluemountaincyber/building-detections-azure/HEAD/workbook/docs/img/20.png -------------------------------------------------------------------------------- /workbook/docs/img/21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluemountaincyber/building-detections-azure/HEAD/workbook/docs/img/21.png -------------------------------------------------------------------------------- /workbook/docs/img/22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluemountaincyber/building-detections-azure/HEAD/workbook/docs/img/22.png -------------------------------------------------------------------------------- /workbook/docs/img/23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluemountaincyber/building-detections-azure/HEAD/workbook/docs/img/23.png -------------------------------------------------------------------------------- /workbook/docs/img/24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluemountaincyber/building-detections-azure/HEAD/workbook/docs/img/24.png -------------------------------------------------------------------------------- /workbook/docs/img/25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluemountaincyber/building-detections-azure/HEAD/workbook/docs/img/25.png -------------------------------------------------------------------------------- /workbook/docs/img/26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluemountaincyber/building-detections-azure/HEAD/workbook/docs/img/26.png -------------------------------------------------------------------------------- /workbook/docs/img/27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluemountaincyber/building-detections-azure/HEAD/workbook/docs/img/27.png -------------------------------------------------------------------------------- /workbook/docs/img/28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluemountaincyber/building-detections-azure/HEAD/workbook/docs/img/28.png -------------------------------------------------------------------------------- /workbook/docs/img/29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluemountaincyber/building-detections-azure/HEAD/workbook/docs/img/29.png -------------------------------------------------------------------------------- /workbook/docs/img/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluemountaincyber/building-detections-azure/HEAD/workbook/docs/img/3.png -------------------------------------------------------------------------------- /workbook/docs/img/30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluemountaincyber/building-detections-azure/HEAD/workbook/docs/img/30.png -------------------------------------------------------------------------------- /workbook/docs/img/31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluemountaincyber/building-detections-azure/HEAD/workbook/docs/img/31.png -------------------------------------------------------------------------------- /workbook/docs/img/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluemountaincyber/building-detections-azure/HEAD/workbook/docs/img/32.png -------------------------------------------------------------------------------- /workbook/docs/img/33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluemountaincyber/building-detections-azure/HEAD/workbook/docs/img/33.png -------------------------------------------------------------------------------- /workbook/docs/img/34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluemountaincyber/building-detections-azure/HEAD/workbook/docs/img/34.png -------------------------------------------------------------------------------- /workbook/docs/img/35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluemountaincyber/building-detections-azure/HEAD/workbook/docs/img/35.png -------------------------------------------------------------------------------- /workbook/docs/img/36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluemountaincyber/building-detections-azure/HEAD/workbook/docs/img/36.png -------------------------------------------------------------------------------- /workbook/docs/img/37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluemountaincyber/building-detections-azure/HEAD/workbook/docs/img/37.png -------------------------------------------------------------------------------- /workbook/docs/img/38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluemountaincyber/building-detections-azure/HEAD/workbook/docs/img/38.png -------------------------------------------------------------------------------- /workbook/docs/img/39.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluemountaincyber/building-detections-azure/HEAD/workbook/docs/img/39.png -------------------------------------------------------------------------------- /workbook/docs/img/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluemountaincyber/building-detections-azure/HEAD/workbook/docs/img/4.png -------------------------------------------------------------------------------- /workbook/docs/img/40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluemountaincyber/building-detections-azure/HEAD/workbook/docs/img/40.png -------------------------------------------------------------------------------- /workbook/docs/img/41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluemountaincyber/building-detections-azure/HEAD/workbook/docs/img/41.png -------------------------------------------------------------------------------- /workbook/docs/img/42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluemountaincyber/building-detections-azure/HEAD/workbook/docs/img/42.png -------------------------------------------------------------------------------- /workbook/docs/img/43.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluemountaincyber/building-detections-azure/HEAD/workbook/docs/img/43.png -------------------------------------------------------------------------------- /workbook/docs/img/44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluemountaincyber/building-detections-azure/HEAD/workbook/docs/img/44.png -------------------------------------------------------------------------------- /workbook/docs/img/45.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluemountaincyber/building-detections-azure/HEAD/workbook/docs/img/45.png -------------------------------------------------------------------------------- /workbook/docs/img/46.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluemountaincyber/building-detections-azure/HEAD/workbook/docs/img/46.png -------------------------------------------------------------------------------- /workbook/docs/img/47.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluemountaincyber/building-detections-azure/HEAD/workbook/docs/img/47.png -------------------------------------------------------------------------------- /workbook/docs/img/48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluemountaincyber/building-detections-azure/HEAD/workbook/docs/img/48.png -------------------------------------------------------------------------------- /workbook/docs/img/49.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluemountaincyber/building-detections-azure/HEAD/workbook/docs/img/49.png -------------------------------------------------------------------------------- /workbook/docs/img/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluemountaincyber/building-detections-azure/HEAD/workbook/docs/img/5.png -------------------------------------------------------------------------------- /workbook/docs/img/50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluemountaincyber/building-detections-azure/HEAD/workbook/docs/img/50.png -------------------------------------------------------------------------------- /workbook/docs/img/51.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluemountaincyber/building-detections-azure/HEAD/workbook/docs/img/51.png -------------------------------------------------------------------------------- /workbook/docs/img/52.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluemountaincyber/building-detections-azure/HEAD/workbook/docs/img/52.png -------------------------------------------------------------------------------- /workbook/docs/img/53.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluemountaincyber/building-detections-azure/HEAD/workbook/docs/img/53.png -------------------------------------------------------------------------------- /workbook/docs/img/54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluemountaincyber/building-detections-azure/HEAD/workbook/docs/img/54.png -------------------------------------------------------------------------------- /workbook/docs/img/55.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluemountaincyber/building-detections-azure/HEAD/workbook/docs/img/55.png -------------------------------------------------------------------------------- /workbook/docs/img/56.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluemountaincyber/building-detections-azure/HEAD/workbook/docs/img/56.png -------------------------------------------------------------------------------- /workbook/docs/img/57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluemountaincyber/building-detections-azure/HEAD/workbook/docs/img/57.png -------------------------------------------------------------------------------- /workbook/docs/img/58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluemountaincyber/building-detections-azure/HEAD/workbook/docs/img/58.png -------------------------------------------------------------------------------- /workbook/docs/img/59.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluemountaincyber/building-detections-azure/HEAD/workbook/docs/img/59.png -------------------------------------------------------------------------------- /workbook/docs/img/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluemountaincyber/building-detections-azure/HEAD/workbook/docs/img/6.png -------------------------------------------------------------------------------- /workbook/docs/img/60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluemountaincyber/building-detections-azure/HEAD/workbook/docs/img/60.png -------------------------------------------------------------------------------- /workbook/docs/img/61.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluemountaincyber/building-detections-azure/HEAD/workbook/docs/img/61.png -------------------------------------------------------------------------------- /workbook/docs/img/62.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluemountaincyber/building-detections-azure/HEAD/workbook/docs/img/62.png -------------------------------------------------------------------------------- /workbook/docs/img/63.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluemountaincyber/building-detections-azure/HEAD/workbook/docs/img/63.png -------------------------------------------------------------------------------- /workbook/docs/img/64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluemountaincyber/building-detections-azure/HEAD/workbook/docs/img/64.png -------------------------------------------------------------------------------- /workbook/docs/img/65.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluemountaincyber/building-detections-azure/HEAD/workbook/docs/img/65.png -------------------------------------------------------------------------------- /workbook/docs/img/66.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluemountaincyber/building-detections-azure/HEAD/workbook/docs/img/66.png -------------------------------------------------------------------------------- /workbook/docs/img/67.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluemountaincyber/building-detections-azure/HEAD/workbook/docs/img/67.png -------------------------------------------------------------------------------- /workbook/docs/img/68.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluemountaincyber/building-detections-azure/HEAD/workbook/docs/img/68.png -------------------------------------------------------------------------------- /workbook/docs/img/69.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluemountaincyber/building-detections-azure/HEAD/workbook/docs/img/69.png -------------------------------------------------------------------------------- /workbook/docs/img/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluemountaincyber/building-detections-azure/HEAD/workbook/docs/img/7.png -------------------------------------------------------------------------------- /workbook/docs/img/70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluemountaincyber/building-detections-azure/HEAD/workbook/docs/img/70.png -------------------------------------------------------------------------------- /workbook/docs/img/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluemountaincyber/building-detections-azure/HEAD/workbook/docs/img/8.png -------------------------------------------------------------------------------- /workbook/docs/img/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluemountaincyber/building-detections-azure/HEAD/workbook/docs/img/9.png -------------------------------------------------------------------------------- /workbook/docs/img/detection-build-process.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluemountaincyber/building-detections-azure/HEAD/workbook/docs/img/detection-build-process.png -------------------------------------------------------------------------------- /workbook/docs/img/ex2-ch2-notimeforthat.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluemountaincyber/building-detections-azure/HEAD/workbook/docs/img/ex2-ch2-notimeforthat.gif -------------------------------------------------------------------------------- /workbook/docs/img/ex3-ch1-attention.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluemountaincyber/building-detections-azure/HEAD/workbook/docs/img/ex3-ch1-attention.gif -------------------------------------------------------------------------------- /workbook/docs/img/ex5-ch3-reboot-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluemountaincyber/building-detections-azure/HEAD/workbook/docs/img/ex5-ch3-reboot-0.gif -------------------------------------------------------------------------------- /workbook/docs/img/ex5-ch3-reboot-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluemountaincyber/building-detections-azure/HEAD/workbook/docs/img/ex5-ch3-reboot-1.gif -------------------------------------------------------------------------------- /workbook/docs/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluemountaincyber/building-detections-azure/HEAD/workbook/docs/img/favicon.ico -------------------------------------------------------------------------------- /workbook/docs/img/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluemountaincyber/building-detections-azure/HEAD/workbook/docs/img/placeholder.png -------------------------------------------------------------------------------- /workbook/docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluemountaincyber/building-detections-azure/HEAD/workbook/docs/index.md -------------------------------------------------------------------------------- /workbook/docs/js/jquery-3.4.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluemountaincyber/building-detections-azure/HEAD/workbook/docs/js/jquery-3.4.1.min.js -------------------------------------------------------------------------------- /workbook/docs/js/jquery.fancybox.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluemountaincyber/building-detections-azure/HEAD/workbook/docs/js/jquery.fancybox.min.js -------------------------------------------------------------------------------- /workbook/docs/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluemountaincyber/building-detections-azure/HEAD/workbook/docs/js/jquery.min.js -------------------------------------------------------------------------------- /workbook/docs/js/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluemountaincyber/building-detections-azure/HEAD/workbook/docs/js/jquery.min.map -------------------------------------------------------------------------------- /workbook/docs/js/workbook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluemountaincyber/building-detections-azure/HEAD/workbook/docs/js/workbook.js -------------------------------------------------------------------------------- /workbook/mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluemountaincyber/building-detections-azure/HEAD/workbook/mkdocs.yml -------------------------------------------------------------------------------- /workbook/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluemountaincyber/building-detections-azure/HEAD/workbook/requirements.txt --------------------------------------------------------------------------------