PingID Mismatch Auth Source and Verification Response

Original Source: [splunk source]
Name:PingID Mismatch Auth Source and Verification Response
id:15b0694e-caa2-4009-8d83-a1f98b86d086
version:3
date:2024-09-30
author:Steven Dick
status:production
type:TTP
Description:The following analytic identifies discrepancies between the IP address of an authentication event and the IP address of the verification response event, focusing on differences in the originating countries. It leverages JSON logs from PingID, comparing the 'auth_Country' and 'verify_Country' fields. This activity is significant as it may indicate suspicious sign-in behavior, such as account compromise or unauthorized access attempts. If confirmed malicious, this could allow attackers to bypass authentication mechanisms, potentially leading to unauthorized access to sensitive systems and data.
Data_source:
  • -PingID
search:`pingid` ("result.status" IN ("SUCCESS*","FAIL*","UNSUCCESSFUL*") NOT "result.message" IN ("*pair*","*create*","*delete*"))
| eval user = upper('actors{}.name'), session_id = 'resources{}.websession', dest = 'resources{}.ipaddress', reason = 'result.message', object = 'resources{}.devicemodel', status = 'result.status'
| join user session_id [ search `pingid` ("result.status" IN ("POLICY") AND "resources{}.ipaddress"=*) AND "result.message" IN("*Action: Authenticate*","*Action: Approve*","*Action: Allowed*")
| rex field=result.message "IP Address: (?:N\/A)?(?<policy_ipaddress>.+)?\n"
| rex field=result.message "Action: (?:N\/A)?(?<signature>.+)?\n"
| rex field=result.message "Requested Application Name: (?:N\/A)?(?<Requested_Application_Name>.+)?\n"
| rex field=result.message "Requested Application ID: (?:N\/A)?(?<Requested_Application_ID>.+)?\n"
| eval user = upper('actors{}.name'), session_id = 'resources{}.websession', src = coalesce('resources{}.ipaddress',policy_ipaddress), app = coalesce(Requested_Application_ID,Requested_Application_Name)
| fields app, user, session_id, src, signature ]
| iplocation prefix=auth_ dest
| iplocation prefix=verify_ src
| stats count min(_time) as firstTime max(_time) as lastTime values(app) as app values(session_id) as session_id by user, dest, auth_Country, src, verify_Country, object, signature, status, reason
| where auth_Country != verify_Country
| `security_content_ctime(firstTime)`
| `security_content_ctime(lastTime)`
| `pingid_mismatch_auth_source_and_verification_response_filter`


how_to_implement:Target environment must ingest JSON logging from a PingID(PingOne) enterprise environment, either via Webhook or Push Subscription.
known_false_positives:False positives may be generated by users working out the geographic region where the organizations services or technology is hosted.
References:
  -https://twitter.com/jhencinski/status/1618660062352007174
  -https://attack.mitre.org/techniques/T1098/005/
  -https://attack.mitre.org/techniques/T1556/006/
  -https://docs.pingidentity.com/r/en-us/pingoneforenterprise/p14e_subscriptions?tocId=3xhnxjX3VzKNs3SXigWnQA
drilldown_searches:
name:'View the detection results for - "$user$" and "$src$"'
search:'%original_detection_search% | search user = "$user$" src = "$src$"'
earliest_offset:'$info_min_time$'
latest_offset:'$info_max_time$'
name:'View risk events for the last 7 days for - "$user$" and "$src$"'
search:'| from datamodel Risk.All_Risk | search normalized_risk_object IN ("$user$", "$src$") starthoursago=168 | stats count min(_time) as firstTime max(_time) as lastTime values(search_name) as "Search Name" values(risk_message) as "Risk Message" values(analyticstories) as "Analytic Stories" values(annotations._all) as "Annotations" values(annotations.mitre_attack.mitre_tactic) as "ATT&CK Tactics" by normalized_risk_object | `security_content_ctime(firstTime)` | `security_content_ctime(lastTime)`'
earliest_offset:'$info_min_time$'
latest_offset:'$info_max_time$'
tags:
  analytic_story:
    - 'Compromised User Account'
  asset_type:Identity
  confidence:50
  impact:50
  message:An authentication by [$user$] was detected from [$dest$ - $auth_Country$] and the verification was received from [$src$ - $verify_Country$].
  mitre_attack_id:
    - 'T1621'
    - 'T1556.006'
    - 'T1098.005'
  observable:
    name:'user'
    type:'User'
    - role:
      - 'Victim'
    name:'src'
    type:'IP Address'
    - role:
      - 'Victim'
    name:'object'
    type:'Other'
    - role:
      - 'Attacker'
  product:
    - 'Splunk Enterprise'
    - 'Splunk Enterprise Security'
    - 'Splunk Cloud'
  required_fields:
    - '_time'
    - 'resources{}.ipaddress'
    - 'actors{}.name'
    - 'result.message'
    - 'resources{}.devicemodel'
    - 'result.status'
    - 'resources{}.websession'
  risk_score:25
  security_domain:access

tests:
name:'True Positive Test'
 attack_data:
  data: https://media.githubusercontent.com/media/splunk/attack_data/master/datasets/attack_techniques/T1621/pingid/pingid.log
  source: PINGID
  sourcetype: _json
  update_timestamp: True
manual_test:None

Related Analytic Stories


Compromised User Account