diff --git a/scanpipe/filters.py b/scanpipe/filters.py
index 75d715f165..7b8c8869b1 100644
--- a/scanpipe/filters.py
+++ b/scanpipe/filters.py
@@ -493,6 +493,10 @@ def filter(self, qs, value):
("dwarf_included_paths", "dwarf_included_paths"),
("dwarf_compiled_paths", "dwarf_compiled_paths"),
("go_file_paths", "go_file_paths"),
+ ("elf_symbols", "Elf Symbols"),
+ ("macho_symbols", "Mach0 Symbols"),
+ ("winpe_symbols", "WinPE Symbols"),
+ ("rust_symbols", "Rust Symbols"),
)
diff --git a/scanpipe/pipes/d2d_config.py b/scanpipe/pipes/d2d_config.py
index 1fdc028aa9..9f4982060a 100644
--- a/scanpipe/pipes/d2d_config.py
+++ b/scanpipe/pipes/d2d_config.py
@@ -117,7 +117,11 @@ class EcosystemConfig:
ecosystem_option="Ruby",
matchable_package_extensions=[".gem"],
matchable_resource_extensions=[".rb"],
- deployed_resource_path_exclusions=["*checksums.yaml.gz*", "*metadata.gz*"],
+ deployed_resource_path_exclusions=[
+ "*checksums.yaml.gz*",
+ "*metadata.gz*",
+ "*data.tar.gz.sig",
+ ],
),
"Elf": EcosystemConfig(
ecosystem_option="Elf",
diff --git a/scanpipe/templates/scanpipe/includes/pagination_header_relations.html b/scanpipe/templates/scanpipe/includes/pagination_header_relations.html
index a63fc5ddda..fddc36afdd 100644
--- a/scanpipe/templates/scanpipe/includes/pagination_header_relations.html
+++ b/scanpipe/templates/scanpipe/includes/pagination_header_relations.html
@@ -5,13 +5,13 @@
{{ paginator.count|intcomma }} relations
-
+
Un-mapped to/ resources
-
+
Un-mapped from/ resources
diff --git a/scanpipe/tests/data/d2d/config/ecosystem_config.json b/scanpipe/tests/data/d2d/config/ecosystem_config.json
index 10409ff2dc..8911a2d247 100644
--- a/scanpipe/tests/data/d2d/config/ecosystem_config.json
+++ b/scanpipe/tests/data/d2d/config/ecosystem_config.json
@@ -3,7 +3,7 @@
"matchable_package_extensions": [".jar", ".war", ".gem", ".zip", ".tar.gz", ".tar.xz"],
"matchable_resource_extensions": [".map", ".js", ".mjs", ".ts", ".d.ts", ".jsx", ".tsx", ".css", ".scss", ".less", ".sass", ".soy",".class", ".rb"],
"doc_extensions": [".pdf", ".doc", ".docx", ".ppt", ".pptx", ".tex", ".odt", ".odp"],
- "deployed_resource_path_exclusions": ["*checksums.yaml.gz*", "*metadata.gz*"],
+ "deployed_resource_path_exclusions": ["*checksums.yaml.gz*", "*metadata.gz*", "*data.tar.gz.sig"],
"devel_resource_path_exclusions": ["*/tests/*"],
"standard_symbols_to_exclude": [],
"source_symbol_extensions": []