Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

Fix CA 1030/1031 names #54

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions DCToolbox/DCToolbox.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -4003,7 +4003,7 @@ function Invoke-DCConditionalAccessGallery {

$CustomObject = New-Object -TypeName psobject
$CustomObject | Add-Member -MemberType NoteProperty -Name "Id" -Value "1030"
$CustomObject | Add-Member -MemberType NoteProperty -Name "Name" -Value "$AddCustomPrefix`GLOBAL - 1030 - BLOCK - Unsupported Device Platforms"
$CustomObject | Add-Member -MemberType NoteProperty -Name "Name" -Value "$AddCustomPrefix`GLOBAL - 1030 - BLOCK - Unsupported Device Platforms (including Linux)"
$CustomObject | Add-Member -MemberType NoteProperty -Name "Description" -Value "Block unsupported platforms like Windows Phone, Linux, and other OS variants. Note: Device platform detection is a best effort security signal based on the user agent string and can be spoofed. Always combine this with additional signals like MFA and/or device authentication."
$CustomObject | Add-Member -MemberType NoteProperty -Name "JsonTemplate" -Value @"
{
Expand Down Expand Up @@ -4074,7 +4074,7 @@ function Invoke-DCConditionalAccessGallery {

$CustomObject = New-Object -TypeName psobject
$CustomObject | Add-Member -MemberType NoteProperty -Name "Id" -Value "1031"
$CustomObject | Add-Member -MemberType NoteProperty -Name "Name" -Value "$AddCustomPrefix`GLOBAL - 1031 - BLOCK - Unsupported Device Platforms (including Linux)"
$CustomObject | Add-Member -MemberType NoteProperty -Name "Name" -Value "$AddCustomPrefix`GLOBAL - 1031 - BLOCK - Unsupported Device Platforms"
$CustomObject | Add-Member -MemberType NoteProperty -Name "Description" -Value "Block unsupported platforms like Windows Phone, and other OS variants. Note: Device platform detection is a best effort security signal based on the user agent string and can be spoofed. Always combine this with additional signals like MFA and/or device authentication."
$CustomObject | Add-Member -MemberType NoteProperty -Name "JsonTemplate" -Value @"
{
Expand Down