Skip to content

Commit 4d47558

Browse files
committed
feat(authorization): ✨ Added environment and configuration file sources
#9
1 parent 7eb7ef2 commit 4d47558

File tree

2 files changed

+72
-1
lines changed

2 files changed

+72
-1
lines changed

src/public/Set-MdeAuthorizationInfo.ps1

+49-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
55
.DESCRIPTION
66
Set the authorization information that is used to get a valid MDE token. You can use a service principal (app registration) or directly provide a token.
7+
78
.NOTES
89
Author: Jan-Henrik Damaschke
910
@@ -22,11 +23,23 @@
2223
.PARAMETER token
2324
Mandatory. You can provide the token directly with this parameter. If used, none of the other parameters can be used.
2425
26+
.PARAMETER configurationFile
27+
You can provide a JSON parameter file containing the values "mdeAppId","mdeTenantId" and "mdeAppSecret".
28+
29+
.PARAMETER fromEnv
30+
If this switch is provided, the app registration credentials will be taken from the environment variables "MDE_APP_ID", "MDE_TENANT_ID", "MDE_APP_SECRET"
31+
2532
.LINK
2633
https://docs.microsoft.com/en-us/microsoft-365/security/defender-endpoint/exposed-apis-create-app-webapp?view=o365-worldwide
2734
2835
.EXAMPLE
2936
Set-MdeAuthorizationInfo -tenantId '00000000-0000-0000-0000-000000000000' -appId '00000000-0000-0000-0000-000000000000' -appSecret 'APP_SECRET'
37+
38+
.EXAMPLE
39+
Set-MdeAuthorizationInfo -fromEnv
40+
41+
.EXAMPLE
42+
Set-MdeAuthorizationInfo -configurationFile "./mdeConfig.json"
3043
#>
3144

3245
function Set-MdeAuthorizationInfo {
@@ -42,12 +55,46 @@ function Set-MdeAuthorizationInfo {
4255
[string]
4356
$appSecret,
4457
[Parameter(ParameterSetName = 'ServicePrincipal')]
58+
[Parameter(ParameterSetName = 'ConfigurationFile')]
4559
[switch]
4660
$noTokenRefresh,
4761
[Parameter(ParameterSetName = 'Token', Mandatory, ValueFromPipelineByPropertyName, ValueFromPipeline)]
4862
[string]
49-
$token
63+
$token,
64+
[Parameter(ParameterSetName = 'EnvironmentVariables', Mandatory, ValueFromPipelineByPropertyName, ValueFromPipeline)]
65+
[switch]
66+
$fromEnv,
67+
[Parameter(ParameterSetName = 'ConfigurationFile', Mandatory, ValueFromPipelineByPropertyName, ValueFromPipeline)]
68+
[ValidateScript(
69+
{ Test-Path ($_) },
70+
ErrorMessage = "Invalid configuration file path"
71+
)]
72+
[string]
73+
$configurationFile
5074
)
75+
Begin {
76+
if ($configurationFile) {
77+
try {
78+
$configuration = Get-Content $configurationFile | ConvertFrom-Json
79+
$tenantId = $configuration.mdeTenantId
80+
$appId = $configuration.mdeAppId
81+
$appSecret = $configuration.mdeAppSecret
82+
}
83+
catch {
84+
Write-Error "Error parsing the configuration file"
85+
}
86+
}
87+
if ($fromEnv) {
88+
@('MDE_APP_ID', 'MDE_TENANT_ID', 'MDE_APP_SECRET') | ForEach-Object {
89+
if (Test-Path env:$_) {
90+
Set-Variable -Name $_.Replace('MDE_', '').Replace('_', '').ToLower() -Value (Get-Content env:$_)
91+
}
92+
else {
93+
throw "Environment variable $_ not found"
94+
}
95+
}
96+
}
97+
}
5198
Process {
5299
if ($token) {
53100
$script:tokenCache = New-AesSessionSecret -secret $token
@@ -60,6 +107,7 @@ function Set-MdeAuthorizationInfo {
60107
}
61108
if (-not $noTokenRefresh) { $script:tokenCache = $null; Write-Verbose "Refreshing access token"; $null = Get-MdeAuthorizationHeader }
62109
}
110+
End {}
63111
}
64112
# SIG # Begin signature block
65113
# MIIVigYJKoZIhvcNAQcCoIIVezCCFXcCAQExCzAJBgUrDgMCGgUAMGkGCisGAQQB

tests/public/Set-MdeAuthorizationInfo.Tests.ps1

+23
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,29 @@ Describe "Set-MdeAuthorizationInfo" {
3737
}
3838
}
3939

40+
It 'Should set module variables for service principal from environment variables' {
41+
InModuleScope PSMDE {
42+
# Setup
43+
Mock Get-MdeAuthorizationHeader { }
44+
$script:tenantId = ''
45+
$script:appId = ''
46+
$script:appSecret = ''
47+
$ti = '123'
48+
$ai = '456'
49+
$as = '789'
50+
$env:MDE_APP_ID = $ai
51+
$env:MDE_APP_SECRET = $as
52+
$env:MDE_TENANT_ID = $ti
53+
54+
# Test
55+
Set-MdeAuthorizationInfo -fromEnv
56+
Get-AesSessionSecret -cipherText $script:tenantId | Should -Be $ti
57+
Get-AesSessionSecret -cipherText $script:appId | Should -Be $ai
58+
Get-AesSessionSecret -cipherText $script:appSecret | Should -Be $as
59+
Should -Invoke Get-MdeAuthorizationHeader
60+
}
61+
}
62+
4063
It 'Should set module variable for token' {
4164
InModuleScope PSMDE {
4265
# Setup

0 commit comments

Comments
 (0)