63 lines
2.0 KiB
PowerShell
63 lines
2.0 KiB
PowerShell
function Test-DisallowInfectedFilesDownload {
|
|
[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
|
|
$recnum = "7.3.1"
|
|
}
|
|
|
|
process {
|
|
|
|
try {
|
|
# 7.3.1 (L2) Ensure Office 365 SharePoint infected files are disallowed for download
|
|
|
|
# Retrieve the SharePoint tenant configuration
|
|
$SPOTenantDisallowInfectedFileDownload = Get-SPOTenant | Select-Object DisallowInfectedFileDownload
|
|
$isDisallowInfectedFileDownloadEnabled = $SPOTenantDisallowInfectedFileDownload.DisallowInfectedFileDownload
|
|
|
|
# Prepare failure reasons and details based on compliance
|
|
$failureReasons = if (-not $isDisallowInfectedFileDownloadEnabled) {
|
|
"Downloading infected files is not disallowed."
|
|
}
|
|
else {
|
|
"N/A"
|
|
}
|
|
|
|
$details = if ($isDisallowInfectedFileDownloadEnabled) {
|
|
"DisallowInfectedFileDownload: True"
|
|
}
|
|
else {
|
|
"DisallowInfectedFileDownload: False"
|
|
}
|
|
|
|
# Create and populate the CISAuditResult object
|
|
$params = @{
|
|
Rec = $recnum
|
|
Result = $isDisallowInfectedFileDownloadEnabled
|
|
Status = if ($isDisallowInfectedFileDownloadEnabled) { "Pass" } else { "Fail" }
|
|
Details = $details
|
|
FailureReason = $failureReasons
|
|
}
|
|
$auditResult = Initialize-CISAuditResult @params
|
|
}
|
|
catch {
|
|
Write-Error "An error occurred during the test: $_"
|
|
|
|
# Call Initialize-CISAuditResult with error parameters
|
|
$auditResult = Initialize-CISAuditResult -Rec $recnum -Failure
|
|
}
|
|
}
|
|
|
|
end {
|
|
# Return the audit result
|
|
return $auditResult
|
|
}
|
|
}
|