├── .gitignore ├── CODE_OF_CONDUCT.md ├── Checks ├── check-Audit101.ps1 ├── check-Audit102.ps1 ├── check-CC101.ps1 ├── check-CC102.ps1 ├── check-CC103.ps1 ├── check-ComplianceManager.ps1 ├── check-DLP.ps1 ├── check-IG101.ps1 ├── check-IG102.ps1 ├── check-IP101.ps1 ├── check-IP102.ps1 ├── check-IP103.ps1 ├── check-IP104.ps1 ├── check-IRM102.ps1 ├── check-IRM103.ps1 ├── check-RM101.ps1 ├── check-RM102.ps1 ├── check-eDiscovery101.ps1 └── check-eDiscovery102.ps1 ├── DLPImprovementActions └── ActionsInformation.xml ├── Image └── logo.jpg ├── LICENSE ├── MCCA.psm1 ├── Outputs ├── output-html.ps1 └── output-json.ps1 ├── README.md ├── Remediation └── RemediationAction.ps1 ├── RunMCCAReport.ps1 ├── SECURITY.md ├── Templates └── NewDLPPolicyTemplate.txt └── Utilities ├── CCValidationUtility.ps1 ├── DLPValidationUtility.ps1 ├── IGValidationUtility.ps1 ├── IPValidationUtility.ps1 ├── IRMValidationUtility.ps1 └── RMValidationUtility.ps1 /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/MCCA/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/MCCA/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Checks/check-Audit101.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/MCCA/HEAD/Checks/check-Audit101.ps1 -------------------------------------------------------------------------------- /Checks/check-Audit102.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/MCCA/HEAD/Checks/check-Audit102.ps1 -------------------------------------------------------------------------------- /Checks/check-CC101.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/MCCA/HEAD/Checks/check-CC101.ps1 -------------------------------------------------------------------------------- /Checks/check-CC102.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/MCCA/HEAD/Checks/check-CC102.ps1 -------------------------------------------------------------------------------- /Checks/check-CC103.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/MCCA/HEAD/Checks/check-CC103.ps1 -------------------------------------------------------------------------------- /Checks/check-ComplianceManager.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/MCCA/HEAD/Checks/check-ComplianceManager.ps1 -------------------------------------------------------------------------------- /Checks/check-DLP.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/MCCA/HEAD/Checks/check-DLP.ps1 -------------------------------------------------------------------------------- /Checks/check-IG101.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/MCCA/HEAD/Checks/check-IG101.ps1 -------------------------------------------------------------------------------- /Checks/check-IG102.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/MCCA/HEAD/Checks/check-IG102.ps1 -------------------------------------------------------------------------------- /Checks/check-IP101.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/MCCA/HEAD/Checks/check-IP101.ps1 -------------------------------------------------------------------------------- /Checks/check-IP102.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/MCCA/HEAD/Checks/check-IP102.ps1 -------------------------------------------------------------------------------- /Checks/check-IP103.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/MCCA/HEAD/Checks/check-IP103.ps1 -------------------------------------------------------------------------------- /Checks/check-IP104.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/MCCA/HEAD/Checks/check-IP104.ps1 -------------------------------------------------------------------------------- /Checks/check-IRM102.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/MCCA/HEAD/Checks/check-IRM102.ps1 -------------------------------------------------------------------------------- /Checks/check-IRM103.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/MCCA/HEAD/Checks/check-IRM103.ps1 -------------------------------------------------------------------------------- /Checks/check-RM101.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/MCCA/HEAD/Checks/check-RM101.ps1 -------------------------------------------------------------------------------- /Checks/check-RM102.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/MCCA/HEAD/Checks/check-RM102.ps1 -------------------------------------------------------------------------------- /Checks/check-eDiscovery101.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/MCCA/HEAD/Checks/check-eDiscovery101.ps1 -------------------------------------------------------------------------------- /Checks/check-eDiscovery102.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/MCCA/HEAD/Checks/check-eDiscovery102.ps1 -------------------------------------------------------------------------------- /DLPImprovementActions/ActionsInformation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/MCCA/HEAD/DLPImprovementActions/ActionsInformation.xml -------------------------------------------------------------------------------- /Image/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/MCCA/HEAD/Image/logo.jpg -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/MCCA/HEAD/LICENSE -------------------------------------------------------------------------------- /MCCA.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/MCCA/HEAD/MCCA.psm1 -------------------------------------------------------------------------------- /Outputs/output-html.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/MCCA/HEAD/Outputs/output-html.ps1 -------------------------------------------------------------------------------- /Outputs/output-json.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/MCCA/HEAD/Outputs/output-json.ps1 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/MCCA/HEAD/README.md -------------------------------------------------------------------------------- /Remediation/RemediationAction.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/MCCA/HEAD/Remediation/RemediationAction.ps1 -------------------------------------------------------------------------------- /RunMCCAReport.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/MCCA/HEAD/RunMCCAReport.ps1 -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/MCCA/HEAD/SECURITY.md -------------------------------------------------------------------------------- /Templates/NewDLPPolicyTemplate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/MCCA/HEAD/Templates/NewDLPPolicyTemplate.txt -------------------------------------------------------------------------------- /Utilities/CCValidationUtility.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/MCCA/HEAD/Utilities/CCValidationUtility.ps1 -------------------------------------------------------------------------------- /Utilities/DLPValidationUtility.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/MCCA/HEAD/Utilities/DLPValidationUtility.ps1 -------------------------------------------------------------------------------- /Utilities/IGValidationUtility.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/MCCA/HEAD/Utilities/IGValidationUtility.ps1 -------------------------------------------------------------------------------- /Utilities/IPValidationUtility.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/MCCA/HEAD/Utilities/IPValidationUtility.ps1 -------------------------------------------------------------------------------- /Utilities/IRMValidationUtility.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/MCCA/HEAD/Utilities/IRMValidationUtility.ps1 -------------------------------------------------------------------------------- /Utilities/RMValidationUtility.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/MCCA/HEAD/Utilities/RMValidationUtility.ps1 --------------------------------------------------------------------------------