Skip to content

Commit 5fad1bc

Browse files
committed
Only extract URLs marked as IOC for recursive analysis
1 parent 99ca4fd commit 5fad1bc

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

vmray_service.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -276,6 +276,7 @@ def _convert_report_to_result(
276276
if url["is_artifact"] or url["is_ioc"]:
277277
section = messages_section if url["verdict"] == "clean" else analysis_section
278278
section.add_tag("network.dynamic.uri", url["url"])
279+
if url["is_ioc"]:
279280
url_categories = ", ".join(url.get("categories", ["n/a"]))
280281
url_operations = ", ".join(url.get("operations", ["n/a"]))
281282
url_sources = ", ".join(url.get("sources", ["n/a"]))

0 commit comments

Comments
 (0)