├── .gitignore ├── .npmrc ├── .vscode └── settings.json ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── SECURITY.md ├── SUPPORT.md ├── global.json ├── package.json ├── samples ├── IaCMapping │ ├── azure-pipelines.yml │ ├── main.tf │ └── readme.md ├── configs │ ├── antimalware.gdnconfig │ ├── bandit.gdnconfig │ ├── binskim.gdnconfig │ ├── checkov.gdnconfig │ ├── eslint.gdnconfig │ ├── templateanalyzer.gdnconfig │ ├── terrascan.gdnconfig │ └── trivy.gdnconfig ├── copilotDemo │ ├── azure-pipelines.yml │ └── deployment.yml ├── readme.md └── trivypipeline │ └── azure-pipelines.yml ├── scripts ├── .publishers │ └── debug-publishers.json ├── ConvertTo-Hashtable.psm1 ├── Get-ExtensionVersion.ps1 ├── Rollback.ps1 ├── Set-PublisherInfo.ps1 ├── Test-VersionString.psm1 ├── Update-BuildTaskVersion.ps1 ├── Update-BuildTaskVersions.ps1 └── Update-ExtensionVersion.ps1 ├── src ├── MicrosoftSecurityDevOps │ └── v1 │ │ ├── command-executor.ts │ │ ├── container-mapping.ts │ │ ├── index.ts │ │ ├── msdo-helpers.ts │ │ ├── msdo-interface.ts │ │ ├── msdo.ts │ │ └── task.json ├── extension-eula.md ├── extension-manifest-debug.json ├── extension-manifest.json ├── extension-readme.md ├── icon.png └── tsconfig.json └── test ├── MicrosoftSecurityDevOps └── v1 │ ├── command-executor.tests.ts │ ├── container-mapping.tests.ts │ ├── msdo-helpers.tests.ts │ └── msdoMock.ts ├── testCommon.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/security-devops-azdevops/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/security-devops-azdevops/HEAD/.npmrc -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/security-devops-azdevops/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/security-devops-azdevops/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/security-devops-azdevops/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/security-devops-azdevops/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/security-devops-azdevops/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/security-devops-azdevops/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- 1 | { 2 | "projects": [ "src" ] 3 | } -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/security-devops-azdevops/HEAD/package.json -------------------------------------------------------------------------------- /samples/IaCMapping/azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/security-devops-azdevops/HEAD/samples/IaCMapping/azure-pipelines.yml -------------------------------------------------------------------------------- /samples/IaCMapping/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/security-devops-azdevops/HEAD/samples/IaCMapping/main.tf -------------------------------------------------------------------------------- /samples/IaCMapping/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/security-devops-azdevops/HEAD/samples/IaCMapping/readme.md -------------------------------------------------------------------------------- /samples/configs/antimalware.gdnconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/security-devops-azdevops/HEAD/samples/configs/antimalware.gdnconfig -------------------------------------------------------------------------------- /samples/configs/bandit.gdnconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/security-devops-azdevops/HEAD/samples/configs/bandit.gdnconfig -------------------------------------------------------------------------------- /samples/configs/binskim.gdnconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/security-devops-azdevops/HEAD/samples/configs/binskim.gdnconfig -------------------------------------------------------------------------------- /samples/configs/checkov.gdnconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/security-devops-azdevops/HEAD/samples/configs/checkov.gdnconfig -------------------------------------------------------------------------------- /samples/configs/eslint.gdnconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/security-devops-azdevops/HEAD/samples/configs/eslint.gdnconfig -------------------------------------------------------------------------------- /samples/configs/templateanalyzer.gdnconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/security-devops-azdevops/HEAD/samples/configs/templateanalyzer.gdnconfig -------------------------------------------------------------------------------- /samples/configs/terrascan.gdnconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/security-devops-azdevops/HEAD/samples/configs/terrascan.gdnconfig -------------------------------------------------------------------------------- /samples/configs/trivy.gdnconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/security-devops-azdevops/HEAD/samples/configs/trivy.gdnconfig -------------------------------------------------------------------------------- /samples/copilotDemo/azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/security-devops-azdevops/HEAD/samples/copilotDemo/azure-pipelines.yml -------------------------------------------------------------------------------- /samples/copilotDemo/deployment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/security-devops-azdevops/HEAD/samples/copilotDemo/deployment.yml -------------------------------------------------------------------------------- /samples/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/security-devops-azdevops/HEAD/samples/readme.md -------------------------------------------------------------------------------- /samples/trivypipeline/azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/security-devops-azdevops/HEAD/samples/trivypipeline/azure-pipelines.yml -------------------------------------------------------------------------------- /scripts/.publishers/debug-publishers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/security-devops-azdevops/HEAD/scripts/.publishers/debug-publishers.json -------------------------------------------------------------------------------- /scripts/ConvertTo-Hashtable.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/security-devops-azdevops/HEAD/scripts/ConvertTo-Hashtable.psm1 -------------------------------------------------------------------------------- /scripts/Get-ExtensionVersion.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/security-devops-azdevops/HEAD/scripts/Get-ExtensionVersion.ps1 -------------------------------------------------------------------------------- /scripts/Rollback.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/security-devops-azdevops/HEAD/scripts/Rollback.ps1 -------------------------------------------------------------------------------- /scripts/Set-PublisherInfo.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/security-devops-azdevops/HEAD/scripts/Set-PublisherInfo.ps1 -------------------------------------------------------------------------------- /scripts/Test-VersionString.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/security-devops-azdevops/HEAD/scripts/Test-VersionString.psm1 -------------------------------------------------------------------------------- /scripts/Update-BuildTaskVersion.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/security-devops-azdevops/HEAD/scripts/Update-BuildTaskVersion.ps1 -------------------------------------------------------------------------------- /scripts/Update-BuildTaskVersions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/security-devops-azdevops/HEAD/scripts/Update-BuildTaskVersions.ps1 -------------------------------------------------------------------------------- /scripts/Update-ExtensionVersion.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/security-devops-azdevops/HEAD/scripts/Update-ExtensionVersion.ps1 -------------------------------------------------------------------------------- /src/MicrosoftSecurityDevOps/v1/command-executor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/security-devops-azdevops/HEAD/src/MicrosoftSecurityDevOps/v1/command-executor.ts -------------------------------------------------------------------------------- /src/MicrosoftSecurityDevOps/v1/container-mapping.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/security-devops-azdevops/HEAD/src/MicrosoftSecurityDevOps/v1/container-mapping.ts -------------------------------------------------------------------------------- /src/MicrosoftSecurityDevOps/v1/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/security-devops-azdevops/HEAD/src/MicrosoftSecurityDevOps/v1/index.ts -------------------------------------------------------------------------------- /src/MicrosoftSecurityDevOps/v1/msdo-helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/security-devops-azdevops/HEAD/src/MicrosoftSecurityDevOps/v1/msdo-helpers.ts -------------------------------------------------------------------------------- /src/MicrosoftSecurityDevOps/v1/msdo-interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/security-devops-azdevops/HEAD/src/MicrosoftSecurityDevOps/v1/msdo-interface.ts -------------------------------------------------------------------------------- /src/MicrosoftSecurityDevOps/v1/msdo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/security-devops-azdevops/HEAD/src/MicrosoftSecurityDevOps/v1/msdo.ts -------------------------------------------------------------------------------- /src/MicrosoftSecurityDevOps/v1/task.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/security-devops-azdevops/HEAD/src/MicrosoftSecurityDevOps/v1/task.json -------------------------------------------------------------------------------- /src/extension-eula.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/security-devops-azdevops/HEAD/src/extension-eula.md -------------------------------------------------------------------------------- /src/extension-manifest-debug.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/security-devops-azdevops/HEAD/src/extension-manifest-debug.json -------------------------------------------------------------------------------- /src/extension-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/security-devops-azdevops/HEAD/src/extension-manifest.json -------------------------------------------------------------------------------- /src/extension-readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/security-devops-azdevops/HEAD/src/extension-readme.md -------------------------------------------------------------------------------- /src/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/security-devops-azdevops/HEAD/src/icon.png -------------------------------------------------------------------------------- /src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/security-devops-azdevops/HEAD/src/tsconfig.json -------------------------------------------------------------------------------- /test/MicrosoftSecurityDevOps/v1/command-executor.tests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/security-devops-azdevops/HEAD/test/MicrosoftSecurityDevOps/v1/command-executor.tests.ts -------------------------------------------------------------------------------- /test/MicrosoftSecurityDevOps/v1/container-mapping.tests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/security-devops-azdevops/HEAD/test/MicrosoftSecurityDevOps/v1/container-mapping.tests.ts -------------------------------------------------------------------------------- /test/MicrosoftSecurityDevOps/v1/msdo-helpers.tests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/security-devops-azdevops/HEAD/test/MicrosoftSecurityDevOps/v1/msdo-helpers.tests.ts -------------------------------------------------------------------------------- /test/MicrosoftSecurityDevOps/v1/msdoMock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/security-devops-azdevops/HEAD/test/MicrosoftSecurityDevOps/v1/msdoMock.ts -------------------------------------------------------------------------------- /test/testCommon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/security-devops-azdevops/HEAD/test/testCommon.ts -------------------------------------------------------------------------------- /test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/security-devops-azdevops/HEAD/test/tsconfig.json --------------------------------------------------------------------------------