Skip to content

Commit 0597250

Browse files
Merge PR #5511 from @gregorywychowaniec-zt - add null condition in addition to empty string
update: Suspicious SignIns From A Non Registered Device - add null value in addition to empty string --------- Co-authored-by: phantinuss <79651203+phantinuss@users.noreply.github.com>
1 parent 0e33642 commit 0597250

1 file changed

Lines changed: 7 additions & 3 deletions

File tree

rules/cloud/azure/signin_logs/azure_ad_risky_sign_ins_with_singlefactorauth_from_unknown_devices.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,23 @@ references:
66
- https://learn.microsoft.com/en-us/entra/architecture/security-operations-devices#non-compliant-device-sign-in
77
author: Harjot Singh, '@cyb3rjy0t'
88
date: 2023-01-10
9+
modified: 2025-07-02
910
tags:
1011
- attack.defense-evasion
1112
- attack.t1078
1213
logsource:
1314
product: azure
1415
service: signinlogs
1516
detection:
16-
selection:
17+
selection_main:
1718
Status: 'Success'
1819
AuthenticationRequirement: 'singleFactorAuthentication'
19-
DeviceDetail.trusttype: ''
2020
RiskState: 'atRisk'
21-
condition: selection
21+
selection_empty1:
22+
DeviceDetail.trusttype: ''
23+
selection_empty2:
24+
DeviceDetail.trusttype: null
25+
condition: selection_main and 1 of selection_empty*
2226
falsepositives:
2327
- Unknown
2428
level: high

0 commit comments

Comments
 (0)