Microsoft Sentinel Analytic Rules
cloudbrothers.infoAzure Sentinel RepoToggle Dark/Light/Auto modeToggle Dark/Light/Auto modeToggle Dark/Light/Auto modeBack to homepage

Okta Fast Pass phishing Detection

Back
Id78d2b06c-8dc0-40e1-91c8-66d916c186f3
RulenameOkta Fast Pass phishing Detection
DescriptionThis query detects cases in which Okta FastPass effectively prevented access to a known phishing website.
SeverityMedium
TacticsInitialAccess
TechniquesT1566
Required data connectorsOktaSSO
OktaSSOv2
KindScheduled
Query frequency1h
Query period1h
Trigger threshold0
Trigger operatorgt
Source Urihttps://github.com/Azure/Azure-Sentinel/blob/master/Solutions/Okta Single Sign-On/Analytic Rules/PhishingDetection.yaml
Version1.1.0
Arm template78d2b06c-8dc0-40e1-91c8-66d916c186f3.json
Deploy To Azure
OktaSSO
| where eventType_s == 'user.authentication.auth_via_mfa'
| where outcome_result_s == 'FAILURE'
| where outcome_reason_s == 'FastPass declined phishing attempt'
| summarize StartTime = min(TimeGenerated), EndTime = max(TimeGenerated) by actor_alternateId_s, actor_displayName_s, client_userAgent_os_s, client_ipAddress_s, client_geographicalContext_state_s,displayMessage_s, outcome_result_s,
 outcome_reason_s, column_ifexists('debugContext_debugData_logOnlySecurityData_s', ""), debugContext_debugData_threatSuspected_s, client_userAgent_rawUserAgent_s,client_userAgent_browser_s, severity_s, client_geographicalContext_city_s, client_geographicalContext_country_s
| extend Location = strcat(client_geographicalContext_city_s, "-", client_geographicalContext_country_s)
queryFrequency: 1h
version: 1.1.0
queryPeriod: 1h
id: 78d2b06c-8dc0-40e1-91c8-66d916c186f3
triggerOperator: gt
triggerThreshold: 0
tags:
- Okta
tactics:
- InitialAccess
query: |
  OktaSSO
  | where eventType_s == 'user.authentication.auth_via_mfa'
  | where outcome_result_s == 'FAILURE'
  | where outcome_reason_s == 'FastPass declined phishing attempt'
  | summarize StartTime = min(TimeGenerated), EndTime = max(TimeGenerated) by actor_alternateId_s, actor_displayName_s, client_userAgent_os_s, client_ipAddress_s, client_geographicalContext_state_s,displayMessage_s, outcome_result_s,
   outcome_reason_s, column_ifexists('debugContext_debugData_logOnlySecurityData_s', ""), debugContext_debugData_threatSuspected_s, client_userAgent_rawUserAgent_s,client_userAgent_browser_s, severity_s, client_geographicalContext_city_s, client_geographicalContext_country_s
  | extend Location = strcat(client_geographicalContext_city_s, "-", client_geographicalContext_country_s)  
severity: Medium
kind: Scheduled
requiredDataConnectors:
- connectorId: OktaSSO
  dataTypes:
  - Okta_CL
- connectorId: OktaSSOv2
  dataTypes:
  - OktaSSO
entityMappings:
- entityType: Account
  fieldMappings:
  - identifier: Name
    columnName: actor_alternateId_s
  - identifier: DisplayName
    columnName: actor_displayName_s
- entityType: IP
  fieldMappings:
  - identifier: Address
    columnName: client_ipAddress_s
OriginalUri: https://github.com/Azure/Azure-Sentinel/blob/master/Solutions/Okta Single Sign-On/Analytic Rules/PhishingDetection.yaml
name: Okta Fast Pass phishing Detection
description: |
    'This query detects cases in which Okta FastPass effectively prevented access to a known phishing website.'
customDetails:
  UserAgent: client_userAgent_rawUserAgent_s
  Location: Location
status: Available
relevantTechniques:
- T1566