Open Redirect: weblinkconnect.com
Message contains use of the weblinkconnect.com open redirect, but the sender is not weblinkconnect.com. This has been exploited in the wild.
Sublime rule (View on GitHub)
1name: "Open Redirect: weblinkconnect.com"
2description: "Message contains use of the weblinkconnect.com open redirect, but the sender is not weblinkconnect.com. This has been exploited in the wild."
3type: "rule"
4severity: "medium"
5source: |
6 type.inbound
7 and length(filter(body.links,
8 .href_url.domain.root_domain == 'weblinkconnect.com'
9 )
10 ) < 10
11 and any(body.links,
12 .href_url.domain.domain == 'api-internal.weblinkconnect.com'
13 and strings.icontains(.href_url.path, "/click")
14 and strings.icontains(.href_url.query_params, "url=")
15 )
16 and sender.email.domain.root_domain != 'weblinkconnect.com'
17 and not any(headers.domains, .root_domain == "weblinkinternational.com")
18 // negate highly trusted sender domains unless they fail DMARC authentication
19 and (
20 (
21 sender.email.domain.root_domain in $high_trust_sender_root_domains
22 and not headers.auth_summary.dmarc.pass
23 )
24 or sender.email.domain.root_domain not in $high_trust_sender_root_domains
25 )
26attack_types:
27 - "Credential Phishing"
28tactics_and_techniques:
29 - "Evasion"
30 - "Open redirect"
31detection_methods:
32 - "Sender analysis"
33 - "URL analysis"
34id: "967f7a11-d2f0-51ff-a2c4-02ffcc40ebb2"