mirror of
https://github.com/ail-project/ail-framework.git
synced 2024-11-14 10:38:22 +00:00
chg: [Correlation UI] add correlation blueprint + UI graph correlation
This commit is contained in:
parent
a896350849
commit
bb03ef532b
8 changed files with 333 additions and 32 deletions
|
@ -128,6 +128,13 @@ def get_elem_to_crawl(rotation_mode):
|
||||||
if message is not None:
|
if message is not None:
|
||||||
domain_service_type = service_type
|
domain_service_type = service_type
|
||||||
break
|
break
|
||||||
|
#load_discovery_queue
|
||||||
|
if message is None:
|
||||||
|
for service_type in rotation_mode:
|
||||||
|
message = redis_crawler.spop('{}_crawler_discovery_queue'.format(service_type))
|
||||||
|
if message is not None:
|
||||||
|
domain_service_type = service_type
|
||||||
|
break
|
||||||
#load_normal_queue
|
#load_normal_queue
|
||||||
if message is None:
|
if message is None:
|
||||||
for service_type in rotation_mode:
|
for service_type in rotation_mode:
|
||||||
|
|
|
@ -22,6 +22,29 @@ config_loader = ConfigLoader.ConfigLoader()
|
||||||
r_serv_metadata = config_loader.get_redis_conn("ARDB_Metadata")
|
r_serv_metadata = config_loader.get_redis_conn("ARDB_Metadata")
|
||||||
config_loader = None
|
config_loader = None
|
||||||
|
|
||||||
|
def get_all_correlation_names():
|
||||||
|
'''
|
||||||
|
Return a list of all available correlations
|
||||||
|
'''
|
||||||
|
return ['pgp', 'cryptocurrency', 'decoded']
|
||||||
|
|
||||||
|
def get_all_correlation_objects():
|
||||||
|
'''
|
||||||
|
Return a list of all correllated objects
|
||||||
|
'''
|
||||||
|
return ['domain', 'paste']
|
||||||
|
|
||||||
|
def get_object_metadata(object_type, correlation_id, type_id=None):
|
||||||
|
if object_type == 'domain':
|
||||||
|
return Domain.Domain(correlation_id).get_domain_metadata()
|
||||||
|
elif object_type == 'paste':
|
||||||
|
return None
|
||||||
|
elif object_type == 'decoded':
|
||||||
|
return Decoded.get_decoded_metadata(correlation_id)
|
||||||
|
elif object_type == 'pgp':
|
||||||
|
return Pgp.pgp._get_metadata(type_id, correlation_id)
|
||||||
|
elif object_type == 'cryptocurrency':
|
||||||
|
return Cryptocurrency.cryptocurrency._get_metadata(type_id, correlation_id)
|
||||||
|
|
||||||
def get_object_correlation(object_type, value, correlation_names, correlation_objects, requested_correl_type=None):
|
def get_object_correlation(object_type, value, correlation_names, correlation_objects, requested_correl_type=None):
|
||||||
if object_type == 'domain':
|
if object_type == 'domain':
|
||||||
|
@ -37,9 +60,6 @@ def get_object_correlation(object_type, value, correlation_names, correlation_ob
|
||||||
|
|
||||||
return {}
|
return {}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
def get_correlation_node_icon(correlation_name, correlation_type=None, value=None):
|
def get_correlation_node_icon(correlation_name, correlation_type=None, value=None):
|
||||||
'''
|
'''
|
||||||
Used in UI Graph.
|
Used in UI Graph.
|
||||||
|
@ -165,14 +185,14 @@ def create_node_id(correlation_name, value, correlation_type=''):
|
||||||
|
|
||||||
|
|
||||||
# # TODO: filter by correlation type => bitcoin, mail, ...
|
# # TODO: filter by correlation type => bitcoin, mail, ...
|
||||||
def get_graph_node_object_correlation(object_type, domain, mode, correlation_names, correlation_objects, max_nodes=300, requested_correl_type=None):
|
def get_graph_node_object_correlation(object_type, root_value, mode, correlation_names, correlation_objects, max_nodes=300, requested_correl_type=None):
|
||||||
links = set()
|
links = set()
|
||||||
nodes = set()
|
nodes = set()
|
||||||
|
|
||||||
root_node_id = create_node_id(object_type, domain, requested_correl_type)
|
root_node_id = create_node_id(object_type, root_value, requested_correl_type)
|
||||||
nodes.add(root_node_id)
|
nodes.add(root_node_id)
|
||||||
|
|
||||||
root_correlation = get_object_correlation(object_type, domain, correlation_names, correlation_objects, requested_correl_type=requested_correl_type)
|
root_correlation = get_object_correlation(object_type, root_value, correlation_names, correlation_objects, requested_correl_type=requested_correl_type)
|
||||||
for correl in root_correlation:
|
for correl in root_correlation:
|
||||||
if correl in ('pgp', 'cryptocurrency'):
|
if correl in ('pgp', 'cryptocurrency'):
|
||||||
for correl_type in root_correlation[correl]:
|
for correl_type in root_correlation[correl]:
|
||||||
|
@ -192,8 +212,8 @@ def get_graph_node_object_correlation(object_type, domain, mode, correlation_nam
|
||||||
if res:
|
if res:
|
||||||
for corr_obj in res:
|
for corr_obj in res:
|
||||||
for correl_key_val in res[corr_obj]:
|
for correl_key_val in res[corr_obj]:
|
||||||
#filter root domain
|
#filter root value
|
||||||
if correl_key_val == domain:
|
if correl_key_val == root_value:
|
||||||
continue
|
continue
|
||||||
|
|
||||||
if len(nodes) > max_nodes:
|
if len(nodes) > max_nodes:
|
||||||
|
@ -222,8 +242,8 @@ def get_graph_node_object_correlation(object_type, domain, mode, correlation_nam
|
||||||
for corr_obj in res:
|
for corr_obj in res:
|
||||||
if corr_obj in ('decoded', 'domain', 'paste'):
|
if corr_obj in ('decoded', 'domain', 'paste'):
|
||||||
for correl_key_val in res[corr_obj]:
|
for correl_key_val in res[corr_obj]:
|
||||||
#filter root domain
|
#filter root value
|
||||||
if correl_key_val == domain:
|
if correl_key_val == root_value:
|
||||||
continue
|
continue
|
||||||
|
|
||||||
if len(nodes) > max_nodes:
|
if len(nodes) > max_nodes:
|
||||||
|
@ -241,8 +261,8 @@ def get_graph_node_object_correlation(object_type, domain, mode, correlation_nam
|
||||||
if corr_obj in ('pgp', 'cryptocurrency'):
|
if corr_obj in ('pgp', 'cryptocurrency'):
|
||||||
for correl_key_type in res[corr_obj]:
|
for correl_key_type in res[corr_obj]:
|
||||||
for correl_key_val in res[corr_obj][correl_key_type]:
|
for correl_key_val in res[corr_obj][correl_key_type]:
|
||||||
#filter root domain
|
#filter root value
|
||||||
if correl_key_val == domain:
|
if correl_key_val == root_value:
|
||||||
continue
|
continue
|
||||||
|
|
||||||
if len(nodes) > max_nodes:
|
if len(nodes) > max_nodes:
|
||||||
|
|
|
@ -24,6 +24,12 @@ def get_decoded_item_type(sha1_string):
|
||||||
'''
|
'''
|
||||||
return r_serv_metadata.hget('metadata_hash:{}'.format(sha1_string), 'estimated_type')
|
return r_serv_metadata.hget('metadata_hash:{}'.format(sha1_string), 'estimated_type')
|
||||||
|
|
||||||
|
def get_decoded_metadata(sha1_string):
|
||||||
|
metadata_dict = {}
|
||||||
|
metadata_dict['first_seen'] = r_serv_metadata.hget('metadata_hash:{}'.format(sha1_string), 'first_seen')
|
||||||
|
metadata_dict['last_seen'] = r_serv_metadata.hget('metadata_hash:{}'.format(sha1_string), 'last_seen')
|
||||||
|
return metadata_dict
|
||||||
|
|
||||||
def get_decoded_items_list(sha1_string):
|
def get_decoded_items_list(sha1_string):
|
||||||
return r_serv_metadata.zrange('nb_seen_hash:{}'.format(sha1_string), 0, -1)
|
return r_serv_metadata.zrange('nb_seen_hash:{}'.format(sha1_string), 0, -1)
|
||||||
|
|
||||||
|
|
|
@ -12,18 +12,6 @@ config_loader = ConfigLoader.ConfigLoader()
|
||||||
r_serv_metadata = config_loader.get_redis_conn("ARDB_Metadata")
|
r_serv_metadata = config_loader.get_redis_conn("ARDB_Metadata")
|
||||||
config_loader = None
|
config_loader = None
|
||||||
|
|
||||||
def get_all_correlation_names():
|
|
||||||
'''
|
|
||||||
Return a list of all available correlations
|
|
||||||
'''
|
|
||||||
return ['pgp', 'cryptocurrency', 'decoded']
|
|
||||||
|
|
||||||
def get_all_correlation_objects():
|
|
||||||
'''
|
|
||||||
Return a list of all correllated objects
|
|
||||||
'''
|
|
||||||
return ['domain', 'paste']
|
|
||||||
|
|
||||||
class Correlation(object):
|
class Correlation(object):
|
||||||
|
|
||||||
def __init__(self, correlation_name, all_correlation_types):
|
def __init__(self, correlation_name, all_correlation_types):
|
||||||
|
|
|
@ -68,9 +68,11 @@ class TorSplashCrawler():
|
||||||
self.date_month = date['date_month']
|
self.date_month = date['date_month']
|
||||||
self.date_epoch = int(date['epoch'])
|
self.date_epoch = int(date['epoch'])
|
||||||
|
|
||||||
|
# # TODO: timeout in config
|
||||||
self.arg_crawler = { 'html': crawler_options['html'],
|
self.arg_crawler = { 'html': crawler_options['html'],
|
||||||
'wait': 10,
|
'wait': 10,
|
||||||
'render_all': 1,
|
'render_all': 1,
|
||||||
|
'timeout': 30,
|
||||||
'har': crawler_options['har'],
|
'har': crawler_options['har'],
|
||||||
'png': crawler_options['png']}
|
'png': crawler_options['png']}
|
||||||
|
|
||||||
|
|
|
@ -35,6 +35,7 @@ import Flask_config
|
||||||
# Import Blueprint
|
# Import Blueprint
|
||||||
from blueprints.root import root
|
from blueprints.root import root
|
||||||
from blueprints.crawler_splash import crawler_splash
|
from blueprints.crawler_splash import crawler_splash
|
||||||
|
from blueprints.correlation import correlation
|
||||||
|
|
||||||
Flask_dir = os.environ['AIL_FLASK']
|
Flask_dir = os.environ['AIL_FLASK']
|
||||||
|
|
||||||
|
@ -80,6 +81,7 @@ app.config['MAX_CONTENT_LENGTH'] = 900 * 1024 * 1024
|
||||||
# ========= BLUEPRINT =========#
|
# ========= BLUEPRINT =========#
|
||||||
app.register_blueprint(root, url_prefix=baseUrl)
|
app.register_blueprint(root, url_prefix=baseUrl)
|
||||||
app.register_blueprint(crawler_splash, url_prefix=baseUrl)
|
app.register_blueprint(crawler_splash, url_prefix=baseUrl)
|
||||||
|
app.register_blueprint(correlation, url_prefix=baseUrl)
|
||||||
# ========= =========#
|
# ========= =========#
|
||||||
|
|
||||||
# ========= session ========
|
# ========= session ========
|
||||||
|
|
187
var/www/blueprints/correlation.py
Normal file
187
var/www/blueprints/correlation.py
Normal file
|
@ -0,0 +1,187 @@
|
||||||
|
#!/usr/bin/env python3
|
||||||
|
# -*-coding:UTF-8 -*
|
||||||
|
|
||||||
|
'''
|
||||||
|
Blueprint Flask: crawler splash endpoints: dashboard, onion crawler ...
|
||||||
|
'''
|
||||||
|
|
||||||
|
import os
|
||||||
|
import sys
|
||||||
|
import json
|
||||||
|
import random
|
||||||
|
|
||||||
|
from flask import Flask, render_template, jsonify, request, Blueprint, redirect, url_for, Response
|
||||||
|
from flask_login import login_required, current_user, login_user, logout_user
|
||||||
|
|
||||||
|
sys.path.append('modules')
|
||||||
|
import Flask_config
|
||||||
|
|
||||||
|
# Import Role_Manager
|
||||||
|
from Role_Manager import create_user_db, check_password_strength, check_user_role_integrity
|
||||||
|
from Role_Manager import login_admin, login_analyst
|
||||||
|
|
||||||
|
sys.path.append(os.path.join(os.environ['AIL_BIN'], 'lib'))
|
||||||
|
import Correlate_object
|
||||||
|
|
||||||
|
bootstrap_label = Flask_config.bootstrap_label
|
||||||
|
|
||||||
|
# ============ BLUEPRINT ============
|
||||||
|
correlation = Blueprint('correlation', __name__, template_folder=os.path.join(os.environ['AIL_FLASK'], 'templates/correlation'))
|
||||||
|
|
||||||
|
# ============ VARIABLES ============
|
||||||
|
|
||||||
|
def show_correlation(correlation_type, type_id, key_id):
|
||||||
|
if is_valid_type_id(correlation_type, type_id):
|
||||||
|
key_id_metadata = get_key_id_metadata(correlation_type, type_id, key_id)
|
||||||
|
if key_id_metadata:
|
||||||
|
|
||||||
|
num_day_sparkline = 6
|
||||||
|
date_range_sparkline = get_date_range(num_day_sparkline)
|
||||||
|
|
||||||
|
sparkline_values = list_sparkline_type_id_values(date_range_sparkline, correlation_type, type_id, key_id)
|
||||||
|
return render_template('show_correlation.html', key_id=key_id, type_id=type_id,
|
||||||
|
correlation_type=correlation_type,
|
||||||
|
graph_line_endpoint=get_graph_line_json_endpoint(correlation_type),
|
||||||
|
key_id_metadata=key_id_metadata,
|
||||||
|
type_icon=get_icon(correlation_type, type_id),
|
||||||
|
sparkline_values=sparkline_values)
|
||||||
|
else:
|
||||||
|
return '404'
|
||||||
|
else:
|
||||||
|
return 'error'
|
||||||
|
|
||||||
|
# ============ FUNCTIONS ============
|
||||||
|
|
||||||
|
def sanitise_graph_mode(graph_mode):
|
||||||
|
if graph_mode not in ('inter', 'union'):
|
||||||
|
return 'union'
|
||||||
|
else:
|
||||||
|
return graph_mode
|
||||||
|
|
||||||
|
def sanitise_nb_max_nodes(nb_max_nodes):
|
||||||
|
try:
|
||||||
|
nb_max_nodes = int(nb_max_nodes)
|
||||||
|
if nb_max_nodes < 2:
|
||||||
|
nb_max_nodes = 300
|
||||||
|
except:
|
||||||
|
nb_max_nodes = 300
|
||||||
|
return nb_max_nodes
|
||||||
|
|
||||||
|
def sanitise_correlation_names(correlation_names):
|
||||||
|
'''
|
||||||
|
correlation_names ex = 'pgp,crypto'
|
||||||
|
'''
|
||||||
|
all_correlation_names = Correlate_object.get_all_correlation_names()
|
||||||
|
if correlation_names is None:
|
||||||
|
return all_correlation_names
|
||||||
|
else:
|
||||||
|
l_correlation_names = []
|
||||||
|
for correl in correlation_names.split(','):
|
||||||
|
if correl in all_correlation_names:
|
||||||
|
l_correlation_names.append(correl)
|
||||||
|
if l_correlation_names:
|
||||||
|
return l_correlation_names
|
||||||
|
else:
|
||||||
|
return all_correlation_names
|
||||||
|
|
||||||
|
def sanitise_correlation_objects(correlation_objects):
|
||||||
|
'''
|
||||||
|
correlation_objects ex = 'domain,decoded'
|
||||||
|
'''
|
||||||
|
all_correlation_objects = Correlate_object.get_all_correlation_objects()
|
||||||
|
if correlation_objects is None:
|
||||||
|
return all_correlation_objects
|
||||||
|
else:
|
||||||
|
l_correlation_objects = []
|
||||||
|
for correl in correlation_objects.split(','):
|
||||||
|
if correl in all_correlation_objects:
|
||||||
|
l_correlation_objects.append(correl)
|
||||||
|
if l_correlation_objects:
|
||||||
|
return l_correlation_objects
|
||||||
|
else:
|
||||||
|
return all_correlation_objects
|
||||||
|
|
||||||
|
# ============= ROUTES ==============
|
||||||
|
@correlation.route('/correlation/show_correlation', methods=['GET', 'POST']) # GET + POST
|
||||||
|
@login_required
|
||||||
|
@login_analyst
|
||||||
|
def showCorrelationDomain():
|
||||||
|
if request.method == 'POST':
|
||||||
|
object_type = request.form.get('object_type')
|
||||||
|
type_id = request.form.get('type_id')
|
||||||
|
correlation_id = request.form.get('correlation_id')
|
||||||
|
max_nodes = request.form.get('max_nb_nodes_in')
|
||||||
|
mode = request.form.get('mode')
|
||||||
|
if mode:
|
||||||
|
mode = 'inter'
|
||||||
|
else:
|
||||||
|
mode = 'union'
|
||||||
|
|
||||||
|
## get all selected correlations
|
||||||
|
correlation_names = []
|
||||||
|
correlation_objects = []
|
||||||
|
#correlation_names
|
||||||
|
correl_option = request.form.get('CryptocurrencyCheck')
|
||||||
|
if correl_option:
|
||||||
|
correlation_names.append('cryptocurrency')
|
||||||
|
correl_option = request.form.get('PgpCheck')
|
||||||
|
if correl_option:
|
||||||
|
correlation_names.append('pgp')
|
||||||
|
correl_option = request.form.get('DecodedCheck')
|
||||||
|
if correl_option:
|
||||||
|
correlation_names.append('decoded')
|
||||||
|
# correlation_objects
|
||||||
|
correl_option = request.form.get('DomainCheck')
|
||||||
|
if correl_option:
|
||||||
|
correlation_objects.append('domain')
|
||||||
|
correl_option = request.form.get('PasteCheck')
|
||||||
|
if correl_option:
|
||||||
|
correlation_objects.append('paste')
|
||||||
|
|
||||||
|
# list as params
|
||||||
|
correlation_names = ",".join(correlation_names)
|
||||||
|
correlation_objects = ",".join(correlation_objects)
|
||||||
|
|
||||||
|
# redirect to keep history and bookmark
|
||||||
|
return redirect(url_for('correlation.showCorrelationDomain', object_type=object_type, type_id=type_id, correlation_id=correlation_id, mode=mode,
|
||||||
|
max_nodes=max_nodes, correlation_names=correlation_names, correlation_objects=correlation_objects))
|
||||||
|
|
||||||
|
# request.method == 'GET'
|
||||||
|
else:
|
||||||
|
object_type = request.args.get('object_type')
|
||||||
|
type_id = request.args.get('type_id')
|
||||||
|
correlation_id = request.args.get('correlation_id')
|
||||||
|
max_nodes = sanitise_nb_max_nodes(request.args.get('max_nodes'))
|
||||||
|
mode = sanitise_graph_mode(request.args.get('mode'))
|
||||||
|
|
||||||
|
correlation_names = sanitise_correlation_names(request.args.get('correlation_names'))
|
||||||
|
correlation_objects = sanitise_correlation_objects(request.args.get('correlation_objects'))
|
||||||
|
|
||||||
|
dict_object = {"object_type": object_type, "correlation_id": correlation_id}
|
||||||
|
dict_object["max_nodes"] = max_nodes
|
||||||
|
dict_object["mode"] = mode
|
||||||
|
dict_object["correlation_names"] = correlation_names
|
||||||
|
dict_object["correlation_names_str"] = ",".join(correlation_names)
|
||||||
|
dict_object["correlation_objects"] = correlation_objects
|
||||||
|
dict_object["correlation_objects_str"] = ",".join(correlation_objects)
|
||||||
|
dict_object["metadata"] = Correlate_object.get_object_metadata(object_type, correlation_id, type_id=type_id)
|
||||||
|
if type_id:
|
||||||
|
dict_object["metadata"]['type_id'] = type_id
|
||||||
|
return render_template("show_correlation.html", dict_object=dict_object)
|
||||||
|
|
||||||
|
@correlation.route('/correlation/graph_node_json')
|
||||||
|
@login_required
|
||||||
|
@login_analyst
|
||||||
|
def graph_node_json(): # # TODO: use post
|
||||||
|
correlation_id = request.args.get('correlation_id')
|
||||||
|
type_id = request.args.get('type_id')
|
||||||
|
object_type = request.args.get('object_type')
|
||||||
|
max_nodes = sanitise_nb_max_nodes(request.args.get('max_nodes'))
|
||||||
|
|
||||||
|
correlation_names = sanitise_correlation_names(request.args.get('correlation_names'))
|
||||||
|
correlation_objects = sanitise_correlation_objects(request.args.get('correlation_objects'))
|
||||||
|
|
||||||
|
mode = sanitise_graph_mode(request.args.get('mode'))
|
||||||
|
|
||||||
|
res = Correlate_object.get_graph_node_object_correlation(object_type, correlation_id, mode, correlation_names, correlation_objects, requested_correl_type=type_id, max_nodes=max_nodes)
|
||||||
|
return jsonify(res)
|
|
@ -85,7 +85,44 @@
|
||||||
|
|
||||||
<div class="col-12 col-lg-10" id="core_content">
|
<div class="col-12 col-lg-10" id="core_content">
|
||||||
|
|
||||||
|
<div class="card my-3">
|
||||||
|
<div class="card-header" style="background-color:#d9edf7;font-size: 15px">
|
||||||
|
<h4 class="text-secondary">{{ dict_object["correlation_id"] }} :</h4>
|
||||||
|
<ul class="list-group mb-2">
|
||||||
|
<li class="list-group-item py-0">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-10">
|
||||||
|
<table class="table">
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Object type</th>
|
||||||
|
<th>type</th>
|
||||||
|
{% if dict_object["metadata"]['first_seen'] %}
|
||||||
|
<th>First_seen</th>
|
||||||
|
<th>Last_seen</th>
|
||||||
|
{% endif %}
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>{{ dict_object["object_type"] }}</td>
|
||||||
|
<td><i class="fas fa-key"></i> {{ dict_object["metadata"]["type_id"] }}</td>
|
||||||
|
{% if dict_object["metadata"]['first_seen'] %}
|
||||||
|
<td>{{ dict_object["metadata"]['first_seen'] }}</td>
|
||||||
|
<td>{{ dict_object["metadata"]['last_seen'] }}</td>
|
||||||
|
{% endif %}
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-1">
|
||||||
|
<div id="sparkline"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-xl-10">
|
<div class="col-xl-10">
|
||||||
|
@ -103,7 +140,7 @@
|
||||||
|
|
||||||
<div class="col-xl-2">
|
<div class="col-xl-2">
|
||||||
|
|
||||||
<div class="card my-3">
|
<div class="card mb-3">
|
||||||
<div class="card-header">
|
<div class="card-header">
|
||||||
<i class="fas fa-project-diagram"></i> Graph
|
<i class="fas fa-project-diagram"></i> Graph
|
||||||
</div>
|
</div>
|
||||||
|
@ -112,11 +149,63 @@
|
||||||
<i class="fas fa-sync"></i> Resize Graph
|
<i class="fas fa-sync"></i> Resize Graph
|
||||||
</button>
|
</button>
|
||||||
|
|
||||||
{% if correlation_type=='pgpdump' %}
|
<ul class="list-group">
|
||||||
|
<li class="list-group-item list-group-item-info">Select Correlation</i></li>
|
||||||
|
<li class="list-group-item text-left">
|
||||||
|
|
||||||
|
<form action="{{ url_for('correlation.showCorrelationDomain') }}" method="post">
|
||||||
|
<input type="hidden" id="object_type" name="object_type" value="{{ dict_object["object_type"] }}">
|
||||||
|
<input type="hidden" id="type_id" name="type_id" value="{{ dict_object["metadata"]["type_id"] }}">
|
||||||
|
<input type="hidden" id="correlation_id" name="correlation_id" value="{{ dict_object["correlation_id"] }}">
|
||||||
|
|
||||||
|
<div class="form-check">
|
||||||
|
<input class="form-check-input" type="checkbox" value="True" id="CryptocurrencyCheck" name="CryptocurrencyCheck" {%if "cryptocurrency" in dict_object["correlation_names"]%}checked{%endif%}>
|
||||||
|
<label class="form-check-label" for="CryptocurrencyCheck">Cryptocurrency</label>
|
||||||
|
</div>
|
||||||
|
<div class="form-check">
|
||||||
|
<input class="form-check-input" type="checkbox" value="True" id="DecodedCheck" name="DecodedCheck" {%if "decoded" in dict_object["correlation_names"]%}checked{%endif%}>
|
||||||
|
<label class="form-check-label" for="DecodedCheck">Decoded</label>
|
||||||
|
</div>
|
||||||
|
<div class="form-check">
|
||||||
|
<input class="form-check-input" type="checkbox" value="True" id="PgpCheck" name="PgpCheck" {%if "pgp" in dict_object["correlation_names"]%}checked{%endif%}>
|
||||||
|
<label class="form-check-label" for="PgpCheck">PGP</label>
|
||||||
|
</div>
|
||||||
|
<div class="form-check">
|
||||||
|
<input class="form-check-input" type="checkbox" value="True" id="DomainCheck" name="DomainCheck" {%if "domain" in dict_object["correlation_objects"]%}checked{%endif%}>
|
||||||
|
<label class="form-check-label" for="DomainCheck">Domain</label>
|
||||||
|
</div>
|
||||||
|
<div class="form-check">
|
||||||
|
<input class="form-check-input" type="checkbox" value="True" id="PasteCheck" name="PasteCheck" {%if "paste" in dict_object["correlation_objects"]%}checked{%endif%}>
|
||||||
|
<label class="form-check-label" for="PasteCheck">Paste</label>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
<li class="list-group-item text-left">
|
||||||
|
<div class="d-flex mt-1">
|
||||||
|
Union
|
||||||
|
<div class="custom-control custom-switch">
|
||||||
|
<input class="custom-control-input" type="checkbox" name="mode" value="True" id="mode" {%if dict_object["mode"]=="inter"%}checked{%endif%}>
|
||||||
|
<label class="custom-control-label" for="mode">Intersection</label>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li class="list-group-item text-left">
|
||||||
|
|
||||||
|
<div class="form-group">
|
||||||
|
<label for="max_nb_nodes_in">Max number of nodes:</label>
|
||||||
|
<input class="form-control" type="number" value="{{dict_object["max_nodes"]}}" min="2" id="max_nb_nodes_in" name="max_nb_nodes_in">
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="text-center">
|
||||||
|
<input class="btn btn-primary" type="submit" value="Redraw Graph">
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</form>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
{% include 'decoded/show_helper_pgpdump.html' %}
|
{% include 'decoded/show_helper_pgpdump.html' %}
|
||||||
{% elif correlation_type=='cryptocurrency' %}
|
|
||||||
{% include 'decoded/show_helper_cryptocurrency.html' %}
|
|
||||||
{% endif %}
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -133,7 +222,7 @@ var all_graph = {};
|
||||||
$(document).ready(function(){
|
$(document).ready(function(){
|
||||||
$("#page-Decoded").addClass("active");
|
$("#page-Decoded").addClass("active");
|
||||||
|
|
||||||
all_graph.node_graph = create_graph("{{ url_for('correlation.test') }}");
|
all_graph.node_graph = create_graph("{{ url_for('correlation.graph_node_json') }}?correlation_id={{ dict_object["correlation_id"] }}&object_type={{ dict_object["object_type"] }}&mode={{ dict_object["mode"] }}&correlation_names={{ dict_object["correlation_names_str"] }}&correlation_objects={{ dict_object["correlation_objects_str"] }}&max_nodes={{dict_object["max_nodes"]}}{% if 'type_id' in dict_object["metadata"] %}&type_id={{ dict_object["metadata"]["type_id"] }}{% endif %}");
|
||||||
all_graph.onResize();
|
all_graph.onResize();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue