Skip to content

Added SPO Standards #2640

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Jul 9, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
82 changes: 82 additions & 0 deletions src/data/standards.json
Original file line number Diff line number Diff line change
Expand Up @@ -1816,6 +1816,88 @@
"powershellEquivalent": "Update-MgBetaAdminSharepointSetting",
"recommendedBy": []
},
{
"name": "standards.SPAzureB2B",
"cat": "SharePoint Standards",
"tag": ["lowimpact", "CIS"],
"helpText": "Ensure SharePoint and OneDrive integration with Azure AD B2B is enabled",
"addedComponent": [],
"label": "Enable SharePoint and OneDrive integration with Azure AD B2B",
"impact": "Low Impact",
"impactColour": "info",
"powershellEquivalent": "Set-SPOTenant -EnableAzureADB2BIntegration $true",
"recommendedBy": [
"CIS 3.0"
]
},
{
"name": "standards.SPDisallowInfectedFiles",
"cat": "SharePoint Standards",
"tag": ["lowimpact", "CIS"],
"helpText": "Ensure Office 365 SharePoint infected files are disallowed for download",
"addedComponent": [],
"label": "Disallow downloading infected files from SharePoint",
"impact": "Low Impact",
"impactColour": "info",
"powershellEquivalent": "Set-SPOTenant -DisallowInfectedFileDownload $true",
"recommendedBy": [
"CIS 3.0"
]
},
{
"name": "standards.SPDirectSharing",
"cat": "SharePoint Standards",
"tag": ["mediumimpact", "CIS"],
"helpText": "Ensure default link sharing is set to Direct in SharePoint and OneDrive",
"addedComponent": [],
"label": "Default sharing to Direct users",
"impact": "Medium Impact",
"impactColour": "warning",
"powershellEquivalent": "Set-SPOTenant -DefaultSharingLinkType Direct",
"recommendedBy": [
"CIS 3.0"
]
},
{
"name": "standards.SPExternalUserExpiration",
"cat": "SharePoint Standards",
"tag": ["mediumimpact", "CIS"],
"helpText": "Ensure guest access to a site or OneDrive will expire automatically",
"addedComponent": [
{
"type": "number",
"name": "standards.SPExternalUserExpiration.Days",
"label": "Days until expiration (Default 60)"
}
],
"label": "Set guest access to expire automatically",
"impact": "Medium Impact",
"impactColour": "warning",
"powershellEquivalent": "Set-SPOTenant -ExternalUserExpireInDays 30 -ExternalUserExpirationRequired $True",
"recommendedBy": [
"CIS 3.0"
]
},
{
"name": "standards.SPEmailAttestation",
"cat": "SharePoint Standards",
"tag": ["mediumimpact", "CIS"],
"helpText": "Ensure reauthentication with verification code is restricted",
"addedComponent": [
{
"type": "number",
"name": "standards.SPEmailAttestation.Days",
"label": "Require reauth every X Days (Default 15)"
}
],
"label": "Require reauthentication with verification code",
"impact": "Medium Impact",
"impactColour": "warning",
"powershellEquivalent": "Set-SPOTenant -EmailAttestationRequired $true -EmailAttestationReAuthDays 15",
"recommendedBy": [
"CIS 3.0"
]
},
{
"name": "standards.DisableAddShortcutsToOneDrive",
"cat": "SharePoint Standards",
Expand Down
Loading