Detection rules › Panther

User Logged in wihout MFA

Severity
high
Log types
Gravitational.TeleportAudit
Tags
Teleport
Reference
https://goteleport.com/docs/management/admin/
Source
github.com/panther-labs/panther-analysis

A local User logged in without MFA

MITRE ATT&CK coverage

TacticTechniques
Initial AccessT1078 Valid Accounts

Rule body yaml

AnalysisType: rule
Filename: teleport_local_user_login_without_mfa.py
RuleID: Teleport.LocalUserLoginWithoutMFA
DisplayName: User Logged in wihout MFA
Enabled: true
LogTypes:
  - Gravitational.TeleportAudit
Tags:
  - Teleport
Severity: High
Description: A local User logged in without MFA
DedupPeriodMinutes: 60
Reports:
  MITRE ATT&CK:
    - TA0001:T1078
Reference: https://goteleport.com/docs/management/admin/
Runbook: >
  A local user logged in without Multi-Factor Authentication
SummaryAttributes:
  - event
  - code
  - user
  - success
  - mfa_device
Tests:
  - Name: User logged in with MFA
    ExpectedResult: false
    Log:
      {
        "addr.remote": "[2001:db8:feed:face:c0ff:eeb0:baf00:00d]:65123",
        "cluster_name": "teleport.example.com",
        "code": "T1000I",
        "ei": 0,
        "event": "user.login",
        "method": "local",
        "mfa_device":
          {
            "mfa_device_name": "1Password",
            "mfa_device_type": "WebAuthn",
            "mfa_device_uuid": "88888888-4444-4444-4444-222222222222",
          },
        "success": true,
        "time": "2023-09-20T19:00:00.123456Z",
        "uid": "88888888-4444-4444-4444-222222222222",
        "user": "max.mustermann",
        "user_agent": "Examplecorp Spacedeck-web/99.9 (Hackintosh; ARM Cortex A1000)",
      }
  - Name: User logged in without MFA
    ExpectedResult: false
    Log:
      {
        "addr.remote": "[2001:db8:face:face:face:face:face:face]:65123",
        "cluster_name": "teleport.example.com",
        "code": "T1000I",
        "ei": 0,
        "event": "user.login",
        "method": "local",
        "success": true,
        "time": "2023-09-20T19:00:00.123456Z",
        "uid": "88888888-4444-4444-4444-222222222222",
        "user": "max.mustermann",
        "user_agent": "Examplecorp Spacedeck-web/99.9 (Hackintosh; ARM Cortex A1000)",
      }

Detection logic

Condition

event eq "user.login"
success eq "true"
method eq "local"
mfa_device is_null

Indicators

Each row is a field, operator, and value that the rule matches. The corpus column counts how many other rules in the catalog look for the same combination: high numbers point to widely-used, community-vetted indicators. Blank or 1 shows that the indicator is specific to this rule.

FieldKindValues
eventeq
  • user.login
methodeq
  • local
mfa_deviceis_null
  • (no value, null check)
successeq
  • true

Output fields

Fields the rule emits when it matches. Chronicle authors list these in the outcome block; they appear on the detection and $risk_score drives alerting. Sentinel / Defender XDR rules build them up through project / summarize / extend stages. Sentinel maps these into alert fields via entityMappings and customDetails; Defender XDR custom detections surface them as alert fields directly.

Field
user
cluster_name