54 lines
1.7 KiB
PowerShell
54 lines
1.7 KiB
PowerShell
function Test-ModernAuthSharePoint {
|
|
[CmdletBinding()]
|
|
param (
|
|
# Aligned
|
|
# Define your parameters here
|
|
)
|
|
|
|
begin {
|
|
# Dot source the class script if necessary
|
|
#. .\source\Classes\CISAuditResult.ps1
|
|
# Initialization code, if needed
|
|
$recnum = "7.2.1"
|
|
}
|
|
|
|
process {
|
|
try {
|
|
# 7.2.1 (L1) Ensure modern authentication for SharePoint applications is required
|
|
$SPOTenant = Get-SPOTenant | Select-Object -Property LegacyAuthProtocolsEnabled
|
|
$modernAuthForSPRequired = -not $SPOTenant.LegacyAuthProtocolsEnabled
|
|
|
|
# Prepare failure reasons and details based on compliance
|
|
$failureReasons = if (-not $modernAuthForSPRequired) {
|
|
"Legacy authentication protocols are enabled"
|
|
}
|
|
else {
|
|
"N/A"
|
|
}
|
|
|
|
$details = "LegacyAuthProtocolsEnabled: $($SPOTenant.LegacyAuthProtocolsEnabled)"
|
|
|
|
# Create and populate the CISAuditResult object
|
|
$params = @{
|
|
Rec = $recnum
|
|
Result = $modernAuthForSPRequired
|
|
Status = if ($modernAuthForSPRequired) { "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
|
|
}
|
|
}
|