Open redirect: amaterasu-for-website-5.com
Detects messages containing amaterasu-for-website-5.com redirect links that use the url parameter to redirect users to malicious sites. This has been observed in phishing campaigns.
Sublime rule (View on GitHub)
1name: "Open redirect: amaterasu-for-website-5.com"
2description: |
3 Detects messages containing amaterasu-for-website-5.com redirect links that use the url
4 parameter to redirect users to malicious sites. This has been observed in phishing campaigns.
5type: "rule"
6severity: "medium"
7source: |
8 type.inbound
9 and any(body.links,
10 // Look for website-5 URLs
11 .href_url.domain.domain == "api.amaterasu-for-website-5.com"
12 and strings.icontains(.href_url.query_params, 'url=')
13 // Make sure it's not redirecting back to website-5.com domains
14 and not regex.icontains(.href_url.query_params,
15 'url=(?:https?(?:%3a|:))?(?:%2f|\/){2}[^&]*website-5\.com(?:\&|\/|$|%2f)'
16 )
17 )
18 // Exclude legitimate website-5 domains as senders
19 and not sender.email.domain.root_domain == "website-5.com"
20 and not sender.email.domain.root_domain == "amaterasu-for-website-5.com"
21
22 // negate highly trusted sender domains unless they fail DMARC authentication
23 and (
24 (
25 sender.email.domain.root_domain in $high_trust_sender_root_domains
26 and not headers.auth_summary.dmarc.pass
27 )
28 or sender.email.domain.root_domain not in $high_trust_sender_root_domains
29 )
30attack_types:
31 - "Credential Phishing"
32 - "Malware/Ransomware"
33tactics_and_techniques:
34 - "Open redirect"
35detection_methods:
36 - "Sender analysis"
37 - "URL analysis"
38id: "d31f7cb8-1b75-53ef-b466-7d677392660b"