File tree Expand file tree Collapse file tree 1 file changed +37
-0
lines changed Expand file tree Collapse file tree 1 file changed +37
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : " Link: Direct link to riddle.com hosted showcase"
2
+ description : " Message contains a single link to a Riddle.com hosted showcase which has been observed abused for credential phishing landing"
3
+ type : " rule"
4
+ severity : " medium"
5
+ source : |
6
+ type.inbound
7
+ and any(body.links,
8
+ .href_url.domain.root_domain == "riddle.com"
9
+ )
10
+ and length(filter(body.links,
11
+ .href_url.domain.root_domain == "riddle.com"
12
+ and strings.istarts_with(.href_url.path, '/view/')
13
+ )
14
+ ) == 1
15
+ // negate highly trusted sender domains unless they fail DMARC authentication
16
+ and (
17
+ (
18
+ sender.email.domain.root_domain in $high_trust_sender_root_domains
19
+ and not headers.auth_summary.dmarc.pass
20
+ )
21
+ or sender.email.domain.root_domain not in $high_trust_sender_root_domains
22
+ )
23
+ and not profile.by_sender_email().any_messages_benign
24
+ tags :
25
+ - " Attack surface reduction"
26
+ attack_types :
27
+ - " Credential Phishing"
28
+ tactics_and_techniques :
29
+ - " Free file host"
30
+ detection_methods :
31
+ - " Sender analysis"
32
+ - " URL analysis"
33
+ - " Header analysis"
34
+ id : " 1c46e18d-1c2f-5c50-b57c-f314683b49d2"
35
+ og_id : " cca7d2f5-421f-5421-ae13-da5588c15c8b"
36
+ testing_pr : 3037
37
+ testing_sha : 7351bf8cfbdc00faa95da59cb82790ee96e2e434
You can’t perform that action at this time.
0 commit comments