├── DSC ├── CreateADPDC.ps1 └── CreateADPDC.zip ├── LICENSE ├── README.md ├── Readme.md ├── azuredeploy.json ├── azuredeploy.parameters.json ├── chapter-10 └── sampletemplate.json ├── chapter-11 └── templates │ ├── Readme.md │ ├── azuredeploy.json │ └── installscript.ps1 ├── chapter-13 └── changeincidentseverity.json ├── chapter-2 └── pentest-vm-template │ ├── Readme.md │ ├── azuredeploy.json │ ├── azuredeploy.parameters.json │ ├── installscript.ps1 │ └── metadata.json ├── chapter-3 ├── admin-token-theft │ ├── admin-token-theft-scenario-linux-cleanup.ps1 │ ├── admin-token-theft-scenario-linux.ps1 │ ├── admin-token-theft-scenario-windows-cleanup.ps1 │ └── admin-token-theft-scenario-windows.ps1 ├── azure-password-spray │ ├── cleanup-test-users.ps1 │ └── create-test-users.ps1 └── custom-script-extensions │ ├── azure_cli_install.sh │ ├── azure_powershell_install.ps1 │ ├── linux_custom_extension.json │ └── windows_custom_extension.json ├── chapter-5 └── templates │ ├── Readme.md │ ├── azuredeploy.json │ ├── azuredeploy_with_subnets.json │ ├── install_apache.sh │ ├── installscript.ps1 │ └── metadata.json ├── chapter-6 └── templates │ ├── Readme.md │ ├── azuredeploy.json │ ├── azuredeploy_with_subnets.json │ ├── install_apache.sh │ ├── installscript.ps1 │ └── metadata.json ├── chapter-9 ├── aks-aad-setup └── templates │ ├── Readme.md │ ├── azuredeploy.json │ └── post_deployment.sh ├── metadata.json └── nestedtemplates ├── vnet-with-dns-server.json └── vnet.json /DSC/CreateADPDC.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Microsoft-Azure-Security-Technologies-Certification-and-Beyond/HEAD/DSC/CreateADPDC.ps1 -------------------------------------------------------------------------------- /DSC/CreateADPDC.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Microsoft-Azure-Security-Technologies-Certification-and-Beyond/HEAD/DSC/CreateADPDC.zip -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Microsoft-Azure-Security-Technologies-Certification-and-Beyond/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Microsoft-Azure-Security-Technologies-Certification-and-Beyond/HEAD/README.md -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Microsoft-Azure-Security-Technologies-Certification-and-Beyond/HEAD/Readme.md -------------------------------------------------------------------------------- /azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Microsoft-Azure-Security-Technologies-Certification-and-Beyond/HEAD/azuredeploy.json -------------------------------------------------------------------------------- /azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Microsoft-Azure-Security-Technologies-Certification-and-Beyond/HEAD/azuredeploy.parameters.json -------------------------------------------------------------------------------- /chapter-10/sampletemplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Microsoft-Azure-Security-Technologies-Certification-and-Beyond/HEAD/chapter-10/sampletemplate.json -------------------------------------------------------------------------------- /chapter-11/templates/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Microsoft-Azure-Security-Technologies-Certification-and-Beyond/HEAD/chapter-11/templates/Readme.md -------------------------------------------------------------------------------- /chapter-11/templates/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Microsoft-Azure-Security-Technologies-Certification-and-Beyond/HEAD/chapter-11/templates/azuredeploy.json -------------------------------------------------------------------------------- /chapter-11/templates/installscript.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Microsoft-Azure-Security-Technologies-Certification-and-Beyond/HEAD/chapter-11/templates/installscript.ps1 -------------------------------------------------------------------------------- /chapter-13/changeincidentseverity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Microsoft-Azure-Security-Technologies-Certification-and-Beyond/HEAD/chapter-13/changeincidentseverity.json -------------------------------------------------------------------------------- /chapter-2/pentest-vm-template/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Microsoft-Azure-Security-Technologies-Certification-and-Beyond/HEAD/chapter-2/pentest-vm-template/Readme.md -------------------------------------------------------------------------------- /chapter-2/pentest-vm-template/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Microsoft-Azure-Security-Technologies-Certification-and-Beyond/HEAD/chapter-2/pentest-vm-template/azuredeploy.json -------------------------------------------------------------------------------- /chapter-2/pentest-vm-template/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Microsoft-Azure-Security-Technologies-Certification-and-Beyond/HEAD/chapter-2/pentest-vm-template/azuredeploy.parameters.json -------------------------------------------------------------------------------- /chapter-2/pentest-vm-template/installscript.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Microsoft-Azure-Security-Technologies-Certification-and-Beyond/HEAD/chapter-2/pentest-vm-template/installscript.ps1 -------------------------------------------------------------------------------- /chapter-2/pentest-vm-template/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Microsoft-Azure-Security-Technologies-Certification-and-Beyond/HEAD/chapter-2/pentest-vm-template/metadata.json -------------------------------------------------------------------------------- /chapter-3/admin-token-theft/admin-token-theft-scenario-linux-cleanup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Microsoft-Azure-Security-Technologies-Certification-and-Beyond/HEAD/chapter-3/admin-token-theft/admin-token-theft-scenario-linux-cleanup.ps1 -------------------------------------------------------------------------------- /chapter-3/admin-token-theft/admin-token-theft-scenario-linux.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Microsoft-Azure-Security-Technologies-Certification-and-Beyond/HEAD/chapter-3/admin-token-theft/admin-token-theft-scenario-linux.ps1 -------------------------------------------------------------------------------- /chapter-3/admin-token-theft/admin-token-theft-scenario-windows-cleanup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Microsoft-Azure-Security-Technologies-Certification-and-Beyond/HEAD/chapter-3/admin-token-theft/admin-token-theft-scenario-windows-cleanup.ps1 -------------------------------------------------------------------------------- /chapter-3/admin-token-theft/admin-token-theft-scenario-windows.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Microsoft-Azure-Security-Technologies-Certification-and-Beyond/HEAD/chapter-3/admin-token-theft/admin-token-theft-scenario-windows.ps1 -------------------------------------------------------------------------------- /chapter-3/azure-password-spray/cleanup-test-users.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Microsoft-Azure-Security-Technologies-Certification-and-Beyond/HEAD/chapter-3/azure-password-spray/cleanup-test-users.ps1 -------------------------------------------------------------------------------- /chapter-3/azure-password-spray/create-test-users.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Microsoft-Azure-Security-Technologies-Certification-and-Beyond/HEAD/chapter-3/azure-password-spray/create-test-users.ps1 -------------------------------------------------------------------------------- /chapter-3/custom-script-extensions/azure_cli_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Microsoft-Azure-Security-Technologies-Certification-and-Beyond/HEAD/chapter-3/custom-script-extensions/azure_cli_install.sh -------------------------------------------------------------------------------- /chapter-3/custom-script-extensions/azure_powershell_install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Microsoft-Azure-Security-Technologies-Certification-and-Beyond/HEAD/chapter-3/custom-script-extensions/azure_powershell_install.ps1 -------------------------------------------------------------------------------- /chapter-3/custom-script-extensions/linux_custom_extension.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Microsoft-Azure-Security-Technologies-Certification-and-Beyond/HEAD/chapter-3/custom-script-extensions/linux_custom_extension.json -------------------------------------------------------------------------------- /chapter-3/custom-script-extensions/windows_custom_extension.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Microsoft-Azure-Security-Technologies-Certification-and-Beyond/HEAD/chapter-3/custom-script-extensions/windows_custom_extension.json -------------------------------------------------------------------------------- /chapter-5/templates/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Microsoft-Azure-Security-Technologies-Certification-and-Beyond/HEAD/chapter-5/templates/Readme.md -------------------------------------------------------------------------------- /chapter-5/templates/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Microsoft-Azure-Security-Technologies-Certification-and-Beyond/HEAD/chapter-5/templates/azuredeploy.json -------------------------------------------------------------------------------- /chapter-5/templates/azuredeploy_with_subnets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Microsoft-Azure-Security-Technologies-Certification-and-Beyond/HEAD/chapter-5/templates/azuredeploy_with_subnets.json -------------------------------------------------------------------------------- /chapter-5/templates/install_apache.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Microsoft-Azure-Security-Technologies-Certification-and-Beyond/HEAD/chapter-5/templates/install_apache.sh -------------------------------------------------------------------------------- /chapter-5/templates/installscript.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Microsoft-Azure-Security-Technologies-Certification-and-Beyond/HEAD/chapter-5/templates/installscript.ps1 -------------------------------------------------------------------------------- /chapter-5/templates/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Microsoft-Azure-Security-Technologies-Certification-and-Beyond/HEAD/chapter-5/templates/metadata.json -------------------------------------------------------------------------------- /chapter-6/templates/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Microsoft-Azure-Security-Technologies-Certification-and-Beyond/HEAD/chapter-6/templates/Readme.md -------------------------------------------------------------------------------- /chapter-6/templates/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Microsoft-Azure-Security-Technologies-Certification-and-Beyond/HEAD/chapter-6/templates/azuredeploy.json -------------------------------------------------------------------------------- /chapter-6/templates/azuredeploy_with_subnets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Microsoft-Azure-Security-Technologies-Certification-and-Beyond/HEAD/chapter-6/templates/azuredeploy_with_subnets.json -------------------------------------------------------------------------------- /chapter-6/templates/install_apache.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Microsoft-Azure-Security-Technologies-Certification-and-Beyond/HEAD/chapter-6/templates/install_apache.sh -------------------------------------------------------------------------------- /chapter-6/templates/installscript.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Microsoft-Azure-Security-Technologies-Certification-and-Beyond/HEAD/chapter-6/templates/installscript.ps1 -------------------------------------------------------------------------------- /chapter-6/templates/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Microsoft-Azure-Security-Technologies-Certification-and-Beyond/HEAD/chapter-6/templates/metadata.json -------------------------------------------------------------------------------- /chapter-9/aks-aad-setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Microsoft-Azure-Security-Technologies-Certification-and-Beyond/HEAD/chapter-9/aks-aad-setup -------------------------------------------------------------------------------- /chapter-9/templates/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Microsoft-Azure-Security-Technologies-Certification-and-Beyond/HEAD/chapter-9/templates/Readme.md -------------------------------------------------------------------------------- /chapter-9/templates/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Microsoft-Azure-Security-Technologies-Certification-and-Beyond/HEAD/chapter-9/templates/azuredeploy.json -------------------------------------------------------------------------------- /chapter-9/templates/post_deployment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Microsoft-Azure-Security-Technologies-Certification-and-Beyond/HEAD/chapter-9/templates/post_deployment.sh -------------------------------------------------------------------------------- /metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Microsoft-Azure-Security-Technologies-Certification-and-Beyond/HEAD/metadata.json -------------------------------------------------------------------------------- /nestedtemplates/vnet-with-dns-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Microsoft-Azure-Security-Technologies-Certification-and-Beyond/HEAD/nestedtemplates/vnet-with-dns-server.json -------------------------------------------------------------------------------- /nestedtemplates/vnet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Microsoft-Azure-Security-Technologies-Certification-and-Beyond/HEAD/nestedtemplates/vnet.json --------------------------------------------------------------------------------