We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f337134 commit a1eedc2Copy full SHA for a1eedc2
slips_files/core/text_formatters/evidence_formatter.py
@@ -165,7 +165,8 @@ def get_printable_attacker_and_victim_info(
165
cached_info = self.db.get_ip_identification(entity.value) or {}
166
if cached_info:
167
info = utils.get_ip_identification_as_str(cached_info)
168
- results.append(f"IP {entity.value}: {info}")
+ if info:
169
+ results.append(f"IP {entity.value}: {info}")
170
171
return ", ".join(results)
172
0 commit comments