feat(m365): add entra_authentication_method_sms_voice_disabled security check (#10212)

This commit is contained in:
Hugo Pereira Brito
2026-03-03 13:08:02 +01:00
committed by GitHub
parent 012fd84cb0
commit 548a137046
6 changed files with 383 additions and 0 deletions

View File

@@ -0,0 +1,221 @@
from unittest import mock
from prowler.providers.m365.services.entra.entra_service import (
AuthenticationMethodConfiguration,
)
from tests.providers.m365.m365_fixtures import DOMAIN, set_mocked_m365_provider
class Test_entra_authentication_method_sms_voice_disabled:
def test_no_configurations(self):
"""
Test when authentication_method_configurations is empty:
The check should return an empty list of findings.
"""
entra_client = mock.MagicMock
with (
mock.patch(
"prowler.providers.common.provider.Provider.get_global_provider",
return_value=set_mocked_m365_provider(),
),
mock.patch(
"prowler.providers.m365.services.entra.entra_authentication_method_sms_voice_disabled.entra_authentication_method_sms_voice_disabled.entra_client",
new=entra_client,
),
):
from prowler.providers.m365.services.entra.entra_authentication_method_sms_voice_disabled.entra_authentication_method_sms_voice_disabled import (
entra_authentication_method_sms_voice_disabled,
)
entra_client.authentication_method_configurations = {}
entra_client.tenant_domain = DOMAIN
check = entra_authentication_method_sms_voice_disabled()
result = check.execute()
assert len(result) == 0
def test_both_disabled(self):
"""
Test when both SMS and Voice are disabled:
The check should return a single PASS finding.
"""
entra_client = mock.MagicMock
with (
mock.patch(
"prowler.providers.common.provider.Provider.get_global_provider",
return_value=set_mocked_m365_provider(),
),
mock.patch(
"prowler.providers.m365.services.entra.entra_authentication_method_sms_voice_disabled.entra_authentication_method_sms_voice_disabled.entra_client",
new=entra_client,
),
):
from prowler.providers.m365.services.entra.entra_authentication_method_sms_voice_disabled.entra_authentication_method_sms_voice_disabled import (
entra_authentication_method_sms_voice_disabled,
)
entra_client.authentication_method_configurations = {
"Sms": AuthenticationMethodConfiguration(
id="Sms",
state="disabled",
),
"Voice": AuthenticationMethodConfiguration(
id="Voice",
state="disabled",
),
}
entra_client.tenant_domain = DOMAIN
check = entra_authentication_method_sms_voice_disabled()
result = check.execute()
assert len(result) == 1
assert result[0].status == "PASS"
assert (
result[0].status_extended
== "SMS and Voice authentication methods are disabled in the tenant."
)
assert result[0].resource_id == DOMAIN
assert result[0].resource_name == "SMS and Voice Authentication Methods"
assert result[0].location == "global"
def test_both_enabled(self):
"""
Test when both SMS and Voice are enabled:
The check should return a single FAIL finding.
"""
entra_client = mock.MagicMock
with (
mock.patch(
"prowler.providers.common.provider.Provider.get_global_provider",
return_value=set_mocked_m365_provider(),
),
mock.patch(
"prowler.providers.m365.services.entra.entra_authentication_method_sms_voice_disabled.entra_authentication_method_sms_voice_disabled.entra_client",
new=entra_client,
),
):
from prowler.providers.m365.services.entra.entra_authentication_method_sms_voice_disabled.entra_authentication_method_sms_voice_disabled import (
entra_authentication_method_sms_voice_disabled,
)
entra_client.authentication_method_configurations = {
"Sms": AuthenticationMethodConfiguration(
id="Sms",
state="enabled",
),
"Voice": AuthenticationMethodConfiguration(
id="Voice",
state="enabled",
),
}
entra_client.tenant_domain = DOMAIN
check = entra_authentication_method_sms_voice_disabled()
result = check.execute()
assert len(result) == 1
assert result[0].status == "FAIL"
assert (
result[0].status_extended
== "SMS and Voice authentication methods are enabled in the tenant."
)
assert result[0].resource_id == DOMAIN
assert result[0].resource_name == "SMS and Voice Authentication Methods"
assert result[0].location == "global"
def test_sms_enabled_voice_disabled(self):
"""
Test when SMS is enabled and Voice is disabled:
The check should return a single FAIL finding.
"""
entra_client = mock.MagicMock
with (
mock.patch(
"prowler.providers.common.provider.Provider.get_global_provider",
return_value=set_mocked_m365_provider(),
),
mock.patch(
"prowler.providers.m365.services.entra.entra_authentication_method_sms_voice_disabled.entra_authentication_method_sms_voice_disabled.entra_client",
new=entra_client,
),
):
from prowler.providers.m365.services.entra.entra_authentication_method_sms_voice_disabled.entra_authentication_method_sms_voice_disabled import (
entra_authentication_method_sms_voice_disabled,
)
entra_client.authentication_method_configurations = {
"Sms": AuthenticationMethodConfiguration(
id="Sms",
state="enabled",
),
"Voice": AuthenticationMethodConfiguration(
id="Voice",
state="disabled",
),
}
entra_client.tenant_domain = DOMAIN
check = entra_authentication_method_sms_voice_disabled()
result = check.execute()
assert len(result) == 1
assert result[0].status == "FAIL"
assert (
result[0].status_extended
== "SMS authentication method is enabled in the tenant."
)
assert result[0].resource_id == DOMAIN
assert result[0].resource_name == "SMS and Voice Authentication Methods"
assert result[0].location == "global"
def test_sms_disabled_voice_enabled(self):
"""
Test when SMS is disabled and Voice is enabled:
The check should return a single FAIL finding.
"""
entra_client = mock.MagicMock
with (
mock.patch(
"prowler.providers.common.provider.Provider.get_global_provider",
return_value=set_mocked_m365_provider(),
),
mock.patch(
"prowler.providers.m365.services.entra.entra_authentication_method_sms_voice_disabled.entra_authentication_method_sms_voice_disabled.entra_client",
new=entra_client,
),
):
from prowler.providers.m365.services.entra.entra_authentication_method_sms_voice_disabled.entra_authentication_method_sms_voice_disabled import (
entra_authentication_method_sms_voice_disabled,
)
entra_client.authentication_method_configurations = {
"Sms": AuthenticationMethodConfiguration(
id="Sms",
state="disabled",
),
"Voice": AuthenticationMethodConfiguration(
id="Voice",
state="enabled",
),
}
entra_client.tenant_domain = DOMAIN
check = entra_authentication_method_sms_voice_disabled()
result = check.execute()
assert len(result) == 1
assert result[0].status == "FAIL"
assert (
result[0].status_extended
== "Voice authentication method is enabled in the tenant."
)
assert result[0].resource_id == DOMAIN
assert result[0].resource_name == "SMS and Voice Authentication Methods"
assert result[0].location == "global"