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

New Rule: Azure Login Bypassing Conditional Access Policies #5157

Open
wants to merge 4 commits into
base: master
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
30 changes: 30 additions & 0 deletions rules/cloud/m365/audit/microsoft365_bypass_conditional_access.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
title: Azure Login Bypassing Conditional Access Policies
id: 13f2d3f5-6497-44a7-bf5f-dc13ffafe5dc
status: experimental
description: |
Identifies a successful login to the Microsoft Intune Company Portal which could allow
bypassing Conditional Access Policies and InTune device trust using a tool like TokenSmith
author: Josh Nickels, Marius Rothenbücher
references:
- https://labs.jumpsec.com/tokensmith-bypassing-intune-compliant-device-conditional-access/
- https://github.com/JumpsecLabs/TokenSmith
date: 2025-01-08
tags:
- attack.defense-evasion
- attack.t1078
logsource:
service: audit
product: m365
detection:
selection_auth:
Operation: 'UserLoggedIn'
ApplicationId: '9ba1a5c7-f17a-4de9-a1f1-6178c8d51223'
frack113 marked this conversation as resolved.
Show resolved Hide resolved
ResultStatus: 'Success'
RequestType: 'Cmsi:Cmsi'
filter_objectid:
ObjectId: '0000000a-0000-0000-c000-000000000000' # Microsoft Intune seen when mobile devices are enrolled
condition: selection_auth and not filter_objectid
falsepositives:
- Unknown
level: high

Loading