From 939980b0871a4281d405bb8b8350c67432242cb9 Mon Sep 17 00:00:00 2001 From: DrIOS <58635327+DrIOSX@users.noreply.github.com> Date: Sun, 4 Aug 2024 14:29:42 -0500 Subject: [PATCH] docs: Update readme and html help --- README copy.md | 2 +- README.md | 135 +- docs/index.html | Bin 119504 -> 66814 bytes help/Export-M365SecurityAuditTable.md | 126 +- help/Get-AdminRoleUserLicense.md | 21 +- help/Get-MFAStatus.md | 66 +- help/Grant-M365SecurityAuditConsent.md | 56 +- help/Invoke-M365SecurityAudit.md | 257 ++- help/M365FoundationsCISReport.md | 5 +- help/New-M365SecurityAuditAuthObject.md | 149 ++ help/Remove-RowsWithEmptyCSVStatus.md | 20 +- help/Sync-CISExcelAndCsvData.md | 53 +- helpers/Build-Help.ps1 | 4 +- .../New-M365SecurityAuditAuthObject.ps1 | 3 + .../en-US/M365FoundationsCISReport-help.xml | 1870 ++++++++++++----- 15 files changed, 1924 insertions(+), 843 deletions(-) create mode 100644 help/New-M365SecurityAuditAuthObject.md diff --git a/README copy.md b/README copy.md index 7a86aee..af36920 100644 --- a/README copy.md +++ b/README copy.md @@ -1,5 +1,5 @@ # M365FoundationsCISReport Module - +[![PSScriptAnalyzer](https://github.com/CriticalSolutionsNetwork/M365FoundationsCISReport/actions/workflows/powershell.yml/badge.svg)](https://github.com/CriticalSolutionsNetwork/M365FoundationsCISReport/actions/workflows/powershell.yml) ## License This PowerShell module is based on CIS benchmarks and is distributed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License. This means: diff --git a/README.md b/README.md index 57a940d..96d0495 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# M365FoundationsCISReport Module +# M365FoundationsCISReport Module [![PSScriptAnalyzer](https://github.com/CriticalSolutionsNetwork/M365FoundationsCISReport/actions/workflows/powershell.yml/badge.svg)](https://github.com/CriticalSolutionsNetwork/M365FoundationsCISReport/actions/workflows/powershell.yml) ## License @@ -11,9 +11,7 @@ This PowerShell module is based on CIS benchmarks and is distributed under the C For full license details, please visit [Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License](https://creativecommons.org/licenses/by-nc-sa/4.0/deed.en). [Register for and download CIS Benchmarks](https://www.cisecurity.org/cis-benchmarks) - # Table of Contents - 1. [Invoke-M365SecurityAudit](#Invoke-M365SecurityAudit) 2. [Export-M365SecurityAuditTable](#Export-M365SecurityAuditTable) 3. [Get-AdminRoleUserLicense](#Get-AdminRoleUserLicense) @@ -67,14 +65,13 @@ Exports Microsoft 365 security audit results to CSV or Excel files and supports ### Syntax ```powershell -Export-M365SecurityAuditTable [-AuditResults] [-OutputTestNumber] [] +Export-M365SecurityAuditTable [-AuditResults] [-OutputTestNumber] [-WhatIf] [-Confirm] [] -Export-M365SecurityAuditTable [-AuditResults] [[-ExportAllTests]] -ExportPath -ExportOriginalTests [-ExportToExcel] [] +Export-M365SecurityAuditTable [-AuditResults] [[-ExportNestedTables]] -ExportPath [-ExportOriginalTests] [-ExportToExcel] [-Prefix ] [-WhatIf] [-Confirm] [] -Export-M365SecurityAuditTable [-CsvPath] [-OutputTestNumber] [] - -Export-M365SecurityAuditTable [-CsvPath] [[-ExportAllTests]] -ExportPath -ExportOriginalTests [-ExportToExcel] [] +Export-M365SecurityAuditTable [-CsvPath] [-OutputTestNumber] [-WhatIf] [-Confirm] [] +Export-M365SecurityAuditTable [-CsvPath] [[-ExportNestedTables]] -ExportPath [-ExportOriginalTests] [-ExportToExcel] [-Prefix ] [-WhatIf] [-Confirm] [] @@ -86,10 +83,13 @@ Export-M365SecurityAuditTable [-CsvPath] [[-ExportAllTests]] -ExportPat | AuditResults | | An array of CISAuditResult objects containing the audit results. This parameter is mandatory when exporting from audit results. | true | false | | | CsvPath | | The path to a CSV file containing the audit results. This parameter is mandatory when exporting from a CSV file. | true | false | | | OutputTestNumber | | The test number to output as an object. Valid values are "1.1.1", "1.3.1", "6.1.2", "6.1.3", "7.3.4". This parameter is used to output a specific test result. | true | false | | -| ExportAllTests | | Switch to export all test results. When specified, all test results are exported to the specified path. | false | false | False | +| ExportNestedTables | | Switch to export all test results. When specified, all test results are exported to the specified path. | false | false | False | | ExportPath | | The path where the CSV or Excel files will be exported. This parameter is mandatory when exporting all tests. | true | false | | -| ExportOriginalTests | | Switch to export the original audit results to a CSV file. When specified, the original test results are exported along with the processed results. | true | false | False | +| ExportOriginalTests | | Switch to export the original audit results to a CSV file. When specified, the original test results are exported along with the processed results. | false | false | False | | ExportToExcel | | Switch to export the results to an Excel file. When specified, results are exported in Excel format. | false | false | False | +| Prefix | | Add Prefix to filename after date when outputting to excel or csv. Validate that the count of letters in the prefix is less than 5. | false | false | Corp | +| WhatIf | wi | | false | false | | +| Confirm | cf | | false | false | | ### Inputs - \[CISAuditResult\[\]\] - An array of CISAuditResult objects. \[string\] - A path to a CSV file. @@ -100,44 +100,51 @@ Export-M365SecurityAuditTable [-CsvPath] [[-ExportAllTests]] -ExportPat **EXAMPLE 1** ```powershell Export-M365SecurityAuditTable -AuditResults $object -OutputTestNumber 6.1.2 +# Outputs the result of test number 6.1.2 from the provided audit results as an object. ``` -\# Outputs the result of test number 6.1.2 from the provided audit results as an object. + **EXAMPLE 2** ```powershell -Export-M365SecurityAuditTable -ExportAllTests -AuditResults $object -ExportPath "C:\temp" +Export-M365SecurityAuditTable -ExportNestedTables -AuditResults $object -ExportPath "C:\temp" +# Exports all audit results to the specified path in CSV format. ``` -\# Exports all audit results to the specified path in CSV format. + **EXAMPLE 3** ```powershell Export-M365SecurityAuditTable -CsvPath "C:\temp\auditresultstoday1.csv" -OutputTestNumber 6.1.2 +# Outputs the result of test number 6.1.2 from the CSV file as an object. ``` -\# Outputs the result of test number 6.1.2 from the CSV file as an object. + **EXAMPLE 4** ```powershell -Export-M365SecurityAuditTable -ExportAllTests -CsvPath "C:\temp\auditresultstoday1.csv" -ExportPath "C:\temp" +Export-M365SecurityAuditTable -ExportNestedTables -CsvPath "C:\temp\auditresultstoday1.csv" -ExportPath "C:\temp" +# Exports all audit results from the CSV file to the specified path in CSV format. ``` -\# Exports all audit results from the CSV file to the specified path in CSV format. + **EXAMPLE 5** ```powershell -Export-M365SecurityAuditTable -ExportAllTests -AuditResults $object -ExportPath "C:\temp" -ExportOriginalTests +Export-M365SecurityAuditTable -ExportNestedTables -AuditResults $object -ExportPath "C:\temp" -ExportOriginalTests +# Exports all audit results along with the original test results to the specified path in CSV format. ``` -\# Exports all audit results along with the original test results to the specified path in CSV format. + **EXAMPLE 6** ```powershell -Export-M365SecurityAuditTable -ExportAllTests -CsvPath "C:\temp\auditresultstoday1.csv" -ExportPath "C:\temp" -ExportOriginalTests +Export-M365SecurityAuditTable -ExportNestedTables -CsvPath "C:\temp\auditresultstoday1.csv" -ExportPath "C:\temp" -ExportOriginalTests +# Exports all audit results from the CSV file along with the original test results to the specified path in CSV format. ``` -\# Exports all audit results from the CSV file along with the original test results to the specified path in CSV format. + **EXAMPLE 7** ```powershell -Export-M365SecurityAuditTable -ExportAllTests -AuditResults $object -ExportPath "C:\temp" -ExportToExcel +Export-M365SecurityAuditTable -ExportNestedTables -AuditResults $object -ExportPath "C:\temp" -ExportToExcel +# Exports all audit results to the specified path in Excel format. ``` -\# Exports all audit results to the specified path in Excel format. + ### Links @@ -153,7 +160,6 @@ Get-AdminRoleUserLicense [-SkipGraphConnection] [] - ``` ### Parameters | Name | Alias | Description | Required? | Pipeline Input | Default Value | @@ -195,7 +201,6 @@ Get-MFAStatus [[-UserId] ] [-SkipMSOLConnectionChecks] [ [-SkipGra - ``` ### Parameters | Name | Alias | Description | Required? | Pipeline Input | Default Value | @@ -275,27 +281,19 @@ Invokes a security audit for Microsoft 365 environments. ### Syntax ```powershell -Invoke-M365SecurityAudit [-TenantAdminUrl ] [-DomainName ] [-ApprovedCloudStorageProviders ] [-ApprovedFederatedDomains ] [-DoNotConnect] [-DoNotDisconnect] [-NoModuleCheck] -[-DoNotConfirmConnections] [-WhatIf] [-Confirm] [] +Invoke-M365SecurityAudit [-TenantAdminUrl ] [-DomainName ] [-ApprovedCloudStorageProviders ] [-ApprovedFederatedDomains ] [-DoNotConnect] [-DoNotDisconnect] [-NoModuleCheck] [-DoNotConfirmConnections] [-AuthParams ] [-WhatIf] [-Confirm] [] -Invoke-M365SecurityAudit [-TenantAdminUrl ] [-DomainName ] -ELevel -ProfileLevel [-ApprovedCloudStorageProviders ] [-ApprovedFederatedDomains ] [-DoNotConnect] [-DoNotDisconnect] -[-NoModuleCheck] [-DoNotConfirmConnections] [-WhatIf] [-Confirm] [] +Invoke-M365SecurityAudit [-TenantAdminUrl ] [-DomainName ] -ELevel -ProfileLevel [-ApprovedCloudStorageProviders ] [-ApprovedFederatedDomains ] [-DoNotConnect] [-DoNotDisconnect] [-NoModuleCheck] [-DoNotConfirmConnections] [-AuthParams ] [-WhatIf] [-Confirm] [] -Invoke-M365SecurityAudit [-TenantAdminUrl ] [-DomainName ] -IncludeIG1 [-ApprovedCloudStorageProviders ] [-ApprovedFederatedDomains ] [-DoNotConnect] [-DoNotDisconnect] [-NoModuleCheck] -[-DoNotConfirmConnections] [-WhatIf] [-Confirm] [] +Invoke-M365SecurityAudit [-TenantAdminUrl ] [-DomainName ] -IncludeIG1 [-ApprovedCloudStorageProviders ] [-ApprovedFederatedDomains ] [-DoNotConnect] [-DoNotDisconnect] [-NoModuleCheck] [-DoNotConfirmConnections] [-AuthParams ] [-WhatIf] [-Confirm] [] -Invoke-M365SecurityAudit [-TenantAdminUrl ] [-DomainName ] -IncludeIG2 [-ApprovedCloudStorageProviders ] [-ApprovedFederatedDomains ] [-DoNotConnect] [-DoNotDisconnect] [-NoModuleCheck] -[-DoNotConfirmConnections] [-WhatIf] [-Confirm] [] +Invoke-M365SecurityAudit [-TenantAdminUrl ] [-DomainName ] -IncludeIG2 [-ApprovedCloudStorageProviders ] [-ApprovedFederatedDomains ] [-DoNotConnect] [-DoNotDisconnect] [-NoModuleCheck] [-DoNotConfirmConnections] [-AuthParams ] [-WhatIf] [-Confirm] [] -Invoke-M365SecurityAudit [-TenantAdminUrl ] [-DomainName ] -IncludeIG3 [-ApprovedCloudStorageProviders ] [-ApprovedFederatedDomains ] [-DoNotConnect] [-DoNotDisconnect] [-NoModuleCheck] -[-DoNotConfirmConnections] [-WhatIf] [-Confirm] [] +Invoke-M365SecurityAudit [-TenantAdminUrl ] [-DomainName ] -IncludeIG3 [-ApprovedCloudStorageProviders ] [-ApprovedFederatedDomains ] [-DoNotConnect] [-DoNotDisconnect] [-NoModuleCheck] [-DoNotConfirmConnections] [-AuthParams ] [-WhatIf] [-Confirm] [] -Invoke-M365SecurityAudit [-TenantAdminUrl ] [-DomainName ] -IncludeRecommendation [-ApprovedCloudStorageProviders ] [-ApprovedFederatedDomains ] [-DoNotConnect] [-DoNotDisconnect] -[-NoModuleCheck] [-DoNotConfirmConnections] [-WhatIf] [-Confirm] [] - -Invoke-M365SecurityAudit [-TenantAdminUrl ] [-DomainName ] -SkipRecommendation [-ApprovedCloudStorageProviders ] [-ApprovedFederatedDomains ] [-DoNotConnect] [-DoNotDisconnect] -[-NoModuleCheck] [-DoNotConfirmConnections] [-WhatIf] [-Confirm] [] +Invoke-M365SecurityAudit [-TenantAdminUrl ] [-DomainName ] -IncludeRecommendation [-ApprovedCloudStorageProviders ] [-ApprovedFederatedDomains ] [-DoNotConnect] [-DoNotDisconnect] [-NoModuleCheck] [-DoNotConfirmConnections] [-AuthParams ] [-WhatIf] [-Confirm] [] +Invoke-M365SecurityAudit [-TenantAdminUrl ] [-DomainName ] -SkipRecommendation [-ApprovedCloudStorageProviders ] [-ApprovedFederatedDomains ] [-DoNotConnect] [-DoNotDisconnect] [-NoModuleCheck] [-DoNotConfirmConnections] [-AuthParams ] [-WhatIf] [-Confirm] [] @@ -319,6 +317,7 @@ Invoke-M365SecurityAudit [-TenantAdminUrl ] [-DomainName ] -Skip | DoNotDisconnect | | If specified, the cmdlet will not disconnect from Microsoft 365 services after execution. | false | false | False | | NoModuleCheck | | If specified, the cmdlet will not check for the presence of required modules. | false | false | False | | DoNotConfirmConnections | | If specified, the cmdlet will not prompt for confirmation before proceeding with established connections and will disconnect from all of them. | false | false | False | +| AuthParams | | Specifies an authentication object containing parameters for application-based authentication. If provided, this will be used for connecting to services. | false | false | | | WhatIf | wi | | false | false | | | Confirm | cf | | false | false | | ### Inputs @@ -410,9 +409,8 @@ FailureReason: Non-Compliant Accounts: 2 **EXAMPLE 5** ```powershell $auditResults = Invoke-M365SecurityAudit -TenantAdminUrl "https://contoso-admin.sharepoint.com" -DomainName "contoso.com" +PS> Export-M365SecurityAuditTable -AuditResults $auditResults -ExportPath "C:\temp" -ExportOriginalTests -ExportAllTests ``` -PS\> Export-M365SecurityAuditTable -AuditResults $auditResults -ExportPath "C:\\temp" -ExportOriginalTests -ExportAllTests - Or: PS\> $auditResults | Export-Csv -Path "auditResults.csv" -NoTypeInformation @@ -433,6 +431,47 @@ What if: Performing the operation "Invoke-M365SecurityAudit" on target "Microsof ### Links - [https://criticalsolutionsnetwork.github.io/M365FoundationsCISReport/#Invoke-M365SecurityAudit](https://criticalsolutionsnetwork.github.io/M365FoundationsCISReport/#Invoke-M365SecurityAudit) +## New-M365SecurityAuditAuthObject +### Synopsis +Creates a new CISAuthenticationParameters object for Microsoft 365 authentication. +### Syntax +```powershell + +New-M365SecurityAuditAuthObject [-ClientCertThumbPrint] [-ClientId] [-TenantId] [-OnMicrosoftUrl] [-SpAdminUrl] [] + + + + +``` +### Parameters +| Name | Alias | Description | Required? | Pipeline Input | Default Value | +| - | - | - | - | - | - | +| ClientCertThumbPrint | | The thumbprint of the client certificate used for authentication. It must be a 40-character hexadecimal string. This certificate is used to authenticate the application in Azure AD. | true | false | | +| ClientId | | The Client ID \(Application ID\) of the Azure AD application. It must be a valid GUID format. | true | false | | +| TenantId | | The Tenant ID of the Azure AD directory. It must be a valid GUID format representing your Microsoft 365 tenant. | true | false | | +| OnMicrosoftUrl | | The URL of your onmicrosoft.com domain. It should be in the format 'example.onmicrosoft.com'. | true | false | | +| SpAdminUrl | | The SharePoint admin URL, which should end with '-admin.sharepoint.com'. This URL is used for connecting to SharePoint Online. | true | false | | +### Inputs + - None. You cannot pipe objects to this function. + +### Outputs + - CISAuthenticationParameters The function returns an instance of the CISAuthenticationParameters class containing the authentication details. + +### Note +Requires PowerShell 7.0 or later. + +### Examples +**EXAMPLE 1** +```powershell +$authParams = New-M365SecurityAuditAuthObject -ClientCertThumbPrint "ABCDEF1234567890ABCDEF1234567890ABCDEF12" ` +-ClientId "12345678-1234-1234-1234-123456789012" ` +-TenantId "12345678-1234-1234-1234-123456789012" ` +-OnMicrosoftUrl "yourcompany.onmicrosoft.com" ` +-SpAdminUrl "https://yourcompany-admin.sharepoint.com" +Creates a new CISAuthenticationParameters object with the specified credentials and URLs, validating each parameter's format and length. +``` + + ## Remove-RowsWithEmptyCSVStatus ### Synopsis Removes rows from an Excel worksheet where the 'CSV\_Status' column is empty and saves the result to a new file. @@ -444,7 +483,6 @@ Remove-RowsWithEmptyCSVStatus [-FilePath] [-WorksheetName] [] [[-CsvPath] ] [[-SheetNa - ``` ### Parameters | Name | Alias | Description | Required? | Pipeline Input | Default Value | @@ -493,8 +531,9 @@ Sync-CISExcelAndCsvData [[-ExcelPath] ] [[-CsvPath] ] [[-SheetNa **EXAMPLE 1** ```powershell Sync-CISExcelAndCsvData -ExcelPath "path\to\excel.xlsx" -CsvPath "path\to\data.csv" -SheetName "AuditData" -``` Updates the 'AuditData' worksheet in 'excel.xlsx' with data from 'data.csv', adding new information and the date of the update. +``` + ### Links diff --git a/docs/index.html b/docs/index.html index 1ef6b8b37046921a478cda4c76c7b23c7c21ec33..31fa2174369431ef1aac2c8becd24f48c4bdae6e 100644 GIT binary patch literal 66814 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 R@dsuFX{G|wm5u;X{U0wA_WA$- literal 119504 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 Y-CiQ^v4HbHgZ8iRB=+?ajonxNKl4#eS^xk5 diff --git a/help/Export-M365SecurityAuditTable.md b/help/Export-M365SecurityAuditTable.md index 3a05f2e..588e5e0 100644 --- a/help/Export-M365SecurityAuditTable.md +++ b/help/Export-M365SecurityAuditTable.md @@ -1,4 +1,4 @@ ---- +--- external help file: M365FoundationsCISReport-help.xml Module Name: M365FoundationsCISReport online version: https://criticalsolutionsnetwork.github.io/M365FoundationsCISReport/#Export-M365SecurityAuditTable @@ -15,24 +15,27 @@ Exports M365 security audit results to a CSV file or outputs a specific test res ### OutputObjectFromAuditResultsSingle ``` Export-M365SecurityAuditTable [-AuditResults] [-OutputTestNumber] - [] + [-ProgressAction ] [-WhatIf] [-Confirm] [] ``` ### ExportAllResultsFromAuditResults ``` -Export-M365SecurityAuditTable [-AuditResults] [-ExportAllTests] -ExportPath - [-ExportOriginalTests] [-ExportToExcel] [] +Export-M365SecurityAuditTable [-AuditResults] [-ExportNestedTables] -ExportPath + [-ExportOriginalTests] [-ExportToExcel] [-Prefix ] [-ProgressAction ] [-WhatIf] + [-Confirm] [] ``` ### OutputObjectFromCsvSingle ``` -Export-M365SecurityAuditTable [-CsvPath] [-OutputTestNumber] [] +Export-M365SecurityAuditTable [-CsvPath] [-OutputTestNumber] + [-ProgressAction ] [-WhatIf] [-Confirm] [] ``` ### ExportAllResultsFromCsv ``` -Export-M365SecurityAuditTable [-CsvPath] [-ExportAllTests] -ExportPath [-ExportOriginalTests] - [-ExportToExcel] [] +Export-M365SecurityAuditTable [-CsvPath] [-ExportNestedTables] -ExportPath + [-ExportOriginalTests] [-ExportToExcel] [-Prefix ] [-ProgressAction ] [-WhatIf] + [-Confirm] [] ``` ## DESCRIPTION @@ -109,8 +112,24 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -ExportAllTests -Switch to export all test results. +### -OutputTestNumber +The test number to output as an object. +Valid values are "1.1.1", "1.3.1", "6.1.2", "6.1.3", "7.3.4". + +```yaml +Type: String +Parameter Sets: OutputObjectFromAuditResultsSingle, OutputObjectFromCsvSingle +Aliases: + +Required: True +Position: 2 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ExportNestedTables +Switch to export all test results. When specified, all test results are exported to the specified path. ```yaml Type: SwitchParameter @@ -124,21 +143,6 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -ExportOriginalTests -Switch to export the original audit results to a CSV file. - -```yaml -Type: SwitchParameter -Parameter Sets: ExportAllResultsFromAuditResults, ExportAllResultsFromCsv -Aliases: - -Required: True -Position: Named -Default value: False -Accept pipeline input: False -Accept wildcard characters: False -``` - ### -ExportPath The path where the CSV files will be exported. @@ -154,6 +158,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -ExportOriginalTests +Switch to export the original audit results to a CSV file. + +```yaml +Type: SwitchParameter +Parameter Sets: ExportAllResultsFromAuditResults, ExportAllResultsFromCsv +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -ExportToExcel Switch to export the results to an Excel file. @@ -169,17 +188,62 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -OutputTestNumber -The test number to output as an object. -Valid values are "1.1.1", "1.3.1", "6.1.2", "6.1.3", "7.3.4". +### -Prefix +Add Prefix to filename after date when outputting to excel or csv. +Validate that the count of letters in the prefix is less than 5. ```yaml Type: String -Parameter Sets: OutputObjectFromAuditResultsSingle, OutputObjectFromCsvSingle +Parameter Sets: ExportAllResultsFromAuditResults, ExportAllResultsFromCsv Aliases: -Required: True -Position: 2 +Required: False +Position: Named +Default value: Corp +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ProgressAction +{{ Fill ProgressAction Description }} + +```yaml +Type: ActionPreference +Parameter Sets: (All) +Aliases: proga + +Required: False +Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False @@ -191,7 +255,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## INPUTS ### [CISAuditResult[]] - An array of CISAuditResult objects. -### [string] - A path to a CSV file. +### [string] - A path to a CSV file. ## OUTPUTS ### [PSCustomObject] - A custom object containing the path to the zip file and its hash. diff --git a/help/Get-AdminRoleUserLicense.md b/help/Get-AdminRoleUserLicense.md index a36d202..629903e 100644 --- a/help/Get-AdminRoleUserLicense.md +++ b/help/Get-AdminRoleUserLicense.md @@ -1,4 +1,4 @@ ---- +--- external help file: M365FoundationsCISReport-help.xml Module Name: M365FoundationsCISReport online version: https://criticalsolutionsnetwork.github.io/M365FoundationsCISReport/#Get-AdminRoleUserLicense @@ -13,7 +13,7 @@ Retrieves user licenses and roles for administrative accounts from Microsoft 365 ## SYNTAX ``` -Get-AdminRoleUserLicense [-SkipGraphConnection] [] +Get-AdminRoleUserLicense [-SkipGraphConnection] [-ProgressAction ] [] ``` ## DESCRIPTION @@ -54,6 +54,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -ProgressAction +{{ Fill ProgressAction Description }} + +```yaml +Type: ActionPreference +Parameter Sets: (All) +Aliases: proga + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### CommonParameters This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). @@ -63,7 +78,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS ### PSCustomObject -### Returns a custom object for each user with administrative roles that includes the following properties: RoleName, UserName, UserPrincipalName, UserId, HybridUser, and Licenses. +### Returns a custom object for each user with administrative roles that includes the following properties: RoleName, UserName, UserPrincipalName, UserId, HybridUser, and Licenses. ## NOTES Creation Date: 2024-04-15 Purpose/Change: Initial function development to support Microsoft 365 administrative role auditing. diff --git a/help/Get-MFAStatus.md b/help/Get-MFAStatus.md index daf0520..e5accc3 100644 --- a/help/Get-MFAStatus.md +++ b/help/Get-MFAStatus.md @@ -1,4 +1,4 @@ ---- +--- external help file: M365FoundationsCISReport-help.xml Module Name: M365FoundationsCISReport online version: https://criticalsolutionsnetwork.github.io/M365FoundationsCISReport/#Get-MFAStatus @@ -13,7 +13,8 @@ Retrieves the MFA (Multi-Factor Authentication) status for Azure Active Director ## SYNTAX ``` -Get-MFAStatus [[-UserId] ] [-SkipMSOLConnectionChecks] [] +Get-MFAStatus [[-UserId] ] [-SkipMSOLConnectionChecks] [-ProgressAction ] + [] ``` ## DESCRIPTION @@ -36,21 +37,6 @@ Retrieves the MFA status for the specified user with the UPN "example@domain.com ## PARAMETERS -### -SkipMSOLConnectionChecks -{{ Fill SkipMSOLConnectionChecks Description }} - -```yaml -Type: SwitchParameter -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: False -Accept pipeline input: False -Accept wildcard characters: False -``` - ### -UserId The User Principal Name (UPN) of a specific user to retrieve MFA status for. If not provided, the function retrieves MFA status for all users. @@ -67,6 +53,36 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -SkipMSOLConnectionChecks +{{ Fill SkipMSOLConnectionChecks Description }} + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ProgressAction +{{ Fill ProgressAction Description }} + +```yaml +Type: ActionPreference +Parameter Sets: (All) +Aliases: proga + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### CommonParameters This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). @@ -75,14 +91,14 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS ### System.Object -### Returns a sorted list of custom objects containing the following properties: -### - UserPrincipalName -### - DisplayName -### - MFAState -### - MFADefaultMethod -### - MFAPhoneNumber -### - PrimarySMTP -### - Aliases +### Returns a sorted list of custom objects containing the following properties: +### - UserPrincipalName +### - DisplayName +### - MFAState +### - MFADefaultMethod +### - MFAPhoneNumber +### - PrimarySMTP +### - Aliases ## NOTES The function requires the MSOL module to be installed and connected to your tenant. Ensure that you have the necessary permissions to read user and MFA status information. diff --git a/help/Grant-M365SecurityAuditConsent.md b/help/Grant-M365SecurityAuditConsent.md index eb1c7aa..d22f0f7 100644 --- a/help/Grant-M365SecurityAuditConsent.md +++ b/help/Grant-M365SecurityAuditConsent.md @@ -1,4 +1,4 @@ ---- +--- external help file: M365FoundationsCISReport-help.xml Module Name: M365FoundationsCISReport online version: https://criticalsolutionsnetwork.github.io/M365FoundationsCISReport/#Grant-M365SecurityAuditConsent @@ -14,7 +14,8 @@ Grants Microsoft Graph permissions for an auditor. ``` Grant-M365SecurityAuditConsent [-UserPrincipalNameForConsent] [-SkipGraphConnection] - [-SkipModuleCheck] [-SuppressRevertOutput] [-DoNotDisconnect] [-WhatIf] [-Confirm] [] + [-SkipModuleCheck] [-SuppressRevertOutput] [-DoNotDisconnect] [-ProgressAction ] [-WhatIf] + [-Confirm] [] ``` ## DESCRIPTION @@ -40,18 +41,18 @@ Grants Microsoft Graph permissions to user@example.com, skipping the connection ## PARAMETERS -### -DoNotDisconnect -If specified, does not disconnect from Microsoft Graph after granting consent. +### -UserPrincipalNameForConsent +Specify the UPN of the user to grant consent for. ```yaml -Type: SwitchParameter +Type: String Parameter Sets: (All) Aliases: -Required: False -Position: Named -Default value: False -Accept pipeline input: False +Required: True +Position: 1 +Default value: None +Accept pipeline input: True (ByPropertyName, ByValue) Accept wildcard characters: False ``` @@ -100,18 +101,34 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -UserPrincipalNameForConsent -Specify the UPN of the user to grant consent for. +### -DoNotDisconnect +If specified, does not disconnect from Microsoft Graph after granting consent. ```yaml -Type: String +Type: SwitchParameter Parameter Sets: (All) Aliases: -Required: True -Position: 1 +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named Default value: None -Accept pipeline input: True (ByPropertyName, ByValue) +Accept pipeline input: False Accept wildcard characters: False ``` @@ -130,14 +147,13 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -WhatIf -Shows what would happen if the cmdlet runs. -The cmdlet is not run. +### -ProgressAction +{{ Fill ProgressAction Description }} ```yaml -Type: SwitchParameter +Type: ActionPreference Parameter Sets: (All) -Aliases: wi +Aliases: proga Required: False Position: Named diff --git a/help/Invoke-M365SecurityAudit.md b/help/Invoke-M365SecurityAudit.md index 34ff707..397b928 100644 --- a/help/Invoke-M365SecurityAudit.md +++ b/help/Invoke-M365SecurityAudit.md @@ -1,4 +1,4 @@ ---- +--- external help file: M365FoundationsCISReport-help.xml Module Name: M365FoundationsCISReport online version: https://criticalsolutionsnetwork.github.io/M365FoundationsCISReport/#Invoke-M365SecurityAudit @@ -16,14 +16,16 @@ Invokes a security audit for Microsoft 365 environments. ``` Invoke-M365SecurityAudit [-TenantAdminUrl ] [-DomainName ] [-ApprovedCloudStorageProviders ] [-ApprovedFederatedDomains ] [-DoNotConnect] - [-DoNotDisconnect] [-NoModuleCheck] [-DoNotConfirmConnections] [-WhatIf] [-Confirm] [] + [-DoNotDisconnect] [-NoModuleCheck] [-DoNotConfirmConnections] [-AuthParams ] + [-ProgressAction ] [-WhatIf] [-Confirm] [] ``` ### ELevelFilter ``` Invoke-M365SecurityAudit [-TenantAdminUrl ] [-DomainName ] -ELevel -ProfileLevel [-ApprovedCloudStorageProviders ] [-ApprovedFederatedDomains ] - [-DoNotConnect] [-DoNotDisconnect] [-NoModuleCheck] [-DoNotConfirmConnections] [-WhatIf] [-Confirm] + [-DoNotConnect] [-DoNotDisconnect] [-NoModuleCheck] [-DoNotConfirmConnections] + [-AuthParams ] [-ProgressAction ] [-WhatIf] [-Confirm] [] ``` @@ -31,35 +33,40 @@ Invoke-M365SecurityAudit [-TenantAdminUrl ] [-DomainName ] -ELev ``` Invoke-M365SecurityAudit [-TenantAdminUrl ] [-DomainName ] [-IncludeIG1] [-ApprovedCloudStorageProviders ] [-ApprovedFederatedDomains ] [-DoNotConnect] - [-DoNotDisconnect] [-NoModuleCheck] [-DoNotConfirmConnections] [-WhatIf] [-Confirm] [] + [-DoNotDisconnect] [-NoModuleCheck] [-DoNotConfirmConnections] [-AuthParams ] + [-ProgressAction ] [-WhatIf] [-Confirm] [] ``` ### IG2Filter ``` Invoke-M365SecurityAudit [-TenantAdminUrl ] [-DomainName ] [-IncludeIG2] [-ApprovedCloudStorageProviders ] [-ApprovedFederatedDomains ] [-DoNotConnect] - [-DoNotDisconnect] [-NoModuleCheck] [-DoNotConfirmConnections] [-WhatIf] [-Confirm] [] + [-DoNotDisconnect] [-NoModuleCheck] [-DoNotConfirmConnections] [-AuthParams ] + [-ProgressAction ] [-WhatIf] [-Confirm] [] ``` ### IG3Filter ``` Invoke-M365SecurityAudit [-TenantAdminUrl ] [-DomainName ] [-IncludeIG3] [-ApprovedCloudStorageProviders ] [-ApprovedFederatedDomains ] [-DoNotConnect] - [-DoNotDisconnect] [-NoModuleCheck] [-DoNotConfirmConnections] [-WhatIf] [-Confirm] [] + [-DoNotDisconnect] [-NoModuleCheck] [-DoNotConfirmConnections] [-AuthParams ] + [-ProgressAction ] [-WhatIf] [-Confirm] [] ``` ### RecFilter ``` Invoke-M365SecurityAudit [-TenantAdminUrl ] [-DomainName ] -IncludeRecommendation [-ApprovedCloudStorageProviders ] [-ApprovedFederatedDomains ] [-DoNotConnect] - [-DoNotDisconnect] [-NoModuleCheck] [-DoNotConfirmConnections] [-WhatIf] [-Confirm] [] + [-DoNotDisconnect] [-NoModuleCheck] [-DoNotConfirmConnections] [-AuthParams ] + [-ProgressAction ] [-WhatIf] [-Confirm] [] ``` ### SkipRecFilter ``` Invoke-M365SecurityAudit [-TenantAdminUrl ] [-DomainName ] -SkipRecommendation [-ApprovedCloudStorageProviders ] [-ApprovedFederatedDomains ] [-DoNotConnect] - [-DoNotDisconnect] [-NoModuleCheck] [-DoNotConfirmConnections] [-WhatIf] [-Confirm] [] + [-DoNotDisconnect] [-NoModuleCheck] [-DoNotConfirmConnections] [-AuthParams ] + [-ProgressAction ] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION @@ -165,26 +172,12 @@ What if: Performing the operation "Invoke-M365SecurityAudit" on target "Microsof ## PARAMETERS -### -ApprovedCloudStorageProviders -Specifies the approved cloud storage providers for the audit. Accepts an array of cloud storage provider names. +### -TenantAdminUrl +The URL of the tenant admin. +If not specified, none of the SharePoint Online tests will run. ```yaml -Type: String[] -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: @() -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -ApprovedFederatedDomains -Specifies the approved federated domains for the audit test 8.2.1. Accepts an array of allowed domain names. - -```yaml -Type: String[] +Type: String Parameter Sets: (All) Aliases: @@ -210,51 +203,6 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -DoNotConfirmConnections -If specified, the cmdlet will not prompt for confirmation before proceeding with established connections and will disconnect from all of them. - -```yaml -Type: SwitchParameter -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: False -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -DoNotConnect -If specified, the cmdlet will not establish a connection to Microsoft 365 services. - -```yaml -Type: SwitchParameter -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: False -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -DoNotDisconnect -If specified, the cmdlet will not disconnect from Microsoft 365 services after execution. - -```yaml -Type: SwitchParameter -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: False -Accept pipeline input: False -Accept wildcard characters: False -``` - ### -ELevel Specifies the E-Level (E3 or E5) for the audit. This parameter is optional and can be combined with the ProfileLevel parameter. @@ -271,6 +219,22 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -ProfileLevel +Specifies the profile level (L1 or L2) for the audit. +This parameter is optional and can be combined with the ELevel parameter. + +```yaml +Type: String +Parameter Sets: ELevelFilter +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -IncludeIG1 If specified, includes tests where IG1 is true. @@ -332,37 +296,6 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -NoModuleCheck -If specified, the cmdlet will not check for the presence of required modules. - -```yaml -Type: SwitchParameter -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: False -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -ProfileLevel -Specifies the profile level (L1 or L2) for the audit. -This parameter is optional and can be combined with the ELevel parameter. - -```yaml -Type: String -Parameter Sets: ELevelFilter -Aliases: - -Required: True -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - ### -SkipRecommendation Specifies specific recommendations to exclude from the audit. Accepts an array of recommendation numbers. @@ -379,12 +312,26 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -TenantAdminUrl -The URL of the tenant admin. -If not specified, none of the SharePoint Online tests will run. +### -ApprovedCloudStorageProviders +Specifies the approved cloud storage providers for the audit. Accepts an array of cloud storage provider names. ```yaml -Type: String +Type: String[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: @() +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ApprovedFederatedDomains +Specifies the approved federated domains for the audit test 8.2.1. Accepts an array of allowed domain names. + +```yaml +Type: String[] Parameter Sets: (All) Aliases: @@ -395,13 +342,73 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -Confirm -Prompts you for confirmation before running the cmdlet. +### -DoNotConnect +If specified, the cmdlet will not establish a connection to Microsoft 365 services. ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: cf +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DoNotDisconnect +If specified, the cmdlet will not disconnect from Microsoft 365 services after execution. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -NoModuleCheck +If specified, the cmdlet will not check for the presence of required modules. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DoNotConfirmConnections +If specified, the cmdlet will not prompt for confirmation before proceeding with established connections and will disconnect from all of them. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -AuthParams +Specifies an authentication object containing parameters for application-based authentication. If provided, this will be used for connecting to services. + +```yaml +Type: CISAuthenticationParameters +Parameter Sets: (All) +Aliases: Required: False Position: Named @@ -426,6 +433,36 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ProgressAction +{{ Fill ProgressAction Description }} + +```yaml +Type: ActionPreference +Parameter Sets: (All) +Aliases: proga + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### CommonParameters This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). @@ -435,7 +472,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS ### CISAuditResult[] -### The cmdlet returns an array of CISAuditResult objects representing the results of the security audit. +### The cmdlet returns an array of CISAuditResult objects representing the results of the security audit. ## NOTES - This module is based on CIS benchmarks. - Governed by the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License. diff --git a/help/M365FoundationsCISReport.md b/help/M365FoundationsCISReport.md index 37fff5a..d1a0893 100644 --- a/help/M365FoundationsCISReport.md +++ b/help/M365FoundationsCISReport.md @@ -1,4 +1,4 @@ ---- +--- Module Name: M365FoundationsCISReport Module Guid: 0d064bfb-d1ce-484b-a173-993b55984dc9 Download Help Link: {{Please enter Link manually}} @@ -26,6 +26,9 @@ Grants Microsoft Graph permissions for an auditor. ### [Invoke-M365SecurityAudit](Invoke-M365SecurityAudit) Invokes a security audit for Microsoft 365 environments. +### [New-M365SecurityAuditAuthObject](New-M365SecurityAuditAuthObject) +Creates a new CISAuthenticationParameters object for Microsoft 365 authentication. + ### [Remove-RowsWithEmptyCSVStatus](Remove-RowsWithEmptyCSVStatus) Removes rows from an Excel worksheet where the 'CSV_Status' column is empty and saves the result to a new file. diff --git a/help/New-M365SecurityAuditAuthObject.md b/help/New-M365SecurityAuditAuthObject.md new file mode 100644 index 0000000..62b453a --- /dev/null +++ b/help/New-M365SecurityAuditAuthObject.md @@ -0,0 +1,149 @@ +--- +external help file: M365FoundationsCISReport-help.xml +Module Name: M365FoundationsCISReport +online version: +schema: 2.0.0 +--- + +# New-M365SecurityAuditAuthObject + +## SYNOPSIS +Creates a new CISAuthenticationParameters object for Microsoft 365 authentication. + +## SYNTAX + +``` +New-M365SecurityAuditAuthObject [-ClientCertThumbPrint] [-ClientId] [-TenantId] + [-OnMicrosoftUrl] [-SpAdminUrl] [-ProgressAction ] [] +``` + +## DESCRIPTION +The New-M365SecurityAuditAuthObject function constructs a new CISAuthenticationParameters object +containing the necessary credentials and URLs for authenticating to various Microsoft 365 services. +It validates input parameters to ensure they conform to expected formats and length requirements. +An app registration in Azure AD with the required permissions to EXO, SPO, MSTeams and MgGraph is needed. + +## EXAMPLES + +### EXAMPLE 1 +``` +$authParams = New-M365SecurityAuditAuthObject -ClientCertThumbPrint "ABCDEF1234567890ABCDEF1234567890ABCDEF12" ` + -ClientId "12345678-1234-1234-1234-123456789012" ` + -TenantId "12345678-1234-1234-1234-123456789012" ` + -OnMicrosoftUrl "yourcompany.onmicrosoft.com" ` + -SpAdminUrl "https://yourcompany-admin.sharepoint.com" +Creates a new CISAuthenticationParameters object with the specified credentials and URLs, validating each parameter's format and length. +``` + +## PARAMETERS + +### -ClientCertThumbPrint +The thumbprint of the client certificate used for authentication. +It must be a 40-character hexadecimal string. +This certificate is used to authenticate the application in Azure AD. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ClientId +The Client ID (Application ID) of the Azure AD application. +It must be a valid GUID format. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: True +Position: 2 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -TenantId +The Tenant ID of the Azure AD directory. +It must be a valid GUID format representing your Microsoft 365 tenant. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: True +Position: 3 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -OnMicrosoftUrl +The URL of your onmicrosoft.com domain. +It should be in the format 'example.onmicrosoft.com'. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: True +Position: 4 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SpAdminUrl +The SharePoint admin URL, which should end with '-admin.sharepoint.com'. +This URL is used for connecting to SharePoint Online. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: True +Position: 5 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ProgressAction +{{ Fill ProgressAction Description }} + +```yaml +Type: ActionPreference +Parameter Sets: (All) +Aliases: proga + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### None. You cannot pipe objects to this function. +## OUTPUTS + +### CISAuthenticationParameters +### The function returns an instance of the CISAuthenticationParameters class containing the authentication details. +## NOTES +Requires PowerShell 7.0 or later. + +## RELATED LINKS diff --git a/help/Remove-RowsWithEmptyCSVStatus.md b/help/Remove-RowsWithEmptyCSVStatus.md index 4b0f57d..8582a86 100644 --- a/help/Remove-RowsWithEmptyCSVStatus.md +++ b/help/Remove-RowsWithEmptyCSVStatus.md @@ -1,4 +1,4 @@ ---- +--- external help file: M365FoundationsCISReport-help.xml Module Name: M365FoundationsCISReport online version: @@ -13,7 +13,8 @@ Removes rows from an Excel worksheet where the 'CSV_Status' column is empty and ## SYNTAX ``` -Remove-RowsWithEmptyCSVStatus [-FilePath] [-WorksheetName] [] +Remove-RowsWithEmptyCSVStatus [-FilePath] [-WorksheetName] + [-ProgressAction ] [] ``` ## DESCRIPTION @@ -60,6 +61,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -ProgressAction +{{ Fill ProgressAction Description }} + +```yaml +Type: ActionPreference +Parameter Sets: (All) +Aliases: proga + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### CommonParameters This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). diff --git a/help/Sync-CISExcelAndCsvData.md b/help/Sync-CISExcelAndCsvData.md index c869002..e412199 100644 --- a/help/Sync-CISExcelAndCsvData.md +++ b/help/Sync-CISExcelAndCsvData.md @@ -1,4 +1,4 @@ ---- +--- external help file: M365FoundationsCISReport-help.xml Module Name: M365FoundationsCISReport online version: https://criticalsolutionsnetwork.github.io/M365FoundationsCISReport/#Sync-CISExcelAndCsvData @@ -14,7 +14,7 @@ Synchronizes and updates data in an Excel worksheet with new information from a ``` Sync-CISExcelAndCsvData [[-ExcelPath] ] [[-CsvPath] ] [[-SheetName] ] - [] + [-ProgressAction ] [] ``` ## DESCRIPTION @@ -32,22 +32,6 @@ Updates the 'AuditData' worksheet in 'excel.xlsx' with data from 'data.csv', add ## PARAMETERS -### -CsvPath -Specifies the path to the CSV file containing new data. -This parameter is mandatory. - -```yaml -Type: String -Parameter Sets: (All) -Aliases: - -Required: False -Position: 2 -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - ### -ExcelPath Specifies the path to the Excel file to be updated. This parameter is mandatory. @@ -64,6 +48,22 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -CsvPath +Specifies the path to the CSV file containing new data. +This parameter is mandatory. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: 2 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -SheetName Specifies the name of the worksheet in the Excel file where data will be merged and updated. This parameter is mandatory. @@ -80,13 +80,28 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -ProgressAction +{{ Fill ProgressAction Description }} + +```yaml +Type: ActionPreference +Parameter Sets: (All) +Aliases: proga + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### CommonParameters This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS ### System.String -### The function accepts strings for file paths and worksheet names. +### The function accepts strings for file paths and worksheet names. ## OUTPUTS ### None diff --git a/helpers/Build-Help.ps1 b/helpers/Build-Help.ps1 index 727d0a3..c8d2882 100644 --- a/helpers/Build-Help.ps1 +++ b/helpers/Build-Help.ps1 @@ -1,11 +1,11 @@ Import-Module .\output\module\M365FoundationsCISReport\*\*.psd1 . .\source\Classes\CISAuditResult.ps1 .\helpers\psDoc-master\src\psDoc.ps1 -moduleName M365FoundationsCISReport -outputDir docs -template ".\helpers\psDoc-master\src\out-html-template.ps1" -.\helpers\psDoc-master\src\psDoc.ps1 -moduleName M365FoundationsCISReport -outputDir ".\" -template ".\helpers\psDoc-master\src\out-markdown-template.ps1" -fileName ".\README.md" - +.\helpers\psDoc-master\src\psDoc.ps1 -moduleName M365FoundationsCISReport -outputDir ".\" -template ".\helpers\psDoc-master\src\out-markdown-template.ps1" -fileName ".\README.md" <# - $ver = "v0.1.24" + $ver = "v0.1.26" git checkout main git pull origin main git tag -a $ver -m "Release version $ver refactor Update" diff --git a/source/Public/New-M365SecurityAuditAuthObject.ps1 b/source/Public/New-M365SecurityAuditAuthObject.ps1 index 303fdf5..a13ad7e 100644 --- a/source/Public/New-M365SecurityAuditAuthObject.ps1 +++ b/source/Public/New-M365SecurityAuditAuthObject.ps1 @@ -5,6 +5,7 @@ The New-M365SecurityAuditAuthObject function constructs a new CISAuthenticationParameters object containing the necessary credentials and URLs for authenticating to various Microsoft 365 services. It validates input parameters to ensure they conform to expected formats and length requirements. + An app registration in Azure AD with the required permissions to EXO, SPO, MSTeams and MgGraph is needed. .PARAMETER ClientCertThumbPrint The thumbprint of the client certificate used for authentication. It must be a 40-character hexadecimal string. This certificate is used to authenticate the application in Azure AD. @@ -28,6 +29,8 @@ -OnMicrosoftUrl "yourcompany.onmicrosoft.com" ` -SpAdminUrl "https://yourcompany-admin.sharepoint.com" Creates a new CISAuthenticationParameters object with the specified credentials and URLs, validating each parameter's format and length. + .NOTES + Requires PowerShell 7.0 or later. #> function New-M365SecurityAuditAuthObject { [CmdletBinding()] diff --git a/source/en-US/M365FoundationsCISReport-help.xml b/source/en-US/M365FoundationsCISReport-help.xml index 0feb087..6bc758e 100644 --- a/source/en-US/M365FoundationsCISReport-help.xml +++ b/source/en-US/M365FoundationsCISReport-help.xml @@ -39,13 +39,47 @@ None + + WhatIf + + Shows what would happen if the cmdlet runs. The cmdlet is not run. + + + SwitchParameter + + + False + + + Confirm + + Prompts you for confirmation before running the cmdlet. + + + SwitchParameter + + + False + + + ProgressAction + + {{ Fill ProgressAction Description }} + + ActionPreference + + ActionPreference + + + None + Export-M365SecurityAuditTable - ExportAllTests + ExportNestedTables - Switch to export all test results. + Switch to export all test results. When specified, all test results are exported to the specified path. SwitchParameter @@ -65,17 +99,6 @@ None - - ExportOriginalTests - - Switch to export the original audit results to a CSV file. - - - SwitchParameter - - - False - ExportPath @@ -88,6 +111,17 @@ None + + ExportOriginalTests + + Switch to export the original audit results to a CSV file. + + + SwitchParameter + + + False + ExportToExcel @@ -99,6 +133,52 @@ False + + Prefix + + Add Prefix to filename after date when outputting to excel or csv. Validate that the count of letters in the prefix is less than 5. + + String + + String + + + Corp + + + WhatIf + + Shows what would happen if the cmdlet runs. The cmdlet is not run. + + + SwitchParameter + + + False + + + Confirm + + Prompts you for confirmation before running the cmdlet. + + + SwitchParameter + + + False + + + ProgressAction + + {{ Fill ProgressAction Description }} + + ActionPreference + + ActionPreference + + + None + Export-M365SecurityAuditTable @@ -126,13 +206,47 @@ None + + WhatIf + + Shows what would happen if the cmdlet runs. The cmdlet is not run. + + + SwitchParameter + + + False + + + Confirm + + Prompts you for confirmation before running the cmdlet. + + + SwitchParameter + + + False + + + ProgressAction + + {{ Fill ProgressAction Description }} + + ActionPreference + + ActionPreference + + + None + Export-M365SecurityAuditTable - ExportAllTests + ExportNestedTables - Switch to export all test results. + Switch to export all test results. When specified, all test results are exported to the specified path. SwitchParameter @@ -152,17 +266,6 @@ None - - ExportOriginalTests - - Switch to export the original audit results to a CSV file. - - - SwitchParameter - - - False - ExportPath @@ -175,6 +278,17 @@ None + + ExportOriginalTests + + Switch to export the original audit results to a CSV file. + + + SwitchParameter + + + False + ExportToExcel @@ -186,6 +300,52 @@ False + + Prefix + + Add Prefix to filename after date when outputting to excel or csv. Validate that the count of letters in the prefix is less than 5. + + String + + String + + + Corp + + + WhatIf + + Shows what would happen if the cmdlet runs. The cmdlet is not run. + + + SwitchParameter + + + False + + + Confirm + + Prompts you for confirmation before running the cmdlet. + + + SwitchParameter + + + False + + + ProgressAction + + {{ Fill ProgressAction Description }} + + ActionPreference + + ActionPreference + + + None + @@ -213,22 +373,22 @@ None - - ExportAllTests + + OutputTestNumber - Switch to export all test results. + The test number to output as an object. Valid values are "1.1.1", "1.3.1", "6.1.2", "6.1.3", "7.3.4". - SwitchParameter + String - SwitchParameter + String - False + None - - ExportOriginalTests + + ExportNestedTables - Switch to export the original audit results to a CSV file. + Switch to export all test results. When specified, all test results are exported to the specified path. SwitchParameter @@ -249,6 +409,18 @@ None + + ExportOriginalTests + + Switch to export the original audit results to a CSV file. + + SwitchParameter + + SwitchParameter + + + False + ExportToExcel @@ -261,16 +433,52 @@ False - - OutputTestNumber + + Prefix - The test number to output as an object. Valid values are "1.1.1", "1.3.1", "6.1.2", "6.1.3", "7.3.4". + Add Prefix to filename after date when outputting to excel or csv. Validate that the count of letters in the prefix is less than 5. String String + Corp + + + WhatIf + + Shows what would happen if the cmdlet runs. The cmdlet is not run. + + SwitchParameter + + SwitchParameter + + + False + + + Confirm + + Prompts you for confirmation before running the cmdlet. + + SwitchParameter + + SwitchParameter + + + False + + + ProgressAction + + {{ Fill ProgressAction Description }} + + ActionPreference + + ActionPreference + + None @@ -390,6 +598,18 @@ False + + ProgressAction + + {{ Fill ProgressAction Description }} + + ActionPreference + + ActionPreference + + + None + @@ -405,6 +625,18 @@ False + + ProgressAction + + {{ Fill ProgressAction Description }} + + ActionPreference + + ActionPreference + + + None + @@ -500,9 +732,33 @@ False + + ProgressAction + + {{ Fill ProgressAction Description }} + + ActionPreference + + ActionPreference + + + None + + + UserId + + The User Principal Name (UPN) of a specific user to retrieve MFA status for. If not provided, the function retrieves MFA status for all users. + + String + + String + + + None + SkipMSOLConnectionChecks @@ -515,14 +771,14 @@ False - - UserId + + ProgressAction - The User Principal Name (UPN) of a specific user to retrieve MFA status for. If not provided, the function retrieves MFA status for all users. + {{ Fill ProgressAction Description }} - String + ActionPreference - String + ActionPreference None @@ -660,17 +916,6 @@ Retrieves the MFA status for the specified user with the UPN "example@domain.com None - - DoNotDisconnect - - If specified, does not disconnect from Microsoft Graph after granting consent. - - - SwitchParameter - - - False - SkipGraphConnection @@ -704,10 +949,10 @@ Retrieves the MFA status for the specified user with the UPN "example@domain.com False - - Confirm + + DoNotDisconnect - Prompts you for confirmation before running the cmdlet. + If specified, does not disconnect from Microsoft Graph after granting consent. SwitchParameter @@ -726,20 +971,43 @@ Retrieves the MFA status for the specified user with the UPN "example@domain.com False + + Confirm + + Prompts you for confirmation before running the cmdlet. + + + SwitchParameter + + + False + + + ProgressAction + + {{ Fill ProgressAction Description }} + + ActionPreference + + ActionPreference + + + None + - - DoNotDisconnect + + UserPrincipalNameForConsent - If specified, does not disconnect from Microsoft Graph after granting consent. + Specify the UPN of the user to grant consent for. - SwitchParameter + String - SwitchParameter + String - False + None SkipGraphConnection @@ -777,22 +1045,10 @@ Retrieves the MFA status for the specified user with the UPN "example@domain.com False - - UserPrincipalNameForConsent + + DoNotDisconnect - Specify the UPN of the user to grant consent for. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. + If specified, does not disconnect from Microsoft Graph after granting consent. SwitchParameter @@ -813,6 +1069,30 @@ Retrieves the MFA status for the specified user with the UPN "example@domain.com False + + Confirm + + Prompts you for confirmation before running the cmdlet. + + SwitchParameter + + SwitchParameter + + + False + + + ProgressAction + + {{ Fill ProgressAction Description }} + + ActionPreference + + ActionPreference + + + None + @@ -869,25 +1149,13 @@ Retrieves the MFA status for the specified user with the UPN "example@domain.com Invoke-M365SecurityAudit - ApprovedCloudStorageProviders + TenantAdminUrl - Specifies the approved cloud storage providers for the audit. Accepts an array of cloud storage provider names. + The URL of the tenant admin. If not specified, none of the SharePoint Online tests will run. - String[] + String - String[] - - - @() - - - ApprovedFederatedDomains - - Specifies the approved federated domains for the audit test 8.2.1. Accepts an array of allowed domain names. - - String[] - - String[] + String None @@ -904,39 +1172,6 @@ Retrieves the MFA status for the specified user with the UPN "example@domain.com None - - DoNotConfirmConnections - - If specified, the cmdlet will not prompt for confirmation before proceeding with established connections and will disconnect from all of them. - - - SwitchParameter - - - False - - - DoNotConnect - - If specified, the cmdlet will not establish a connection to Microsoft 365 services. - - - SwitchParameter - - - False - - - DoNotDisconnect - - If specified, the cmdlet will not disconnect from Microsoft 365 services after execution. - - - SwitchParameter - - - False - ELevel @@ -949,17 +1184,6 @@ Retrieves the MFA status for the specified user with the UPN "example@domain.com None - - NoModuleCheck - - If specified, the cmdlet will not check for the presence of required modules. - - - SwitchParameter - - - False - ProfileLevel @@ -972,43 +1196,6 @@ Retrieves the MFA status for the specified user with the UPN "example@domain.com None - - TenantAdminUrl - - The URL of the tenant admin. If not specified, none of the SharePoint Online tests will run. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Invoke-M365SecurityAudit ApprovedCloudStorageProviders @@ -1033,29 +1220,6 @@ Retrieves the MFA status for the specified user with the UPN "example@domain.com None - - DomainName - - The domain name of the Microsoft 365 environment to test. This parameter is not mandatory and by default it will pass/fail all found domains as a group if a specific domain is not specified. - - String - - String - - - None - - - DoNotConfirmConnections - - If specified, the cmdlet will not prompt for confirmation before proceeding with established connections and will disconnect from all of them. - - - SwitchParameter - - - False - DoNotConnect @@ -1078,6 +1242,101 @@ Retrieves the MFA status for the specified user with the UPN "example@domain.com False + + NoModuleCheck + + If specified, the cmdlet will not check for the presence of required modules. + + + SwitchParameter + + + False + + + DoNotConfirmConnections + + If specified, the cmdlet will not prompt for confirmation before proceeding with established connections and will disconnect from all of them. + + + SwitchParameter + + + False + + + AuthParams + + Specifies an authentication object containing parameters for application-based authentication. If provided, this will be used for connecting to services. + + CISAuthenticationParameters + + CISAuthenticationParameters + + + None + + + WhatIf + + Shows what would happen if the cmdlet runs. The cmdlet is not run. + + + SwitchParameter + + + False + + + Confirm + + Prompts you for confirmation before running the cmdlet. + + + SwitchParameter + + + False + + + ProgressAction + + {{ Fill ProgressAction Description }} + + ActionPreference + + ActionPreference + + + None + + + + Invoke-M365SecurityAudit + + TenantAdminUrl + + The URL of the tenant admin. If not specified, none of the SharePoint Online tests will run. + + String + + String + + + None + + + DomainName + + The domain name of the Microsoft 365 environment to test. This parameter is not mandatory and by default it will pass/fail all found domains as a group if a specific domain is not specified. + + String + + String + + + None + IncludeIG1 @@ -1089,54 +1348,6 @@ Retrieves the MFA status for the specified user with the UPN "example@domain.com False - - NoModuleCheck - - If specified, the cmdlet will not check for the presence of required modules. - - - SwitchParameter - - - False - - - TenantAdminUrl - - The URL of the tenant admin. If not specified, none of the SharePoint Online tests will run. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Invoke-M365SecurityAudit ApprovedCloudStorageProviders @@ -1161,29 +1372,6 @@ Retrieves the MFA status for the specified user with the UPN "example@domain.com None - - DomainName - - The domain name of the Microsoft 365 environment to test. This parameter is not mandatory and by default it will pass/fail all found domains as a group if a specific domain is not specified. - - String - - String - - - None - - - DoNotConfirmConnections - - If specified, the cmdlet will not prompt for confirmation before proceeding with established connections and will disconnect from all of them. - - - SwitchParameter - - - False - DoNotConnect @@ -1206,6 +1394,101 @@ Retrieves the MFA status for the specified user with the UPN "example@domain.com False + + NoModuleCheck + + If specified, the cmdlet will not check for the presence of required modules. + + + SwitchParameter + + + False + + + DoNotConfirmConnections + + If specified, the cmdlet will not prompt for confirmation before proceeding with established connections and will disconnect from all of them. + + + SwitchParameter + + + False + + + AuthParams + + Specifies an authentication object containing parameters for application-based authentication. If provided, this will be used for connecting to services. + + CISAuthenticationParameters + + CISAuthenticationParameters + + + None + + + WhatIf + + Shows what would happen if the cmdlet runs. The cmdlet is not run. + + + SwitchParameter + + + False + + + Confirm + + Prompts you for confirmation before running the cmdlet. + + + SwitchParameter + + + False + + + ProgressAction + + {{ Fill ProgressAction Description }} + + ActionPreference + + ActionPreference + + + None + + + + Invoke-M365SecurityAudit + + TenantAdminUrl + + The URL of the tenant admin. If not specified, none of the SharePoint Online tests will run. + + String + + String + + + None + + + DomainName + + The domain name of the Microsoft 365 environment to test. This parameter is not mandatory and by default it will pass/fail all found domains as a group if a specific domain is not specified. + + String + + String + + + None + IncludeIG2 @@ -1217,54 +1500,6 @@ Retrieves the MFA status for the specified user with the UPN "example@domain.com False - - NoModuleCheck - - If specified, the cmdlet will not check for the presence of required modules. - - - SwitchParameter - - - False - - - TenantAdminUrl - - The URL of the tenant admin. If not specified, none of the SharePoint Online tests will run. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Invoke-M365SecurityAudit ApprovedCloudStorageProviders @@ -1289,29 +1524,6 @@ Retrieves the MFA status for the specified user with the UPN "example@domain.com None - - DomainName - - The domain name of the Microsoft 365 environment to test. This parameter is not mandatory and by default it will pass/fail all found domains as a group if a specific domain is not specified. - - String - - String - - - None - - - DoNotConfirmConnections - - If specified, the cmdlet will not prompt for confirmation before proceeding with established connections and will disconnect from all of them. - - - SwitchParameter - - - False - DoNotConnect @@ -1334,6 +1546,101 @@ Retrieves the MFA status for the specified user with the UPN "example@domain.com False + + NoModuleCheck + + If specified, the cmdlet will not check for the presence of required modules. + + + SwitchParameter + + + False + + + DoNotConfirmConnections + + If specified, the cmdlet will not prompt for confirmation before proceeding with established connections and will disconnect from all of them. + + + SwitchParameter + + + False + + + AuthParams + + Specifies an authentication object containing parameters for application-based authentication. If provided, this will be used for connecting to services. + + CISAuthenticationParameters + + CISAuthenticationParameters + + + None + + + WhatIf + + Shows what would happen if the cmdlet runs. The cmdlet is not run. + + + SwitchParameter + + + False + + + Confirm + + Prompts you for confirmation before running the cmdlet. + + + SwitchParameter + + + False + + + ProgressAction + + {{ Fill ProgressAction Description }} + + ActionPreference + + ActionPreference + + + None + + + + Invoke-M365SecurityAudit + + TenantAdminUrl + + The URL of the tenant admin. If not specified, none of the SharePoint Online tests will run. + + String + + String + + + None + + + DomainName + + The domain name of the Microsoft 365 environment to test. This parameter is not mandatory and by default it will pass/fail all found domains as a group if a specific domain is not specified. + + String + + String + + + None + IncludeIG3 @@ -1345,54 +1652,6 @@ Retrieves the MFA status for the specified user with the UPN "example@domain.com False - - NoModuleCheck - - If specified, the cmdlet will not check for the presence of required modules. - - - SwitchParameter - - - False - - - TenantAdminUrl - - The URL of the tenant admin. If not specified, none of the SharePoint Online tests will run. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Invoke-M365SecurityAudit ApprovedCloudStorageProviders @@ -1417,29 +1676,6 @@ Retrieves the MFA status for the specified user with the UPN "example@domain.com None - - DomainName - - The domain name of the Microsoft 365 environment to test. This parameter is not mandatory and by default it will pass/fail all found domains as a group if a specific domain is not specified. - - String - - String - - - None - - - DoNotConfirmConnections - - If specified, the cmdlet will not prompt for confirmation before proceeding with established connections and will disconnect from all of them. - - - SwitchParameter - - - False - DoNotConnect @@ -1462,6 +1698,101 @@ Retrieves the MFA status for the specified user with the UPN "example@domain.com False + + NoModuleCheck + + If specified, the cmdlet will not check for the presence of required modules. + + + SwitchParameter + + + False + + + DoNotConfirmConnections + + If specified, the cmdlet will not prompt for confirmation before proceeding with established connections and will disconnect from all of them. + + + SwitchParameter + + + False + + + AuthParams + + Specifies an authentication object containing parameters for application-based authentication. If provided, this will be used for connecting to services. + + CISAuthenticationParameters + + CISAuthenticationParameters + + + None + + + WhatIf + + Shows what would happen if the cmdlet runs. The cmdlet is not run. + + + SwitchParameter + + + False + + + Confirm + + Prompts you for confirmation before running the cmdlet. + + + SwitchParameter + + + False + + + ProgressAction + + {{ Fill ProgressAction Description }} + + ActionPreference + + ActionPreference + + + None + + + + Invoke-M365SecurityAudit + + TenantAdminUrl + + The URL of the tenant admin. If not specified, none of the SharePoint Online tests will run. + + String + + String + + + None + + + DomainName + + The domain name of the Microsoft 365 environment to test. This parameter is not mandatory and by default it will pass/fail all found domains as a group if a specific domain is not specified. + + String + + String + + + None + IncludeRecommendation @@ -1474,54 +1805,6 @@ Retrieves the MFA status for the specified user with the UPN "example@domain.com None - - NoModuleCheck - - If specified, the cmdlet will not check for the presence of required modules. - - - SwitchParameter - - - False - - - TenantAdminUrl - - The URL of the tenant admin. If not specified, none of the SharePoint Online tests will run. - - String - - String - - - None - - - Confirm - - Prompts you for confirmation before running the cmdlet. - - - SwitchParameter - - - False - - - WhatIf - - Shows what would happen if the cmdlet runs. The cmdlet is not run. - - - SwitchParameter - - - False - - - - Invoke-M365SecurityAudit ApprovedCloudStorageProviders @@ -1546,29 +1829,6 @@ Retrieves the MFA status for the specified user with the UPN "example@domain.com None - - DomainName - - The domain name of the Microsoft 365 environment to test. This parameter is not mandatory and by default it will pass/fail all found domains as a group if a specific domain is not specified. - - String - - String - - - None - - - DoNotConfirmConnections - - If specified, the cmdlet will not prompt for confirmation before proceeding with established connections and will disconnect from all of them. - - - SwitchParameter - - - False - DoNotConnect @@ -1602,6 +1862,90 @@ Retrieves the MFA status for the specified user with the UPN "example@domain.com False + + DoNotConfirmConnections + + If specified, the cmdlet will not prompt for confirmation before proceeding with established connections and will disconnect from all of them. + + + SwitchParameter + + + False + + + AuthParams + + Specifies an authentication object containing parameters for application-based authentication. If provided, this will be used for connecting to services. + + CISAuthenticationParameters + + CISAuthenticationParameters + + + None + + + WhatIf + + Shows what would happen if the cmdlet runs. The cmdlet is not run. + + + SwitchParameter + + + False + + + Confirm + + Prompts you for confirmation before running the cmdlet. + + + SwitchParameter + + + False + + + ProgressAction + + {{ Fill ProgressAction Description }} + + ActionPreference + + ActionPreference + + + None + + + + Invoke-M365SecurityAudit + + TenantAdminUrl + + The URL of the tenant admin. If not specified, none of the SharePoint Online tests will run. + + String + + String + + + None + + + DomainName + + The domain name of the Microsoft 365 environment to test. This parameter is not mandatory and by default it will pass/fail all found domains as a group if a specific domain is not specified. + + String + + String + + + None + SkipRecommendation @@ -1615,21 +1959,33 @@ Retrieves the MFA status for the specified user with the UPN "example@domain.com None - TenantAdminUrl + ApprovedCloudStorageProviders - The URL of the tenant admin. If not specified, none of the SharePoint Online tests will run. + Specifies the approved cloud storage providers for the audit. Accepts an array of cloud storage provider names. - String + String[] - String + String[] + + + @() + + + ApprovedFederatedDomains + + Specifies the approved federated domains for the audit test 8.2.1. Accepts an array of allowed domain names. + + String[] + + String[] None - - Confirm + + DoNotConnect - Prompts you for confirmation before running the cmdlet. + If specified, the cmdlet will not establish a connection to Microsoft 365 services. SwitchParameter @@ -1637,6 +1993,51 @@ Retrieves the MFA status for the specified user with the UPN "example@domain.com False + + DoNotDisconnect + + If specified, the cmdlet will not disconnect from Microsoft 365 services after execution. + + + SwitchParameter + + + False + + + NoModuleCheck + + If specified, the cmdlet will not check for the presence of required modules. + + + SwitchParameter + + + False + + + DoNotConfirmConnections + + If specified, the cmdlet will not prompt for confirmation before proceeding with established connections and will disconnect from all of them. + + + SwitchParameter + + + False + + + AuthParams + + Specifies an authentication object containing parameters for application-based authentication. If provided, this will be used for connecting to services. + + CISAuthenticationParameters + + CISAuthenticationParameters + + + None + WhatIf @@ -1648,29 +2049,40 @@ Retrieves the MFA status for the specified user with the UPN "example@domain.com False + + Confirm + + Prompts you for confirmation before running the cmdlet. + + + SwitchParameter + + + False + + + ProgressAction + + {{ Fill ProgressAction Description }} + + ActionPreference + + ActionPreference + + + None + - ApprovedCloudStorageProviders + TenantAdminUrl - Specifies the approved cloud storage providers for the audit. Accepts an array of cloud storage provider names. + The URL of the tenant admin. If not specified, none of the SharePoint Online tests will run. - String[] + String - String[] - - - @() - - - ApprovedFederatedDomains - - Specifies the approved federated domains for the audit test 8.2.1. Accepts an array of allowed domain names. - - String[] - - String[] + String None @@ -1687,42 +2099,6 @@ Retrieves the MFA status for the specified user with the UPN "example@domain.com None - - DoNotConfirmConnections - - If specified, the cmdlet will not prompt for confirmation before proceeding with established connections and will disconnect from all of them. - - SwitchParameter - - SwitchParameter - - - False - - - DoNotConnect - - If specified, the cmdlet will not establish a connection to Microsoft 365 services. - - SwitchParameter - - SwitchParameter - - - False - - - DoNotDisconnect - - If specified, the cmdlet will not disconnect from Microsoft 365 services after execution. - - SwitchParameter - - SwitchParameter - - - False - ELevel @@ -1735,6 +2111,18 @@ Retrieves the MFA status for the specified user with the UPN "example@domain.com None + + ProfileLevel + + Specifies the profile level (L1 or L2) for the audit. This parameter is optional and can be combined with the ELevel parameter. + + String + + String + + + None + IncludeIG1 @@ -1783,30 +2171,6 @@ Retrieves the MFA status for the specified user with the UPN "example@domain.com None - - NoModuleCheck - - If specified, the cmdlet will not check for the presence of required modules. - - SwitchParameter - - SwitchParameter - - - False - - - ProfileLevel - - Specifies the profile level (L1 or L2) for the audit. This parameter is optional and can be combined with the ELevel parameter. - - String - - String - - - None - SkipRecommendation @@ -1820,17 +2184,101 @@ Retrieves the MFA status for the specified user with the UPN "example@domain.com None - TenantAdminUrl + ApprovedCloudStorageProviders - The URL of the tenant admin. If not specified, none of the SharePoint Online tests will run. + Specifies the approved cloud storage providers for the audit. Accepts an array of cloud storage provider names. - String + String[] - String + String[] + + + @() + + + ApprovedFederatedDomains + + Specifies the approved federated domains for the audit test 8.2.1. Accepts an array of allowed domain names. + + String[] + + String[] None + + DoNotConnect + + If specified, the cmdlet will not establish a connection to Microsoft 365 services. + + SwitchParameter + + SwitchParameter + + + False + + + DoNotDisconnect + + If specified, the cmdlet will not disconnect from Microsoft 365 services after execution. + + SwitchParameter + + SwitchParameter + + + False + + + NoModuleCheck + + If specified, the cmdlet will not check for the presence of required modules. + + SwitchParameter + + SwitchParameter + + + False + + + DoNotConfirmConnections + + If specified, the cmdlet will not prompt for confirmation before proceeding with established connections and will disconnect from all of them. + + SwitchParameter + + SwitchParameter + + + False + + + AuthParams + + Specifies an authentication object containing parameters for application-based authentication. If provided, this will be used for connecting to services. + + CISAuthenticationParameters + + CISAuthenticationParameters + + + None + + + WhatIf + + Shows what would happen if the cmdlet runs. The cmdlet is not run. + + SwitchParameter + + SwitchParameter + + + False + Confirm @@ -1843,17 +2291,17 @@ Retrieves the MFA status for the specified user with the UPN "example@domain.com False - - WhatIf + + ProgressAction - Shows what would happen if the cmdlet runs. The cmdlet is not run. + {{ Fill ProgressAction Description }} - SwitchParameter + ActionPreference - SwitchParameter + ActionPreference - False + None @@ -1959,6 +2407,218 @@ PS> $auditResults | Export-Csv -Path "auditResults.csv" -NoTypeInformation + + + New-M365SecurityAuditAuthObject + New + M365SecurityAuditAuthObject + + Creates a new CISAuthenticationParameters object for Microsoft 365 authentication. + + + + The New-M365SecurityAuditAuthObject function constructs a new CISAuthenticationParameters object containing the necessary credentials and URLs for authenticating to various Microsoft 365 services. It validates input parameters to ensure they conform to expected formats and length requirements. An app registration in Azure AD with the required permissions to EXO, SPO, MSTeams and MgGraph is needed. + + + + New-M365SecurityAuditAuthObject + + ClientCertThumbPrint + + The thumbprint of the client certificate used for authentication. It must be a 40-character hexadecimal string. This certificate is used to authenticate the application in Azure AD. + + String + + String + + + None + + + ClientId + + The Client ID (Application ID) of the Azure AD application. It must be a valid GUID format. + + String + + String + + + None + + + TenantId + + The Tenant ID of the Azure AD directory. It must be a valid GUID format representing your Microsoft 365 tenant. + + String + + String + + + None + + + OnMicrosoftUrl + + The URL of your onmicrosoft.com domain. It should be in the format 'example.onmicrosoft.com'. + + String + + String + + + None + + + SpAdminUrl + + The SharePoint admin URL, which should end with '-admin.sharepoint.com'. This URL is used for connecting to SharePoint Online. + + String + + String + + + None + + + ProgressAction + + {{ Fill ProgressAction Description }} + + ActionPreference + + ActionPreference + + + None + + + + + + ClientCertThumbPrint + + The thumbprint of the client certificate used for authentication. It must be a 40-character hexadecimal string. This certificate is used to authenticate the application in Azure AD. + + String + + String + + + None + + + ClientId + + The Client ID (Application ID) of the Azure AD application. It must be a valid GUID format. + + String + + String + + + None + + + TenantId + + The Tenant ID of the Azure AD directory. It must be a valid GUID format representing your Microsoft 365 tenant. + + String + + String + + + None + + + OnMicrosoftUrl + + The URL of your onmicrosoft.com domain. It should be in the format 'example.onmicrosoft.com'. + + String + + String + + + None + + + SpAdminUrl + + The SharePoint admin URL, which should end with '-admin.sharepoint.com'. This URL is used for connecting to SharePoint Online. + + String + + String + + + None + + + ProgressAction + + {{ Fill ProgressAction Description }} + + ActionPreference + + ActionPreference + + + None + + + + + + None. You cannot pipe objects to this function. + + + + + + + + + + CISAuthenticationParameters + + + + + + + + The function returns an instance of the CISAuthenticationParameters class containing the authentication details. + + + + + + + + + Requires PowerShell 7.0 or later. + + + + + -------------------------- EXAMPLE 1 -------------------------- + $authParams = New-M365SecurityAuditAuthObject -ClientCertThumbPrint "ABCDEF1234567890ABCDEF1234567890ABCDEF12" ` + -ClientId "12345678-1234-1234-1234-123456789012" ` + -TenantId "12345678-1234-1234-1234-123456789012" ` + -OnMicrosoftUrl "yourcompany.onmicrosoft.com" ` + -SpAdminUrl "https://yourcompany-admin.sharepoint.com" +Creates a new CISAuthenticationParameters object with the specified credentials and URLs, validating each parameter's format and length. + + + + + + + Remove-RowsWithEmptyCSVStatus @@ -1998,6 +2658,18 @@ PS> $auditResults | Export-Csv -Path "auditResults.csv" -NoTypeInformation None + + ProgressAction + + {{ Fill ProgressAction Description }} + + ActionPreference + + ActionPreference + + + None + @@ -2025,6 +2697,18 @@ PS> $auditResults | Export-Csv -Path "auditResults.csv" -NoTypeInformation None + + ProgressAction + + {{ Fill ProgressAction Description }} + + ActionPreference + + ActionPreference + + + None + @@ -2096,13 +2780,25 @@ This command imports data from the "Sheet1" worksheet in the "Report.xlsx" file, None + + ProgressAction + + {{ Fill ProgressAction Description }} + + ActionPreference + + ActionPreference + + + None + - - CsvPath + + ExcelPath - Specifies the path to the CSV file containing new data. This parameter is mandatory. + Specifies the path to the Excel file to be updated. This parameter is mandatory. String @@ -2111,10 +2807,10 @@ This command imports data from the "Sheet1" worksheet in the "Report.xlsx" file, None - - ExcelPath + + CsvPath - Specifies the path to the Excel file to be updated. This parameter is mandatory. + Specifies the path to the CSV file containing new data. This parameter is mandatory. String @@ -2135,6 +2831,18 @@ This command imports data from the "Sheet1" worksheet in the "Report.xlsx" file, None + + ProgressAction + + {{ Fill ProgressAction Description }} + + ActionPreference + + ActionPreference + + + None +