-
Notifications
You must be signed in to change notification settings - Fork 127
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
8 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
rule network_watch_${domain_escaped} : ${domain_escaped} { | ||
meta: | ||
description = "Monitor new domains for ${domain}" | ||
description = "Monitor new subdomains for ${domain}" | ||
target_entity = "domain" | ||
condition: | ||
vt.net.domain.new_domain and | ||
vt.net.domain.raw endswith "${domain}" | ||
vt.net.domain.root == "${domain}" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
rule network_watch_${domain_escaped} : ${domain_escaped} { | ||
meta: | ||
description = "New files downloaded from domain ${domain}" | ||
description = "New files downloaded from ${domain}" | ||
target_entity = "file" | ||
condition: | ||
vt.metadata.new_file and | ||
vt.metadata.itw.domain.raw iendswith "${domain}" | ||
vt.metadata.itw.domain.root == "${domain}" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,8 @@ | ||
rule network_watch_${domain_escaped} : ${domain_escaped} { | ||
meta: | ||
description = "New IP addresses resolving domain ${domain}" | ||
description = "New IP addresses resolving domain ${domain} or its subdomains" | ||
target_entity = "ip_address" | ||
condition: | ||
vt.net.ip.reverse_lookup iendswith "${domain}" | ||
vt.net.ip.reverse_lookup == "${domain}" | ||
vt.net.ip.reverse_lookup endswith ".${domain}" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters