EXPLORE
← Back to Explore
sublimemediumRule

Open redirect: giving.lluh.org

Message contains use of the giving.lluh.org redirect. This redirection has been abused by threat actors in the wild.

MITRE ATT&CK

defense-evasioninitial-access

Detection Query

type.inbound
and any(body.links,
        .href_url.domain.domain == "giving.lluh.org"
        and .href_url.path =~ "/site/UserLogin"
        and strings.icontains(.href_url.query_params, 'nexturl=')
)

// negate highly trusted sender domains unless they fail DMARC authentication
and (
  (
    sender.email.domain.root_domain in $high_trust_sender_root_domains
    and not headers.auth_summary.dmarc.pass
  )
  or sender.email.domain.root_domain not in $high_trust_sender_root_domains
)

Data Sources

Email MessagesEmail HeadersEmail Attachments

Platforms

email
Raw Content
name: "Open redirect: giving.lluh.org"
description: "Message contains use of the giving.lluh.org redirect. This redirection has been abused by threat actors in the wild."
type: "rule"
severity: "medium"
source: |
  type.inbound
  and any(body.links,
          .href_url.domain.domain == "giving.lluh.org"
          and .href_url.path =~ "/site/UserLogin"
          and strings.icontains(.href_url.query_params, 'nexturl=')
  )
  
  // negate highly trusted sender domains unless they fail DMARC authentication
  and (
    (
      sender.email.domain.root_domain in $high_trust_sender_root_domains
      and not headers.auth_summary.dmarc.pass
    )
    or sender.email.domain.root_domain not in $high_trust_sender_root_domains
  )

attack_types:
  - "Credential Phishing"
tactics_and_techniques:
  - "Evasion"
  - "Open redirect"
  - "Social engineering"
detection_methods:
  - "Content analysis"
  - "Header analysis"
  - "Sender analysis"
  - "URL analysis"
id: "a2bf1099-132b-51bf-a36a-f2773788b5e5"