2020-10-13 16:02:30 +02:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
# -*-coding:UTF-8 -*
|
|
|
|
|
|
|
|
'''
|
|
|
|
Blueprint Flask: crawler splash endpoints: dashboard, onion crawler ...
|
|
|
|
'''
|
|
|
|
|
2022-11-22 10:47:15 +01:00
|
|
|
import difflib
|
2020-10-13 16:02:30 +02:00
|
|
|
import os
|
|
|
|
import sys
|
|
|
|
|
2022-11-22 10:47:15 +01:00
|
|
|
from flask import Flask, render_template, jsonify, request, Blueprint, redirect, url_for, Response, abort, send_file, send_from_directory
|
2020-10-13 16:02:30 +02:00
|
|
|
from flask_login import login_required, current_user
|
|
|
|
|
|
|
|
# Import Role_Manager
|
2022-11-22 10:47:15 +01:00
|
|
|
from Role_Manager import login_admin, login_analyst, login_read_only, no_cache
|
2020-10-13 16:02:30 +02:00
|
|
|
|
2022-07-13 15:10:27 +02:00
|
|
|
sys.path.append(os.environ['AIL_BIN'])
|
|
|
|
##################################
|
|
|
|
# Import Project packages
|
|
|
|
##################################
|
2022-11-22 10:47:15 +01:00
|
|
|
from lib import ConfigLoader
|
2022-07-13 15:10:27 +02:00
|
|
|
from lib import item_basic
|
|
|
|
from lib.objects.Items import Item
|
2022-11-28 15:01:40 +01:00
|
|
|
from lib.objects.Screenshots import Screenshot
|
2022-09-01 14:04:00 +02:00
|
|
|
from lib import Tag
|
2022-07-13 15:10:27 +02:00
|
|
|
from export import Export
|
2020-10-13 16:02:30 +02:00
|
|
|
|
2022-12-19 16:38:20 +01:00
|
|
|
from lib import module_extractor
|
|
|
|
|
2020-10-13 16:02:30 +02:00
|
|
|
|
|
|
|
# ============ BLUEPRINT ============
|
|
|
|
objects_item = Blueprint('objects_item', __name__, template_folder=os.path.join(os.environ['AIL_FLASK'], 'templates/objects/item'))
|
|
|
|
|
|
|
|
# ============ VARIABLES ============
|
2022-11-22 10:47:15 +01:00
|
|
|
config_loader = ConfigLoader.ConfigLoader()
|
2020-10-13 16:02:30 +02:00
|
|
|
bootstrap_label = ['primary', 'success', 'danger', 'warning', 'info']
|
2022-11-22 10:47:15 +01:00
|
|
|
DiffMaxLineLength = config_loader.get_config_int('Flask', 'DiffMaxLineLength')
|
|
|
|
max_preview_modal = config_loader.get_config_int('Flask', 'max_preview_modal')
|
|
|
|
SCREENSHOT_FOLDER = ConfigLoader.get_screenshots_dir()
|
|
|
|
config_loader = None
|
2020-10-13 16:02:30 +02:00
|
|
|
|
|
|
|
# ============ FUNCTIONS ============
|
|
|
|
|
|
|
|
|
|
|
|
# ============= ROUTES ==============
|
2022-11-22 10:47:15 +01:00
|
|
|
|
|
|
|
@objects_item.route('/screenshot/<path:filename>')
|
|
|
|
@login_required
|
|
|
|
@login_read_only
|
|
|
|
@no_cache
|
|
|
|
def screenshot(filename):
|
2022-11-28 15:01:40 +01:00
|
|
|
if not filename:
|
|
|
|
abort(404)
|
|
|
|
if not 64 <= len(filename) <= 70:
|
|
|
|
abort(404)
|
|
|
|
filename = filename.replace('/', '')
|
|
|
|
s = Screenshot(filename)
|
|
|
|
return send_from_directory(SCREENSHOT_FOLDER, s.get_rel_path(add_extension=True), as_attachment=True)
|
2022-11-22 10:47:15 +01:00
|
|
|
|
2022-10-25 16:25:19 +02:00
|
|
|
@objects_item.route("/object/item")
|
2020-10-13 16:02:30 +02:00
|
|
|
@login_required
|
|
|
|
@login_read_only
|
2022-10-25 16:25:19 +02:00
|
|
|
def showItem(): # # TODO: support post
|
2020-10-13 16:02:30 +02:00
|
|
|
item_id = request.args.get('id')
|
2022-07-13 15:10:27 +02:00
|
|
|
if not item_id or not item_basic.exist_item(item_id):
|
2020-10-13 16:02:30 +02:00
|
|
|
abort(404)
|
|
|
|
|
2022-07-13 15:10:27 +02:00
|
|
|
item = Item(item_id)
|
2022-10-25 16:25:19 +02:00
|
|
|
meta = item.get_meta(options=['content', 'crawler', 'duplicates', 'lines', 'size'])
|
2020-10-13 16:02:30 +02:00
|
|
|
|
2022-07-13 15:10:27 +02:00
|
|
|
meta['name'] = meta['id'].replace('/', ' / ')
|
|
|
|
meta['father'] = item_basic.get_item_parent(item_id)
|
2020-10-13 16:02:30 +02:00
|
|
|
## EXPORT SECTION
|
|
|
|
# # TODO: ADD in Export SECTION
|
2022-07-13 15:10:27 +02:00
|
|
|
meta['hive_case'] = Export.get_item_hive_cases(item_id)
|
2020-10-13 16:02:30 +02:00
|
|
|
|
2022-12-19 16:38:20 +01:00
|
|
|
extracted = module_extractor.extract(item.id, content=meta['content'])
|
|
|
|
|
2020-10-13 16:02:30 +02:00
|
|
|
return render_template("show_item.html", bootstrap_label=bootstrap_label,
|
2022-07-13 15:10:27 +02:00
|
|
|
modal_add_tags=Tag.get_modal_add_tags(meta['id'], object_type='item'),
|
2020-10-13 16:02:30 +02:00
|
|
|
is_hive_connected=Export.get_item_hive_cases(item_id),
|
2022-12-19 16:38:20 +01:00
|
|
|
meta=meta, extracted=extracted)
|
2020-10-13 16:02:30 +02:00
|
|
|
|
|
|
|
# kvrocks data
|
|
|
|
|
|
|
|
# # TODO: dynamic load:
|
|
|
|
## duplicates
|
|
|
|
## correlations
|
|
|
|
|
|
|
|
## Dynamic Path FIX
|
|
|
|
|
|
|
|
@objects_item.route("/object/item/html2text")
|
|
|
|
@login_required
|
|
|
|
@login_read_only
|
|
|
|
def html2text(): # # TODO: support post
|
|
|
|
item_id = request.args.get('id')
|
2022-07-13 15:10:27 +02:00
|
|
|
if not item_id or not item_basic.exist_item(item_id):
|
2020-10-13 16:02:30 +02:00
|
|
|
abort(404)
|
2022-07-13 15:10:27 +02:00
|
|
|
item = Item(item_id)
|
|
|
|
return item.get_html2text_content()
|
2020-10-13 16:02:30 +02:00
|
|
|
|
|
|
|
@objects_item.route("/object/item/raw_content")
|
|
|
|
@login_required
|
|
|
|
@login_read_only
|
|
|
|
def item_raw_content(): # # TODO: support post
|
|
|
|
item_id = request.args.get('id')
|
2022-07-13 15:10:27 +02:00
|
|
|
if not item_id or not item_basic.exist_item(item_id):
|
2020-10-13 16:02:30 +02:00
|
|
|
abort(404)
|
2022-07-13 15:10:27 +02:00
|
|
|
item = Item(item_id)
|
|
|
|
return Response(item.get_content(), mimetype='text/plain')
|
2020-10-13 16:02:30 +02:00
|
|
|
|
|
|
|
@objects_item.route("/object/item/download")
|
|
|
|
@login_required
|
|
|
|
@login_read_only
|
2022-11-22 10:47:15 +01:00
|
|
|
def item_download(): # # TODO: support post
|
2020-10-13 16:02:30 +02:00
|
|
|
item_id = request.args.get('id')
|
2022-07-13 15:10:27 +02:00
|
|
|
if not item_id or not item_basic.exist_item(item_id):
|
2020-10-13 16:02:30 +02:00
|
|
|
abort(404)
|
2022-07-13 15:10:27 +02:00
|
|
|
item = Item(item_id)
|
2022-10-25 16:25:19 +02:00
|
|
|
return send_file(item.get_raw_content(), download_name=item_id, as_attachment=True)
|
2022-11-22 10:47:15 +01:00
|
|
|
|
|
|
|
@objects_item.route("/object/item/content/more")
|
|
|
|
@login_required
|
|
|
|
@login_read_only
|
|
|
|
def item_content_more():
|
|
|
|
item_id = request.args.get('id', '')
|
|
|
|
item = Item(item_id)
|
|
|
|
item_content = item.get_content()
|
|
|
|
to_return = item_content[max_preview_modal-1:]
|
|
|
|
return to_return
|
|
|
|
|
|
|
|
@objects_item.route("/object/item/diff")
|
|
|
|
@login_required
|
|
|
|
@login_analyst
|
|
|
|
def object_item_diff():
|
|
|
|
id1 = request.args.get('s1', '')
|
|
|
|
id2 = request.args.get('s2', '')
|
|
|
|
item1 = Item(id1)
|
|
|
|
item2 = Item(id2)
|
|
|
|
item1_content = item1.get_content()
|
|
|
|
item2_content = item2.get_content()
|
|
|
|
i1_max_len = item1.get_meta_lines(content=item1_content)['max_length']
|
|
|
|
i2_max_len = item2.get_meta_lines(content=item2_content)['max_length']
|
|
|
|
if i1_max_len > DiffMaxLineLength or i2_max_len > DiffMaxLineLength:
|
|
|
|
return jsonify({'error': "Can't make the difference as the lines are too long."}), 400
|
|
|
|
lines1 = item1_content.splitlines()
|
|
|
|
lines2 = item2_content.splitlines()
|
|
|
|
htmldiff = difflib.HtmlDiff()
|
|
|
|
diff = htmldiff.make_file(lines1, lines2)
|
|
|
|
return diff
|
|
|
|
|
|
|
|
@objects_item.route("/object/item/preview")
|
|
|
|
@login_required
|
|
|
|
@login_read_only
|
|
|
|
def item_preview():
|
|
|
|
item_id = request.args.get('id')
|
|
|
|
if not item_id or not item_basic.exist_item(item_id):
|
|
|
|
abort(404)
|
|
|
|
|
|
|
|
item = Item(item_id)
|
|
|
|
meta = item.get_meta(options={'content', 'crawler', 'lines', 'mimetype', 'parent', 'size'})
|
|
|
|
initsize = len(meta['content'])
|
|
|
|
if len(meta['content']) > max_preview_modal:
|
|
|
|
meta['content'] = meta['content'][0:max_preview_modal]
|
|
|
|
meta['nb_correlations'] = item.get_nb_correlations()
|
|
|
|
|
|
|
|
misp_eventid = None # TODO SHOW MISP EVENT
|
|
|
|
misp_url = None # TODO SHOW MISP EVENT
|
|
|
|
hive_caseid = None # TODO SHOW HIVE CASE
|
|
|
|
hive_url = None # TODO SHOW HIVE CASE
|
|
|
|
|
|
|
|
return render_template("show_item_min.html", bootstrap_label=bootstrap_label,
|
|
|
|
meta=meta, initsize=initsize,
|
|
|
|
|
|
|
|
misp_eventid=misp_eventid, misp_url=misp_url,
|
|
|
|
hive_caseid=hive_caseid, hive_url=hive_url)
|
|
|
|
|