File tree Expand file tree Collapse file tree 1 file changed +39
-0
lines changed Expand file tree Collapse file tree 1 file changed +39
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : " Link: Direct link to limewire hosted file"
2
+ description : " Message contains exactly one link to limewire.com domain with fewer than 10 total links in the body."
3
+ type : " rule"
4
+ severity : " high"
5
+ source : |
6
+ type.inbound
7
+ // there are few links
8
+ and length(body.links) < 10
9
+ // contains a link to limewire
10
+ and any(body.links, .href_url.domain.domain == "limewire.com")
11
+ // is the only link to limewire
12
+ and length(filter(body.links,
13
+ .href_url.domain.root_domain == "limewire.com"
14
+ and strings.istarts_with(.href_url.path, "/d/")
15
+ )
16
+ ) == 1
17
+ and not length(body.previous_threads) > 0
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
+ )
26
+ and not profile.by_sender_email().any_messages_benign
27
+ tags :
28
+ - " Attack surface reduction"
29
+ attack_types :
30
+ - " Malware/Ransomware"
31
+ tactics_and_techniques :
32
+ - " Free file host"
33
+ detection_methods :
34
+ - " URL analysis"
35
+ - " Content analysis"
36
+ id : " 435fec18-c869-5bda-ad01-0cc32e7e9248"
37
+ og_id : " 70840d00-c6e3-59ec-8dc5-8156e61abec6"
38
+ testing_pr : 3043
39
+ testing_sha : 46299c6fc6fdcd61a8e424a673cb92650248a7a3
You can’t perform that action at this time.
0 commit comments