69 lines
2.5 KiB
PowerShell
69 lines
2.5 KiB
PowerShell
function Test-RestrictCustomScripts {
|
|
[CmdletBinding()]
|
|
param (
|
|
# Aligned
|
|
# Define your parameters here if needed
|
|
)
|
|
|
|
begin {
|
|
# Dot source the class script if necessary
|
|
#. .\source\Classes\CISAuditResult.ps1
|
|
# Initialization code, if needed
|
|
}
|
|
|
|
process {
|
|
# 7.3.4 (L1) Ensure custom script execution is restricted on site collections
|
|
|
|
# Retrieve all site collections and select necessary properties
|
|
$SPOSitesCustomScript = Get-SPOSite -Limit All | Select-Object Title, Url, DenyAddAndCustomizePages
|
|
|
|
# Find sites where custom scripts are allowed (DenyAddAndCustomizePages is not 'Enabled')
|
|
$customScriptAllowedSites = $SPOSitesCustomScript | Where-Object { $_.DenyAddAndCustomizePages -ne 'Enabled' }
|
|
|
|
# Compliance is true if no sites allow custom scripts
|
|
$complianceResult = $customScriptAllowedSites.Count -eq 0
|
|
|
|
# Gather details for non-compliant sites (where custom scripts are allowed)
|
|
$nonCompliantSiteDetails = $customScriptAllowedSites | ForEach-Object {
|
|
"$($_.Title) ($($_.Url)): Custom Script Allowed"
|
|
}
|
|
|
|
# Prepare failure reasons and details based on compliance
|
|
$failureReasons = if (-not $complianceResult) {
|
|
"The following site collections allow custom script execution: " + ($nonCompliantSiteDetails -join "; ")
|
|
}
|
|
else {
|
|
"N/A"
|
|
}
|
|
|
|
$details = if ($complianceResult) {
|
|
"All site collections have custom script execution restricted"
|
|
}
|
|
else {
|
|
$nonCompliantSiteDetails -join "; "
|
|
}
|
|
|
|
# Create and populate the CISAuditResult object
|
|
$auditResult = [CISAuditResult]::new()
|
|
$auditResult.Status = if ($complianceResult) { "Pass" } else { "Fail" }
|
|
$auditResult.ELevel = "E3"
|
|
$auditResult.ProfileLevel = "L1"
|
|
$auditResult.Rec = "7.3.4"
|
|
$auditResult.RecDescription = "Ensure custom script execution is restricted on site collections"
|
|
$auditResult.CISControlVer = "v8"
|
|
$auditResult.CISControl = "2.7"
|
|
$auditResult.CISDescription = "Allowlist Authorized Scripts"
|
|
$auditResult.IG1 = $false
|
|
$auditResult.IG2 = $false
|
|
$auditResult.IG3 = $true
|
|
$auditResult.Result = $complianceResult
|
|
$auditResult.Details = $details
|
|
$auditResult.FailureReason = $failureReasons
|
|
}
|
|
|
|
end {
|
|
# Return auditResult
|
|
return $auditResult
|
|
}
|
|
}
|