-
Notifications
You must be signed in to change notification settings - Fork 5k
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
Dev #249
Dev #249
Conversation
#1271 - Added ExecClrImmId Function
AzBobbyTables update
Added ExecDisableEmailForward Function
Deleted ExecDisableOoO
Added ExecHiddenFromGAL function
Added ExecHiddenFromGAL Function
Added more data export to ListMFAUsers
$_ is a Microsoft.Online.Administration.User, not a microsoft.graph.User which has some different properties
Corrections to output
Added ability to disable SpoofWarnings
Updated Standards_SpoofWarn
Fixed incorrect wording
Updated AddContact
) | ||
|
||
$secretHashTable = Get-Hashtable $Secret | ||
return [System.Management.Automation.PSCredential]::new($secretHashTable["UserName"], ($secretHashTable["Password"] | ConvertTo-SecureString -AsPlainText -Force)) |
Check failure
Code scanning / PSScriptAnalyzer
File 'Az.KeyVault.Extension.psm1' uses ConvertTo-SecureString with plaintext. This will expose secure information. Encrypted standard strings should be used instead.
[string] $AZKVaultName, | ||
[string] $ContentType | ||
) | ||
$SecureSecret = ConvertTo-SecureString -String $Secret -AsPlainText -Force |
Check failure
Code scanning / PSScriptAnalyzer
File 'Az.KeyVault.Extension.psm1' uses ConvertTo-SecureString with plaintext. This will expose secure information. Encrypted standard strings should be used instead.
No description provided.