From 55ef3ed04d7eae8da9b87d152ebf34230a873ec1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Vinot?= Date: Sun, 29 Nov 2020 23:38:09 +0100 Subject: [PATCH] chg: Rename legitimate -> known in the interface Related to #118 --- website/web/static/tree.js | 4 ++-- website/web/templates/tree.html | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/website/web/static/tree.js b/website/web/static/tree.js index 34076908..9b5798d2 100644 --- a/website/web/static/tree.js +++ b/website/web/static/tree.js @@ -160,7 +160,7 @@ function UnbookmarkAllNodes() { .on('mouseout', (event, d) => d3.select('#tooltip').style('opacity', 0)); }; -function MarkAsLegitimate(capture_uuid, hostnode_uuid=null, urlnode_uuid=null) { +function MarkAsKnown(capture_uuid, hostnode_uuid=null, urlnode_uuid=null) { let data = {}; if (hostnode_uuid != null) { data['hostnode_uuid'] = hostnode_uuid; }; if (urlnode_uuid != null) { data['urlnode_uuid'] = urlnode_uuid; }; @@ -545,7 +545,7 @@ function update(root, computed_node_width=0) { .style('opacity', 1) .style('left', `${event.pageX + 10}px`) .style('top', `${event.pageY + 10}px`) - .text('This node has only legitimate content'); + .text('This node has only known content'); }) .on('mouseout', (event, d) => d3.select('#tooltip').style('opacity', 0)); } else if (d.data.all_empty) { diff --git a/website/web/templates/tree.html b/website/web/templates/tree.html index ac723475..f8e6e653 100644 --- a/website/web/templates/tree.html +++ b/website/web/templates/tree.html @@ -134,7 +134,7 @@ {% if enable_context_by_users %}
  • - Mark capture as legitimate + Mark all the captures' entries as known
  • {% endif %} {% if enable_mail_notification %} @@ -161,7 +161,7 @@
    Legitimate Node Legit node
    + alt="Known Node" height="20" width="20"> Known node
    Malicious Node Malicious node