├── .build.ps1 ├── .build ├── requirements │ └── BuildTool.2.1.2.nupkg └── workflow.build.ps1 ├── .gitattributes ├── .github ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── ISSUE_TEMPLATE │ ├── 00-issue_bug-report.yml │ ├── 10-issue_feature-request.yml │ └── config.yml ├── SECURITY.md ├── pull_request_template.md ├── release.yml ├── stale.yml └── workflows │ ├── cicd-build-infraspective.yml │ ├── cicd-run-pssa.yml │ ├── cicd-run-unit-tests.yml │ ├── delete-workflow-runs.yml │ └── move-issues-and-prs-on-project-board.yml ├── .gitignore ├── .vscode ├── launch.json ├── settings.json └── tasks.json ├── GitVersion.yml ├── LICENSE ├── PSScriptAnalyzerSettings.psd1 ├── README.md ├── debugHarness.ps1 ├── docs ├── .gitkeep ├── help │ ├── Expand-PoshspecTestExpression.md │ ├── Get-AccountsWithUserRight.md │ ├── Get-PoshspecParam.md │ ├── Get-UserRightsGrantedToAccount.md │ ├── Invoke-InfraspecChecklist.md │ ├── Invoke-InfraspecControl.md │ ├── Invoke-InfraspecGroup.md │ ├── Invoke-InfraspecInclude.md │ ├── Invoke-Infraspective.md │ ├── Invoke-PoshspecExpression.md │ ├── Measure-AppPool.md │ ├── Measure-AuditPolicy.md │ ├── Measure-CimObject.md │ ├── Measure-DnsHost.md │ ├── Measure-File.md │ ├── Measure-Firewall.md │ ├── Measure-Folder.md │ ├── Measure-Hotfix.md │ ├── Measure-Http.md │ ├── Measure-Interface.md │ ├── Measure-LocalGroup.md │ ├── Measure-LocalUser.md │ ├── Measure-Package.md │ ├── Measure-Registry.md │ ├── Measure-SecurityOption.md │ ├── Measure-ServerFeature.md │ ├── Measure-Service.md │ ├── Measure-Share.md │ ├── Measure-SoftwareProduct.md │ ├── Measure-TcpPort.md │ ├── Measure-UserRightsAssignment.md │ ├── Measure-Volume.md │ ├── Measure-WebSite.md │ ├── New-InfraspecAuditState.md │ ├── SearchAd.md │ ├── Show-AuditTree.md │ ├── Test-RunAsAdmin.md │ ├── Write-CustomLog.md │ ├── Write-Result.md │ ├── about_infraspective_output.md │ ├── about_infraspective_output_templates.md │ └── infraspective.md └── images │ ├── .gitkeep │ └── infraspective-output-1.png ├── getTasks.cmd ├── poshspec.Tests.ps1 ├── requirements.psd1 ├── source └── infraspective │ ├── Configuration.psd1 │ ├── audit │ ├── classes │ │ └── .gitkeep │ ├── data │ │ └── .gitkeep │ ├── enum │ │ └── ResultScope.ps1 │ ├── private │ │ ├── New-InfraspecAuditState.ps1 │ │ ├── Show-AuditTree.ps1 │ │ ├── Write-CustomLog.ps1 │ │ └── Write-Result.ps1 │ └── public │ │ ├── Invoke-InfraspecChecklist.ps1 │ │ ├── Invoke-InfraspecControl.ps1 │ │ ├── Invoke-InfraspecGroup.ps1 │ │ ├── Invoke-InfraspecInclude.ps1 │ │ └── Invoke-Infraspective.ps1 │ ├── infraspective.psd1 │ ├── infraspective.psm1 │ └── specs │ ├── classes │ └── PSLSAUserRights.ps1 │ ├── private │ ├── Expand-PoshspecTestExpression.ps1 │ ├── Get-AccountsWithUserRight.ps1 │ ├── Get-PoshspecParam.ps1 │ ├── Get-UserRightsGrantedToAccount.ps1 │ ├── Invoke-PoshspecExpression.ps1 │ ├── SearchAd.ps1 │ └── Test-RunAsAdmin.ps1 │ └── public │ ├── Measure-AppPool.ps1 │ ├── Measure-AuditPolicy.ps1 │ ├── Measure-CimObject.ps1 │ ├── Measure-DnsHost.ps1 │ ├── Measure-File.ps1 │ ├── Measure-Firewall.ps1 │ ├── Measure-Folder.ps1 │ ├── Measure-Hotfix.ps1 │ ├── Measure-Http.ps1 │ ├── Measure-Interface.ps1 │ ├── Measure-LocalGroup.ps1 │ ├── Measure-LocalUser.ps1 │ ├── Measure-Package.ps1 │ ├── Measure-Registry.ps1 │ ├── Measure-SecurityOption.ps1 │ ├── Measure-ServerFeature.ps1 │ ├── Measure-Service.ps1 │ ├── Measure-Share.ps1 │ ├── Measure-SoftwareProduct.ps1 │ ├── Measure-TcpPort.ps1 │ ├── Measure-UserRightsAssignment.ps1 │ ├── Measure-Volume.ps1 │ └── Measure-WebSite.ps1 └── tests ├── Module ├── AnalyzeSource.Tests.ps1 └── CommentBasedHelp.Tests.ps1 ├── Unit ├── audit │ ├── Invoke-InfraspecChecklist.Tests.ps1 │ ├── Invoke-InfraspecControl.Tests.ps1 │ ├── Invoke-InfraspecGroup.Tests.ps1 │ └── Write-Result.Tests.ps1 └── specs │ ├── AppPool.Spec.Tests.ps1 │ ├── AuditPolicy.Spec.Tests.ps1 │ ├── CimObject.Spec.Tests.ps1 │ ├── DnsHost.Spec.Tests.ps1 │ ├── File.Spec.Tests.ps1 │ ├── Firewall.Spec.Tests.ps1 │ ├── Folder.Spec.Tests.ps1 │ ├── Get-PoshspecParam.Tests.ps1 │ ├── Hotfix.Spec.Tests.ps1 │ ├── Http.Spec.Tests.ps1 │ ├── Interface.Spec.Tests.ps1 │ ├── LocalGroup.Spec.Tests.ps1 │ ├── LocalUser.Spec.Tests.ps1 │ ├── Package.Spec.Tests.ps1 │ ├── Registry.Spec.Tests.ps1 │ ├── SecurityOption.Spec.Tests.ps1 │ ├── ServerFeature.Spec.Tests.ps1 │ ├── Service.Spec.Tests.ps1 │ ├── Share.Spec.Tests.ps1 │ ├── SoftwareProduct.Spec.Test.ps1 │ ├── TcpPort.Spec.Tests.ps1 │ ├── UserRightsAssignment.Spec.Tests.ps1 │ ├── Volume.Spec.Tests.ps1 │ └── WebSite.Spec.Tests.ps1 └── data ├── Simple.Audit.ps1 ├── controls └── control_v-63321.ps1 ├── test-config.psd1 ├── test-one-dot-zero.Audit.ps1 └── win-10-stig.Audit.ps1 /.build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/.build.ps1 -------------------------------------------------------------------------------- /.build/requirements/BuildTool.2.1.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/.build/requirements/BuildTool.2.1.2.nupkg -------------------------------------------------------------------------------- /.build/workflow.build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/.build/workflow.build.ps1 -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/00-issue_bug-report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/.github/ISSUE_TEMPLATE/00-issue_bug-report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/10-issue_feature-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/.github/ISSUE_TEMPLATE/10-issue_feature-request.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/.github/SECURITY.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/.github/release.yml -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/cicd-build-infraspective.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/.github/workflows/cicd-build-infraspective.yml -------------------------------------------------------------------------------- /.github/workflows/cicd-run-pssa.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/.github/workflows/cicd-run-pssa.yml -------------------------------------------------------------------------------- /.github/workflows/cicd-run-unit-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/.github/workflows/cicd-run-unit-tests.yml -------------------------------------------------------------------------------- /.github/workflows/delete-workflow-runs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/.github/workflows/delete-workflow-runs.yml -------------------------------------------------------------------------------- /.github/workflows/move-issues-and-prs-on-project-board.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/.github/workflows/move-issues-and-prs-on-project-board.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /GitVersion.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/GitVersion.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/LICENSE -------------------------------------------------------------------------------- /PSScriptAnalyzerSettings.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/PSScriptAnalyzerSettings.psd1 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/README.md -------------------------------------------------------------------------------- /debugHarness.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/debugHarness.ps1 -------------------------------------------------------------------------------- /docs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/help/Expand-PoshspecTestExpression.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/docs/help/Expand-PoshspecTestExpression.md -------------------------------------------------------------------------------- /docs/help/Get-AccountsWithUserRight.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/docs/help/Get-AccountsWithUserRight.md -------------------------------------------------------------------------------- /docs/help/Get-PoshspecParam.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/docs/help/Get-PoshspecParam.md -------------------------------------------------------------------------------- /docs/help/Get-UserRightsGrantedToAccount.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/docs/help/Get-UserRightsGrantedToAccount.md -------------------------------------------------------------------------------- /docs/help/Invoke-InfraspecChecklist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/docs/help/Invoke-InfraspecChecklist.md -------------------------------------------------------------------------------- /docs/help/Invoke-InfraspecControl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/docs/help/Invoke-InfraspecControl.md -------------------------------------------------------------------------------- /docs/help/Invoke-InfraspecGroup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/docs/help/Invoke-InfraspecGroup.md -------------------------------------------------------------------------------- /docs/help/Invoke-InfraspecInclude.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/docs/help/Invoke-InfraspecInclude.md -------------------------------------------------------------------------------- /docs/help/Invoke-Infraspective.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/docs/help/Invoke-Infraspective.md -------------------------------------------------------------------------------- /docs/help/Invoke-PoshspecExpression.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/docs/help/Invoke-PoshspecExpression.md -------------------------------------------------------------------------------- /docs/help/Measure-AppPool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/docs/help/Measure-AppPool.md -------------------------------------------------------------------------------- /docs/help/Measure-AuditPolicy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/docs/help/Measure-AuditPolicy.md -------------------------------------------------------------------------------- /docs/help/Measure-CimObject.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/docs/help/Measure-CimObject.md -------------------------------------------------------------------------------- /docs/help/Measure-DnsHost.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/docs/help/Measure-DnsHost.md -------------------------------------------------------------------------------- /docs/help/Measure-File.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/docs/help/Measure-File.md -------------------------------------------------------------------------------- /docs/help/Measure-Firewall.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/docs/help/Measure-Firewall.md -------------------------------------------------------------------------------- /docs/help/Measure-Folder.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/docs/help/Measure-Folder.md -------------------------------------------------------------------------------- /docs/help/Measure-Hotfix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/docs/help/Measure-Hotfix.md -------------------------------------------------------------------------------- /docs/help/Measure-Http.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/docs/help/Measure-Http.md -------------------------------------------------------------------------------- /docs/help/Measure-Interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/docs/help/Measure-Interface.md -------------------------------------------------------------------------------- /docs/help/Measure-LocalGroup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/docs/help/Measure-LocalGroup.md -------------------------------------------------------------------------------- /docs/help/Measure-LocalUser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/docs/help/Measure-LocalUser.md -------------------------------------------------------------------------------- /docs/help/Measure-Package.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/docs/help/Measure-Package.md -------------------------------------------------------------------------------- /docs/help/Measure-Registry.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/docs/help/Measure-Registry.md -------------------------------------------------------------------------------- /docs/help/Measure-SecurityOption.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/docs/help/Measure-SecurityOption.md -------------------------------------------------------------------------------- /docs/help/Measure-ServerFeature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/docs/help/Measure-ServerFeature.md -------------------------------------------------------------------------------- /docs/help/Measure-Service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/docs/help/Measure-Service.md -------------------------------------------------------------------------------- /docs/help/Measure-Share.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/docs/help/Measure-Share.md -------------------------------------------------------------------------------- /docs/help/Measure-SoftwareProduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/docs/help/Measure-SoftwareProduct.md -------------------------------------------------------------------------------- /docs/help/Measure-TcpPort.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/docs/help/Measure-TcpPort.md -------------------------------------------------------------------------------- /docs/help/Measure-UserRightsAssignment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/docs/help/Measure-UserRightsAssignment.md -------------------------------------------------------------------------------- /docs/help/Measure-Volume.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/docs/help/Measure-Volume.md -------------------------------------------------------------------------------- /docs/help/Measure-WebSite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/docs/help/Measure-WebSite.md -------------------------------------------------------------------------------- /docs/help/New-InfraspecAuditState.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/docs/help/New-InfraspecAuditState.md -------------------------------------------------------------------------------- /docs/help/SearchAd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/docs/help/SearchAd.md -------------------------------------------------------------------------------- /docs/help/Show-AuditTree.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/docs/help/Show-AuditTree.md -------------------------------------------------------------------------------- /docs/help/Test-RunAsAdmin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/docs/help/Test-RunAsAdmin.md -------------------------------------------------------------------------------- /docs/help/Write-CustomLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/docs/help/Write-CustomLog.md -------------------------------------------------------------------------------- /docs/help/Write-Result.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/docs/help/Write-Result.md -------------------------------------------------------------------------------- /docs/help/about_infraspective_output.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/docs/help/about_infraspective_output.md -------------------------------------------------------------------------------- /docs/help/about_infraspective_output_templates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/docs/help/about_infraspective_output_templates.md -------------------------------------------------------------------------------- /docs/help/infraspective.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/docs/help/infraspective.md -------------------------------------------------------------------------------- /docs/images/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/images/infraspective-output-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/docs/images/infraspective-output-1.png -------------------------------------------------------------------------------- /getTasks.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/getTasks.cmd -------------------------------------------------------------------------------- /poshspec.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/poshspec.Tests.ps1 -------------------------------------------------------------------------------- /requirements.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/requirements.psd1 -------------------------------------------------------------------------------- /source/infraspective/Configuration.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/source/infraspective/Configuration.psd1 -------------------------------------------------------------------------------- /source/infraspective/audit/classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/infraspective/audit/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/infraspective/audit/enum/ResultScope.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/source/infraspective/audit/enum/ResultScope.ps1 -------------------------------------------------------------------------------- /source/infraspective/audit/private/New-InfraspecAuditState.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/source/infraspective/audit/private/New-InfraspecAuditState.ps1 -------------------------------------------------------------------------------- /source/infraspective/audit/private/Show-AuditTree.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/source/infraspective/audit/private/Show-AuditTree.ps1 -------------------------------------------------------------------------------- /source/infraspective/audit/private/Write-CustomLog.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/source/infraspective/audit/private/Write-CustomLog.ps1 -------------------------------------------------------------------------------- /source/infraspective/audit/private/Write-Result.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/source/infraspective/audit/private/Write-Result.ps1 -------------------------------------------------------------------------------- /source/infraspective/audit/public/Invoke-InfraspecChecklist.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/source/infraspective/audit/public/Invoke-InfraspecChecklist.ps1 -------------------------------------------------------------------------------- /source/infraspective/audit/public/Invoke-InfraspecControl.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/source/infraspective/audit/public/Invoke-InfraspecControl.ps1 -------------------------------------------------------------------------------- /source/infraspective/audit/public/Invoke-InfraspecGroup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/source/infraspective/audit/public/Invoke-InfraspecGroup.ps1 -------------------------------------------------------------------------------- /source/infraspective/audit/public/Invoke-InfraspecInclude.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/source/infraspective/audit/public/Invoke-InfraspecInclude.ps1 -------------------------------------------------------------------------------- /source/infraspective/audit/public/Invoke-Infraspective.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/source/infraspective/audit/public/Invoke-Infraspective.ps1 -------------------------------------------------------------------------------- /source/infraspective/infraspective.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/source/infraspective/infraspective.psd1 -------------------------------------------------------------------------------- /source/infraspective/infraspective.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/source/infraspective/infraspective.psm1 -------------------------------------------------------------------------------- /source/infraspective/specs/classes/PSLSAUserRights.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/source/infraspective/specs/classes/PSLSAUserRights.ps1 -------------------------------------------------------------------------------- /source/infraspective/specs/private/Expand-PoshspecTestExpression.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/source/infraspective/specs/private/Expand-PoshspecTestExpression.ps1 -------------------------------------------------------------------------------- /source/infraspective/specs/private/Get-AccountsWithUserRight.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/source/infraspective/specs/private/Get-AccountsWithUserRight.ps1 -------------------------------------------------------------------------------- /source/infraspective/specs/private/Get-PoshspecParam.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/source/infraspective/specs/private/Get-PoshspecParam.ps1 -------------------------------------------------------------------------------- /source/infraspective/specs/private/Get-UserRightsGrantedToAccount.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/source/infraspective/specs/private/Get-UserRightsGrantedToAccount.ps1 -------------------------------------------------------------------------------- /source/infraspective/specs/private/Invoke-PoshspecExpression.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/source/infraspective/specs/private/Invoke-PoshspecExpression.ps1 -------------------------------------------------------------------------------- /source/infraspective/specs/private/SearchAd.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/source/infraspective/specs/private/SearchAd.ps1 -------------------------------------------------------------------------------- /source/infraspective/specs/private/Test-RunAsAdmin.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/source/infraspective/specs/private/Test-RunAsAdmin.ps1 -------------------------------------------------------------------------------- /source/infraspective/specs/public/Measure-AppPool.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/source/infraspective/specs/public/Measure-AppPool.ps1 -------------------------------------------------------------------------------- /source/infraspective/specs/public/Measure-AuditPolicy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/source/infraspective/specs/public/Measure-AuditPolicy.ps1 -------------------------------------------------------------------------------- /source/infraspective/specs/public/Measure-CimObject.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/source/infraspective/specs/public/Measure-CimObject.ps1 -------------------------------------------------------------------------------- /source/infraspective/specs/public/Measure-DnsHost.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/source/infraspective/specs/public/Measure-DnsHost.ps1 -------------------------------------------------------------------------------- /source/infraspective/specs/public/Measure-File.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/source/infraspective/specs/public/Measure-File.ps1 -------------------------------------------------------------------------------- /source/infraspective/specs/public/Measure-Firewall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/source/infraspective/specs/public/Measure-Firewall.ps1 -------------------------------------------------------------------------------- /source/infraspective/specs/public/Measure-Folder.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/source/infraspective/specs/public/Measure-Folder.ps1 -------------------------------------------------------------------------------- /source/infraspective/specs/public/Measure-Hotfix.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/source/infraspective/specs/public/Measure-Hotfix.ps1 -------------------------------------------------------------------------------- /source/infraspective/specs/public/Measure-Http.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/source/infraspective/specs/public/Measure-Http.ps1 -------------------------------------------------------------------------------- /source/infraspective/specs/public/Measure-Interface.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/source/infraspective/specs/public/Measure-Interface.ps1 -------------------------------------------------------------------------------- /source/infraspective/specs/public/Measure-LocalGroup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/source/infraspective/specs/public/Measure-LocalGroup.ps1 -------------------------------------------------------------------------------- /source/infraspective/specs/public/Measure-LocalUser.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/source/infraspective/specs/public/Measure-LocalUser.ps1 -------------------------------------------------------------------------------- /source/infraspective/specs/public/Measure-Package.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/source/infraspective/specs/public/Measure-Package.ps1 -------------------------------------------------------------------------------- /source/infraspective/specs/public/Measure-Registry.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/source/infraspective/specs/public/Measure-Registry.ps1 -------------------------------------------------------------------------------- /source/infraspective/specs/public/Measure-SecurityOption.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/source/infraspective/specs/public/Measure-SecurityOption.ps1 -------------------------------------------------------------------------------- /source/infraspective/specs/public/Measure-ServerFeature.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/source/infraspective/specs/public/Measure-ServerFeature.ps1 -------------------------------------------------------------------------------- /source/infraspective/specs/public/Measure-Service.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/source/infraspective/specs/public/Measure-Service.ps1 -------------------------------------------------------------------------------- /source/infraspective/specs/public/Measure-Share.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/source/infraspective/specs/public/Measure-Share.ps1 -------------------------------------------------------------------------------- /source/infraspective/specs/public/Measure-SoftwareProduct.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/source/infraspective/specs/public/Measure-SoftwareProduct.ps1 -------------------------------------------------------------------------------- /source/infraspective/specs/public/Measure-TcpPort.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/source/infraspective/specs/public/Measure-TcpPort.ps1 -------------------------------------------------------------------------------- /source/infraspective/specs/public/Measure-UserRightsAssignment.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/source/infraspective/specs/public/Measure-UserRightsAssignment.ps1 -------------------------------------------------------------------------------- /source/infraspective/specs/public/Measure-Volume.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/source/infraspective/specs/public/Measure-Volume.ps1 -------------------------------------------------------------------------------- /source/infraspective/specs/public/Measure-WebSite.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/source/infraspective/specs/public/Measure-WebSite.ps1 -------------------------------------------------------------------------------- /tests/Module/AnalyzeSource.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/tests/Module/AnalyzeSource.Tests.ps1 -------------------------------------------------------------------------------- /tests/Module/CommentBasedHelp.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/tests/Module/CommentBasedHelp.Tests.ps1 -------------------------------------------------------------------------------- /tests/Unit/audit/Invoke-InfraspecChecklist.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/tests/Unit/audit/Invoke-InfraspecChecklist.Tests.ps1 -------------------------------------------------------------------------------- /tests/Unit/audit/Invoke-InfraspecControl.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/tests/Unit/audit/Invoke-InfraspecControl.Tests.ps1 -------------------------------------------------------------------------------- /tests/Unit/audit/Invoke-InfraspecGroup.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/tests/Unit/audit/Invoke-InfraspecGroup.Tests.ps1 -------------------------------------------------------------------------------- /tests/Unit/audit/Write-Result.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/tests/Unit/audit/Write-Result.Tests.ps1 -------------------------------------------------------------------------------- /tests/Unit/specs/AppPool.Spec.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/tests/Unit/specs/AppPool.Spec.Tests.ps1 -------------------------------------------------------------------------------- /tests/Unit/specs/AuditPolicy.Spec.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/tests/Unit/specs/AuditPolicy.Spec.Tests.ps1 -------------------------------------------------------------------------------- /tests/Unit/specs/CimObject.Spec.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/tests/Unit/specs/CimObject.Spec.Tests.ps1 -------------------------------------------------------------------------------- /tests/Unit/specs/DnsHost.Spec.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/tests/Unit/specs/DnsHost.Spec.Tests.ps1 -------------------------------------------------------------------------------- /tests/Unit/specs/File.Spec.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/tests/Unit/specs/File.Spec.Tests.ps1 -------------------------------------------------------------------------------- /tests/Unit/specs/Firewall.Spec.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/tests/Unit/specs/Firewall.Spec.Tests.ps1 -------------------------------------------------------------------------------- /tests/Unit/specs/Folder.Spec.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/tests/Unit/specs/Folder.Spec.Tests.ps1 -------------------------------------------------------------------------------- /tests/Unit/specs/Get-PoshspecParam.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/tests/Unit/specs/Get-PoshspecParam.Tests.ps1 -------------------------------------------------------------------------------- /tests/Unit/specs/Hotfix.Spec.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/tests/Unit/specs/Hotfix.Spec.Tests.ps1 -------------------------------------------------------------------------------- /tests/Unit/specs/Http.Spec.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/tests/Unit/specs/Http.Spec.Tests.ps1 -------------------------------------------------------------------------------- /tests/Unit/specs/Interface.Spec.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/tests/Unit/specs/Interface.Spec.Tests.ps1 -------------------------------------------------------------------------------- /tests/Unit/specs/LocalGroup.Spec.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/tests/Unit/specs/LocalGroup.Spec.Tests.ps1 -------------------------------------------------------------------------------- /tests/Unit/specs/LocalUser.Spec.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/tests/Unit/specs/LocalUser.Spec.Tests.ps1 -------------------------------------------------------------------------------- /tests/Unit/specs/Package.Spec.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/tests/Unit/specs/Package.Spec.Tests.ps1 -------------------------------------------------------------------------------- /tests/Unit/specs/Registry.Spec.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/tests/Unit/specs/Registry.Spec.Tests.ps1 -------------------------------------------------------------------------------- /tests/Unit/specs/SecurityOption.Spec.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/tests/Unit/specs/SecurityOption.Spec.Tests.ps1 -------------------------------------------------------------------------------- /tests/Unit/specs/ServerFeature.Spec.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/tests/Unit/specs/ServerFeature.Spec.Tests.ps1 -------------------------------------------------------------------------------- /tests/Unit/specs/Service.Spec.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/tests/Unit/specs/Service.Spec.Tests.ps1 -------------------------------------------------------------------------------- /tests/Unit/specs/Share.Spec.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/tests/Unit/specs/Share.Spec.Tests.ps1 -------------------------------------------------------------------------------- /tests/Unit/specs/SoftwareProduct.Spec.Test.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/tests/Unit/specs/SoftwareProduct.Spec.Test.ps1 -------------------------------------------------------------------------------- /tests/Unit/specs/TcpPort.Spec.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/tests/Unit/specs/TcpPort.Spec.Tests.ps1 -------------------------------------------------------------------------------- /tests/Unit/specs/UserRightsAssignment.Spec.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/tests/Unit/specs/UserRightsAssignment.Spec.Tests.ps1 -------------------------------------------------------------------------------- /tests/Unit/specs/Volume.Spec.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/tests/Unit/specs/Volume.Spec.Tests.ps1 -------------------------------------------------------------------------------- /tests/Unit/specs/WebSite.Spec.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/tests/Unit/specs/WebSite.Spec.Tests.ps1 -------------------------------------------------------------------------------- /tests/data/Simple.Audit.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/tests/data/Simple.Audit.ps1 -------------------------------------------------------------------------------- /tests/data/controls/control_v-63321.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/tests/data/controls/control_v-63321.ps1 -------------------------------------------------------------------------------- /tests/data/test-config.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/tests/data/test-config.psd1 -------------------------------------------------------------------------------- /tests/data/test-one-dot-zero.Audit.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/tests/data/test-one-dot-zero.Audit.ps1 -------------------------------------------------------------------------------- /tests/data/win-10-stig.Audit.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrichtr/infraspective/HEAD/tests/data/win-10-stig.Audit.ps1 --------------------------------------------------------------------------------