Open redirect: McGill University

Message contains use of McGill University's open redirect but the sender is not McGill University.

Sublime rule (View on GitHub)

 1name: "Open redirect: McGill University"
 2description: |
 3    Message contains use of McGill University's open redirect but the sender is not McGill University.
 4type: "rule"
 5severity: "low"
 6source: |
 7  type.inbound
 8  and any(body.links,
 9          .href_url.domain.domain == 'myalumni.mcgill.ca' and .href_url.path =~ '/redirect.aspx'
10  )
11  and any(body.links, strings.ilike(.href_url.query_params, '*tokenUrl=*'))
12  and sender.email.domain.root_domain != 'mcgill.ca'  
13attack_types:
14  - "Credential Phishing"
15  - "Malware/Ransomware"
16tactics_and_techniques:
17  - "Open redirect"
18detection_methods:
19  - "Sender analysis"
20  - "URL analysis"
21id: "5d006c90-a585-576f-84af-d4f9e4365d39"
to-top