Skip to content

Commit e77f40d

Browse files
Merge pull request #2640 from Ren-Roros-Digital/SPOStandards
Added SPO Standards
2 parents 674131c + 2ab99a0 commit e77f40d

File tree

1 file changed

+82
-0
lines changed

1 file changed

+82
-0
lines changed

src/data/standards.json

Lines changed: 82 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1816,6 +1816,88 @@
18161816
"powershellEquivalent": "Update-MgBetaAdminSharepointSetting",
18171817
"recommendedBy": []
18181818
},
1819+
{
1820+
"name": "standards.SPAzureB2B",
1821+
"cat": "SharePoint Standards",
1822+
"tag": ["lowimpact", "CIS"],
1823+
"helpText": "Ensure SharePoint and OneDrive integration with Azure AD B2B is enabled",
1824+
"addedComponent": [],
1825+
"label": "Enable SharePoint and OneDrive integration with Azure AD B2B",
1826+
"impact": "Low Impact",
1827+
"impactColour": "info",
1828+
"powershellEquivalent": "Set-SPOTenant -EnableAzureADB2BIntegration $true",
1829+
"recommendedBy": [
1830+
"CIS 3.0"
1831+
]
1832+
},
1833+
{
1834+
"name": "standards.SPDisallowInfectedFiles",
1835+
"cat": "SharePoint Standards",
1836+
"tag": ["lowimpact", "CIS"],
1837+
"helpText": "Ensure Office 365 SharePoint infected files are disallowed for download",
1838+
"addedComponent": [],
1839+
"label": "Disallow downloading infected files from SharePoint",
1840+
"impact": "Low Impact",
1841+
"impactColour": "info",
1842+
"powershellEquivalent": "Set-SPOTenant -DisallowInfectedFileDownload $true",
1843+
"recommendedBy": [
1844+
"CIS 3.0"
1845+
]
1846+
},
1847+
{
1848+
"name": "standards.SPDirectSharing",
1849+
"cat": "SharePoint Standards",
1850+
"tag": ["mediumimpact", "CIS"],
1851+
"helpText": "Ensure default link sharing is set to Direct in SharePoint and OneDrive",
1852+
"addedComponent": [],
1853+
"label": "Default sharing to Direct users",
1854+
"impact": "Medium Impact",
1855+
"impactColour": "warning",
1856+
"powershellEquivalent": "Set-SPOTenant -DefaultSharingLinkType Direct",
1857+
"recommendedBy": [
1858+
"CIS 3.0"
1859+
]
1860+
},
1861+
{
1862+
"name": "standards.SPExternalUserExpiration",
1863+
"cat": "SharePoint Standards",
1864+
"tag": ["mediumimpact", "CIS"],
1865+
"helpText": "Ensure guest access to a site or OneDrive will expire automatically",
1866+
"addedComponent": [
1867+
{
1868+
"type": "number",
1869+
"name": "standards.SPExternalUserExpiration.Days",
1870+
"label": "Days until expiration (Default 60)"
1871+
}
1872+
],
1873+
"label": "Set guest access to expire automatically",
1874+
"impact": "Medium Impact",
1875+
"impactColour": "warning",
1876+
"powershellEquivalent": "Set-SPOTenant -ExternalUserExpireInDays 30 -ExternalUserExpirationRequired $True",
1877+
"recommendedBy": [
1878+
"CIS 3.0"
1879+
]
1880+
},
1881+
{
1882+
"name": "standards.SPEmailAttestation",
1883+
"cat": "SharePoint Standards",
1884+
"tag": ["mediumimpact", "CIS"],
1885+
"helpText": "Ensure reauthentication with verification code is restricted",
1886+
"addedComponent": [
1887+
{
1888+
"type": "number",
1889+
"name": "standards.SPEmailAttestation.Days",
1890+
"label": "Require reauth every X Days (Default 15)"
1891+
}
1892+
],
1893+
"label": "Require reauthentication with verification code",
1894+
"impact": "Medium Impact",
1895+
"impactColour": "warning",
1896+
"powershellEquivalent": "Set-SPOTenant -EmailAttestationRequired $true -EmailAttestationReAuthDays 15",
1897+
"recommendedBy": [
1898+
"CIS 3.0"
1899+
]
1900+
},
18191901
{
18201902
"name": "standards.DisableAddShortcutsToOneDrive",
18211903
"cat": "SharePoint Standards",

0 commit comments

Comments
 (0)