Description

Detects messages containing links to trac-link.com, in either the body or PDF attachments, that are not traversing Easymail's service. This has been observed in malicious/spam campaigns.

References

No references.

Sublime Security
Created Sep 14th, 2026 • Last updated Sep 14th, 2026
Source
type.inbound
and (
  // body links
  (
    any(body.current_thread.links,
        .href_url.domain.root_domain == "trac-link.com"
        and strings.istarts_with(.href_url.path, '/api/mail-track/link/')
    )
    // negate legitimate service traversal
    and not strings.icontains(body.html.raw,
                              'https://storage.googleapis.com/easymails'
    )
  )

  // attachment links
  or any(attachments,
         (.file_extension == "pdf" or .file_type == "pdf")
         and any(file.explode(.),
                 any(.scan.pdf.urls, .domain.root_domain == "trac-link.com")
         )
  )
)
MQL Rule Console
DocsLearning Labs

Playground

Test against your own EMLs or sample data.

Share

Post about this on your socials.

Get Started. Today.

Managed or self-managed. No MX changes.

Deploy and integrate a free Sublime instance in minutes.
Get Started