2018-06-05 16:58:04 +02:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
# -*-coding:UTF-8 -*
|
|
|
|
|
|
|
|
'''
|
|
|
|
Flask functions and routes for the trending modules page
|
|
|
|
'''
|
|
|
|
import redis
|
2018-06-15 17:25:43 +02:00
|
|
|
from flask import Flask, render_template, jsonify, request, Blueprint, url_for, redirect
|
2019-06-19 17:02:09 +02:00
|
|
|
|
|
|
|
from Role_Manager import login_admin, login_analyst
|
2019-05-02 17:31:14 +02:00
|
|
|
from flask_login import login_required
|
2018-06-05 16:58:04 +02:00
|
|
|
|
|
|
|
import unicodedata
|
|
|
|
import string
|
|
|
|
import subprocess
|
|
|
|
import os
|
|
|
|
import sys
|
|
|
|
import datetime
|
2018-06-08 16:49:20 +02:00
|
|
|
import uuid
|
2018-06-14 16:51:06 +02:00
|
|
|
from io import BytesIO
|
|
|
|
from Date import Date
|
2018-06-15 17:25:43 +02:00
|
|
|
import json
|
2018-06-14 16:51:06 +02:00
|
|
|
|
|
|
|
import Paste
|
2018-06-05 16:58:04 +02:00
|
|
|
|
2019-07-25 17:26:32 +02:00
|
|
|
import Import_helper
|
2019-08-01 13:16:57 +02:00
|
|
|
import Tag
|
2019-07-25 17:26:32 +02:00
|
|
|
|
2018-06-05 16:58:04 +02:00
|
|
|
from pytaxonomies import Taxonomies
|
|
|
|
from pymispgalaxies import Galaxies, Clusters
|
|
|
|
|
2018-06-19 11:31:30 +02:00
|
|
|
try:
|
|
|
|
from pymisp.mispevent import MISPObject
|
|
|
|
flag_misp = True
|
|
|
|
except:
|
|
|
|
flag_misp = False
|
|
|
|
try:
|
|
|
|
from thehive4py.models import Case, CaseTask, CustomFieldHelper, CaseObservable
|
|
|
|
flag_hive = True
|
|
|
|
except:
|
|
|
|
flag_hive = False
|
2018-06-14 16:51:06 +02:00
|
|
|
|
2018-06-05 16:58:04 +02:00
|
|
|
# ============ VARIABLES ============
|
|
|
|
import Flask_config
|
|
|
|
|
|
|
|
app = Flask_config.app
|
2018-09-20 10:38:19 +02:00
|
|
|
baseUrl = Flask_config.baseUrl
|
2018-06-05 16:58:04 +02:00
|
|
|
r_serv_tags = Flask_config.r_serv_tags
|
2018-06-08 16:49:20 +02:00
|
|
|
r_serv_metadata = Flask_config.r_serv_metadata
|
|
|
|
r_serv_db = Flask_config.r_serv_db
|
2018-06-05 16:58:04 +02:00
|
|
|
r_serv_log_submit = Flask_config.r_serv_log_submit
|
|
|
|
|
2018-06-14 16:51:06 +02:00
|
|
|
pymisp = Flask_config.pymisp
|
2018-06-19 11:31:30 +02:00
|
|
|
if pymisp is False:
|
|
|
|
flag_misp = False
|
2018-06-14 16:51:06 +02:00
|
|
|
|
|
|
|
HiveApi = Flask_config.HiveApi
|
2018-06-19 11:31:30 +02:00
|
|
|
if HiveApi is False:
|
|
|
|
flag_hive = False
|
2018-06-14 16:51:06 +02:00
|
|
|
|
2018-06-05 16:58:04 +02:00
|
|
|
PasteSubmit = Blueprint('PasteSubmit', __name__, template_folder='templates')
|
|
|
|
|
|
|
|
valid_filename_chars = "-_ %s%s" % (string.ascii_letters, string.digits)
|
|
|
|
|
2018-06-20 10:02:26 +02:00
|
|
|
ALLOWED_EXTENSIONS = set(['txt', 'sh', 'pdf', 'zip', 'gz', 'tar.gz'])
|
2018-06-08 16:49:20 +02:00
|
|
|
UPLOAD_FOLDER = Flask_config.UPLOAD_FOLDER
|
2018-06-06 10:05:25 +02:00
|
|
|
|
2018-06-14 16:51:06 +02:00
|
|
|
misp_event_url = Flask_config.misp_event_url
|
|
|
|
hive_case_url = Flask_config.hive_case_url
|
|
|
|
|
2018-06-05 16:58:04 +02:00
|
|
|
# ============ FUNCTIONS ============
|
|
|
|
def one():
|
|
|
|
return 1
|
|
|
|
|
2018-06-06 10:05:25 +02:00
|
|
|
def allowed_file(filename):
|
2018-06-08 16:49:20 +02:00
|
|
|
if not '.' in filename:
|
|
|
|
return True
|
|
|
|
else:
|
|
|
|
return filename.rsplit('.', 1)[1].lower() in ALLOWED_EXTENSIONS
|
2018-06-06 10:05:25 +02:00
|
|
|
|
2018-06-05 16:58:04 +02:00
|
|
|
def clean_filename(filename, whitelist=valid_filename_chars, replace=' '):
|
|
|
|
# replace characters
|
|
|
|
for r in replace:
|
|
|
|
filename = filename.replace(r,'_')
|
|
|
|
|
|
|
|
# keep only valid ascii chars
|
|
|
|
cleaned_filename = unicodedata.normalize('NFKD', filename).encode('ASCII', 'ignore').decode()
|
|
|
|
|
|
|
|
# keep only whitelisted chars
|
|
|
|
return ''.join(c for c in cleaned_filename if c in whitelist)
|
|
|
|
|
2018-06-14 16:51:06 +02:00
|
|
|
def date_to_str(date):
|
|
|
|
return "{0}-{1}-{2}".format(date.year, date.month, date.day)
|
|
|
|
|
2018-06-18 13:58:31 +02:00
|
|
|
def misp_create_event(distribution, threat_level_id, analysis, info, l_tags, publish, path):
|
2018-06-14 16:51:06 +02:00
|
|
|
|
|
|
|
paste = Paste.Paste(path)
|
|
|
|
source = path.split('/')[-6:]
|
|
|
|
source = '/'.join(source)[:-3]
|
|
|
|
ail_uuid = r_serv_db.get('ail:uuid')
|
|
|
|
pseudofile = BytesIO(paste.get_p_content().encode())
|
|
|
|
|
2018-06-15 17:25:43 +02:00
|
|
|
temp = paste._get_p_duplicate()
|
|
|
|
|
|
|
|
#beautifier
|
|
|
|
if not temp:
|
|
|
|
temp = ''
|
|
|
|
|
|
|
|
p_duplicate_number = len(temp) if len(temp) >= 0 else 0
|
|
|
|
|
|
|
|
to_ret = ""
|
|
|
|
for dup in temp[:10]:
|
|
|
|
dup = dup.replace('\'','\"').replace('(','[').replace(')',']')
|
|
|
|
dup = json.loads(dup)
|
|
|
|
algo = dup[0]
|
|
|
|
path = dup[1].split('/')[-6:]
|
|
|
|
path = '/'.join(path)[:-3] # -3 removes .gz
|
|
|
|
if algo == 'tlsh':
|
|
|
|
perc = 100 - int(dup[2])
|
|
|
|
else:
|
|
|
|
perc = dup[2]
|
|
|
|
to_ret += "{}: {} [{}%]\n".format(path, algo, perc)
|
|
|
|
p_duplicate = to_ret
|
|
|
|
|
2018-06-14 16:51:06 +02:00
|
|
|
today = datetime.date.today()
|
|
|
|
# [0-3]
|
2018-06-18 13:58:31 +02:00
|
|
|
if publish == 'True':
|
|
|
|
published = True
|
|
|
|
else:
|
|
|
|
published = False
|
2018-06-14 16:51:06 +02:00
|
|
|
org_id = None
|
|
|
|
orgc_id = None
|
|
|
|
sharing_group_id = None
|
|
|
|
date = today
|
|
|
|
event = pymisp.new_event(distribution, threat_level_id,
|
|
|
|
analysis, info, date,
|
|
|
|
published, orgc_id, org_id, sharing_group_id)
|
|
|
|
eventUuid = event['Event']['uuid']
|
|
|
|
eventid = event['Event']['id']
|
|
|
|
|
2018-06-18 17:16:22 +02:00
|
|
|
r_serv_metadata.set('misp_events:'+path, eventid)
|
2018-06-18 13:58:31 +02:00
|
|
|
|
2018-06-14 16:51:06 +02:00
|
|
|
# add tags
|
|
|
|
for tag in l_tags:
|
|
|
|
pymisp.tag(eventUuid, tag)
|
|
|
|
|
|
|
|
# create attributes
|
|
|
|
obj_name = 'ail-leak'
|
|
|
|
leak_obj = MISPObject(obj_name)
|
|
|
|
leak_obj.add_attribute('sensor', value=ail_uuid, type="text")
|
|
|
|
leak_obj.add_attribute('origin', value=source, type='text')
|
|
|
|
leak_obj.add_attribute('last-seen', value=date_to_str(paste.p_date), type='datetime')
|
|
|
|
leak_obj.add_attribute('raw-data', value=source, data=pseudofile, type="attachment")
|
|
|
|
|
2018-06-15 17:25:43 +02:00
|
|
|
if p_duplicate_number > 0:
|
|
|
|
leak_obj.add_attribute('duplicate', value=p_duplicate, type='text')
|
|
|
|
leak_obj.add_attribute('duplicate_number', value=p_duplicate_number, type='counter')
|
|
|
|
|
2018-06-14 16:51:06 +02:00
|
|
|
try:
|
2019-06-25 14:55:03 +02:00
|
|
|
templateID = [x['ObjectTemplate']['id'] for x in pymisp.get_object_templates_list()['response'] if x['ObjectTemplate']['name'] == obj_name][0]
|
2018-06-14 16:51:06 +02:00
|
|
|
except IndexError:
|
|
|
|
valid_types = ", ".join([x['ObjectTemplate']['name'] for x in pymisp.get_object_templates_list()])
|
|
|
|
print ("Template for type {} not found! Valid types are: {%s}".format(obj_name, valid_types))
|
|
|
|
r = pymisp.add_object(eventid, templateID, leak_obj)
|
|
|
|
if 'errors' in r:
|
2018-06-18 17:16:22 +02:00
|
|
|
print(r)
|
2018-06-14 16:51:06 +02:00
|
|
|
return False
|
|
|
|
else:
|
|
|
|
event_url = misp_event_url + eventid
|
2018-06-15 17:25:43 +02:00
|
|
|
return event_url
|
2018-06-14 16:51:06 +02:00
|
|
|
|
|
|
|
def hive_create_case(hive_tlp, threat_level, hive_description, hive_case_title, l_tags, path):
|
|
|
|
|
|
|
|
ail_uuid = r_serv_db.get('ail:uuid')
|
|
|
|
source = path.split('/')[-6:]
|
|
|
|
source = '/'.join(source)[:-3]
|
|
|
|
# get paste date
|
|
|
|
var = path.split('/')
|
|
|
|
last_seen = "{0}-{1}-{2}".format(var[-4], var[-3], var[-2])
|
|
|
|
|
|
|
|
case = Case(title=hive_case_title,
|
|
|
|
tlp=hive_tlp,
|
|
|
|
severity=threat_level,
|
|
|
|
flag=False,
|
|
|
|
tags=l_tags,
|
|
|
|
description='hive_description')
|
|
|
|
|
|
|
|
# Create the case
|
|
|
|
id = None
|
|
|
|
response = HiveApi.create_case(case)
|
|
|
|
if response.status_code == 201:
|
|
|
|
id = response.json()['id']
|
|
|
|
|
|
|
|
observ_sensor = CaseObservable(dataType="other", data=[ail_uuid], message="sensor")
|
|
|
|
observ_file = CaseObservable(dataType="file", data=[path], tags=l_tags)
|
|
|
|
observ_source = CaseObservable(dataType="other", data=[source], message="source")
|
|
|
|
observ_last_seen = CaseObservable(dataType="other", data=[last_seen], message="last-seen")
|
|
|
|
|
|
|
|
res = HiveApi.create_case_observable(id,observ_sensor)
|
|
|
|
if res.status_code != 201:
|
|
|
|
print('ko: {}/{}'.format(res.status_code, res.text))
|
|
|
|
res = HiveApi.create_case_observable(id, observ_source)
|
|
|
|
if res.status_code != 201:
|
|
|
|
print('ko: {}/{}'.format(res.status_code, res.text))
|
|
|
|
res = HiveApi.create_case_observable(id, observ_file)
|
|
|
|
if res.status_code != 201:
|
|
|
|
print('ko: {}/{}'.format(res.status_code, res.text))
|
|
|
|
res = HiveApi.create_case_observable(id, observ_last_seen)
|
|
|
|
if res.status_code != 201:
|
|
|
|
print('ko: {}/{}'.format(res.status_code, res.text))
|
|
|
|
|
2018-06-18 17:16:22 +02:00
|
|
|
r_serv_metadata.set('hive_cases:'+path, id)
|
2018-06-18 13:58:31 +02:00
|
|
|
|
2018-06-14 16:51:06 +02:00
|
|
|
return hive_case_url.replace('id_here', id)
|
|
|
|
else:
|
|
|
|
print('ko: {}/{}'.format(response.status_code, response.text))
|
|
|
|
return False
|
|
|
|
|
2018-06-05 16:58:04 +02:00
|
|
|
# ============= ROUTES ==============
|
|
|
|
|
|
|
|
@PasteSubmit.route("/PasteSubmit/", methods=['GET'])
|
2019-05-02 17:31:14 +02:00
|
|
|
@login_required
|
2019-06-19 17:02:09 +02:00
|
|
|
@login_analyst
|
2018-06-05 16:58:04 +02:00
|
|
|
def PasteSubmit_page():
|
2019-07-25 17:26:32 +02:00
|
|
|
# Get all active tags/galaxy
|
2019-08-01 13:16:57 +02:00
|
|
|
active_taxonomies = Tag.get_active_taxonomies()
|
|
|
|
active_galaxies = Tag.get_active_galaxies()
|
2018-06-05 16:58:04 +02:00
|
|
|
|
2019-06-25 14:18:39 +02:00
|
|
|
return render_template("submit_items.html",
|
2018-06-05 16:58:04 +02:00
|
|
|
active_taxonomies = active_taxonomies,
|
|
|
|
active_galaxies = active_galaxies)
|
|
|
|
|
|
|
|
@PasteSubmit.route("/PasteSubmit/submit", methods=['POST'])
|
2019-05-02 17:31:14 +02:00
|
|
|
@login_required
|
2019-06-19 17:02:09 +02:00
|
|
|
@login_analyst
|
2018-06-05 16:58:04 +02:00
|
|
|
def submit():
|
|
|
|
|
2018-06-08 16:49:20 +02:00
|
|
|
#paste_name = request.form['paste_name']
|
|
|
|
|
|
|
|
password = request.form['password']
|
2018-06-05 16:58:04 +02:00
|
|
|
ltags = request.form['tags_taxonomies']
|
|
|
|
ltagsgalaxies = request.form['tags_galaxies']
|
|
|
|
paste_content = request.form['paste_content']
|
|
|
|
|
2019-06-05 16:18:30 +02:00
|
|
|
is_file = False
|
2019-06-05 16:41:59 +02:00
|
|
|
if 'file' in request.files:
|
|
|
|
file = request.files['file']
|
|
|
|
if file:
|
|
|
|
if file.filename:
|
|
|
|
is_file = True
|
2019-06-05 16:18:30 +02:00
|
|
|
|
2018-06-18 13:58:31 +02:00
|
|
|
submitted_tag = 'infoleak:submission="manual"'
|
|
|
|
|
2018-09-26 11:59:51 +02:00
|
|
|
#active taxonomies
|
2019-08-01 13:16:57 +02:00
|
|
|
active_taxonomies = Tag.get_active_taxonomies()
|
2018-09-26 11:59:51 +02:00
|
|
|
#active galaxies
|
2019-08-01 13:16:57 +02:00
|
|
|
active_galaxies = Tag.get_active_galaxies()
|
2018-09-26 11:59:51 +02:00
|
|
|
|
2018-06-06 10:05:25 +02:00
|
|
|
if ltags or ltagsgalaxies:
|
2019-07-25 17:26:32 +02:00
|
|
|
|
2019-12-02 17:15:48 +01:00
|
|
|
ltags = Tag.unpack_str_tags_list(ltags)
|
|
|
|
ltagsgalaxies = Tag.unpack_str_tags_list(ltagsgalaxies)
|
2019-07-26 14:28:02 +02:00
|
|
|
|
2019-12-02 17:15:48 +01:00
|
|
|
if not Tag.is_valid_tags_taxonomies_galaxy(ltags, ltagsgalaxies):
|
2018-06-20 10:02:26 +02:00
|
|
|
content = 'INVALID TAGS'
|
2019-06-05 16:31:35 +02:00
|
|
|
print(content)
|
2018-06-20 10:02:26 +02:00
|
|
|
return content, 400
|
2018-06-05 16:58:04 +02:00
|
|
|
|
2018-06-08 16:49:20 +02:00
|
|
|
# add submitted tags
|
2019-07-26 14:28:02 +02:00
|
|
|
if not ltags:
|
|
|
|
ltags = []
|
|
|
|
ltags.append(submitted_tag)
|
2018-06-08 16:49:20 +02:00
|
|
|
|
2019-06-05 16:18:30 +02:00
|
|
|
if is_file:
|
2018-06-08 16:49:20 +02:00
|
|
|
if file:
|
2018-06-05 16:58:04 +02:00
|
|
|
|
2018-06-08 16:49:20 +02:00
|
|
|
if file and allowed_file(file.filename):
|
2018-06-05 16:58:04 +02:00
|
|
|
|
2018-06-08 16:49:20 +02:00
|
|
|
# get UUID
|
|
|
|
UUID = str(uuid.uuid4())
|
2018-06-05 16:58:04 +02:00
|
|
|
|
2018-06-08 16:49:20 +02:00
|
|
|
'''if paste_name:
|
|
|
|
# clean file name
|
|
|
|
UUID = clean_filename(paste_name)'''
|
2018-06-05 16:58:04 +02:00
|
|
|
|
2018-06-19 11:31:30 +02:00
|
|
|
# create submitted dir
|
|
|
|
if not os.path.exists(UPLOAD_FOLDER):
|
|
|
|
os.makedirs(UPLOAD_FOLDER)
|
|
|
|
|
2018-06-08 16:49:20 +02:00
|
|
|
if not '.' in file.filename:
|
|
|
|
full_path = os.path.join(UPLOAD_FOLDER, UUID)
|
|
|
|
else:
|
|
|
|
if file.filename[-6:] == 'tar.gz':
|
|
|
|
file_type = 'tar.gz'
|
|
|
|
else:
|
|
|
|
file_type = file.filename.rsplit('.', 1)[1]
|
|
|
|
name = UUID + '.' + file_type
|
|
|
|
full_path = os.path.join(UPLOAD_FOLDER, name)
|
2018-06-06 10:05:25 +02:00
|
|
|
|
2018-06-08 16:49:20 +02:00
|
|
|
#Flask verify the file size
|
|
|
|
file.save(full_path)
|
2018-06-06 10:05:25 +02:00
|
|
|
|
2018-06-08 16:49:20 +02:00
|
|
|
paste_content = full_path
|
2018-06-06 10:05:25 +02:00
|
|
|
|
2019-07-25 17:26:32 +02:00
|
|
|
Import_helper.create_import_queue(ltags, ltagsgalaxies, paste_content, UUID, password ,True)
|
2018-06-06 10:05:25 +02:00
|
|
|
|
2019-06-25 14:11:30 +02:00
|
|
|
return render_template("submit_items.html",
|
2018-09-26 11:59:51 +02:00
|
|
|
active_taxonomies = active_taxonomies,
|
|
|
|
active_galaxies = active_galaxies,
|
2018-06-08 16:49:20 +02:00
|
|
|
UUID = UUID)
|
2018-06-06 10:05:25 +02:00
|
|
|
|
2018-06-08 16:49:20 +02:00
|
|
|
else:
|
2018-06-20 10:02:26 +02:00
|
|
|
content = 'wrong file type, allowed_extensions: sh, pdf, zip, gz, tar.gz or remove the extension'
|
2019-06-05 16:31:35 +02:00
|
|
|
print(content)
|
2018-06-20 10:02:26 +02:00
|
|
|
return content, 400
|
2018-06-06 10:05:25 +02:00
|
|
|
|
2018-06-05 16:58:04 +02:00
|
|
|
|
2018-06-18 17:16:22 +02:00
|
|
|
elif paste_content != '':
|
2018-06-08 16:49:20 +02:00
|
|
|
if sys.getsizeof(paste_content) < 900000:
|
2018-06-05 16:58:04 +02:00
|
|
|
|
2018-06-08 16:49:20 +02:00
|
|
|
# get id
|
|
|
|
UUID = str(uuid.uuid4())
|
2019-07-25 17:26:32 +02:00
|
|
|
Import_helper.create_import_queue(ltags, ltagsgalaxies, paste_content, UUID, password)
|
2018-06-08 16:49:20 +02:00
|
|
|
|
2019-06-25 14:11:30 +02:00
|
|
|
return render_template("submit_items.html",
|
2018-09-26 11:59:51 +02:00
|
|
|
active_taxonomies = active_taxonomies,
|
|
|
|
active_galaxies = active_galaxies,
|
2018-06-08 16:49:20 +02:00
|
|
|
UUID = UUID)
|
|
|
|
|
|
|
|
else:
|
2018-06-20 10:02:26 +02:00
|
|
|
content = 'size error'
|
2019-06-05 16:31:35 +02:00
|
|
|
print(content)
|
2018-06-20 10:02:26 +02:00
|
|
|
return content, 400
|
2018-06-08 16:49:20 +02:00
|
|
|
|
2018-06-20 10:02:26 +02:00
|
|
|
content = 'submit aborded'
|
2019-06-05 16:31:35 +02:00
|
|
|
print(content)
|
2018-06-20 10:02:26 +02:00
|
|
|
return content, 400
|
2018-06-08 16:49:20 +02:00
|
|
|
|
|
|
|
|
|
|
|
return PasteSubmit_page()
|
2018-06-05 16:58:04 +02:00
|
|
|
|
|
|
|
@PasteSubmit.route("/PasteSubmit/submit_status", methods=['GET'])
|
2019-05-02 17:31:14 +02:00
|
|
|
@login_required
|
2019-06-19 17:02:09 +02:00
|
|
|
@login_analyst
|
2018-06-05 16:58:04 +02:00
|
|
|
def submit_status():
|
2018-06-08 16:49:20 +02:00
|
|
|
UUID = request.args.get('UUID')
|
|
|
|
|
|
|
|
if UUID:
|
|
|
|
end = r_serv_log_submit.get(UUID + ':end')
|
|
|
|
nb_total = r_serv_log_submit.get(UUID + ':nb_total')
|
|
|
|
nb_end = r_serv_log_submit.get(UUID + ':nb_end')
|
|
|
|
error = r_serv_log_submit.get(UUID + ':error')
|
|
|
|
processing = r_serv_log_submit.get(UUID + ':processing')
|
|
|
|
nb_sucess = r_serv_log_submit.get(UUID + ':nb_sucess')
|
|
|
|
paste_submit_link = list(r_serv_log_submit.smembers(UUID + ':paste_submit_link'))
|
|
|
|
|
2019-07-26 14:28:02 +02:00
|
|
|
if (end != None) and (nb_total != None) and (nb_end != None) and (processing != None):
|
2018-06-08 16:49:20 +02:00
|
|
|
|
|
|
|
link = ''
|
|
|
|
if paste_submit_link:
|
|
|
|
for paste in paste_submit_link:
|
|
|
|
url = url_for('showsavedpastes.showsavedpaste') + '?paste=' + paste
|
|
|
|
link += '<a target="_blank" href="' + url + '" class="list-group-item">' + paste +'</a>'
|
|
|
|
|
|
|
|
if nb_total == '-1':
|
|
|
|
in_progress = nb_sucess + ' / '
|
|
|
|
else:
|
|
|
|
in_progress = nb_sucess + ' / ' + nb_total
|
2018-06-05 16:58:04 +02:00
|
|
|
|
2018-06-08 16:49:20 +02:00
|
|
|
if int(nb_total) != 0:
|
|
|
|
prog = int(int(nb_end) * 100 / int(nb_total))
|
|
|
|
else:
|
|
|
|
prog = 0
|
2018-06-05 16:58:04 +02:00
|
|
|
|
2019-07-25 17:26:32 +02:00
|
|
|
if error:
|
2018-06-05 16:58:04 +02:00
|
|
|
isError = True
|
2019-07-25 17:26:32 +02:00
|
|
|
else:
|
|
|
|
isError = False
|
2018-06-05 16:58:04 +02:00
|
|
|
|
|
|
|
if end == '0':
|
|
|
|
end = False
|
|
|
|
else:
|
|
|
|
end = True
|
|
|
|
|
2018-06-08 16:49:20 +02:00
|
|
|
if processing == '0':
|
|
|
|
processing = False
|
|
|
|
else:
|
|
|
|
processing = True
|
|
|
|
|
2018-06-05 16:58:04 +02:00
|
|
|
return jsonify(end=end,
|
|
|
|
in_progress=in_progress,
|
|
|
|
prog=prog,
|
2018-06-08 16:49:20 +02:00
|
|
|
link=link,
|
|
|
|
processing=processing,
|
2018-06-05 16:58:04 +02:00
|
|
|
isError=isError,
|
|
|
|
error=error)
|
|
|
|
else:
|
2018-06-08 16:49:20 +02:00
|
|
|
# FIXME TODO
|
|
|
|
print(end)
|
|
|
|
print(nb_total)
|
|
|
|
print(nb_end)
|
|
|
|
print(error)
|
|
|
|
print(processing)
|
|
|
|
print(nb_sucess)
|
2018-06-05 16:58:04 +02:00
|
|
|
return 'to do'
|
|
|
|
else:
|
2018-06-08 16:49:20 +02:00
|
|
|
return 'INVALID UUID'
|
2018-06-05 16:58:04 +02:00
|
|
|
|
2018-06-14 16:51:06 +02:00
|
|
|
|
|
|
|
@PasteSubmit.route("/PasteSubmit/create_misp_event", methods=['POST'])
|
2019-05-02 17:31:14 +02:00
|
|
|
@login_required
|
2019-06-19 17:02:09 +02:00
|
|
|
@login_analyst
|
2018-06-14 16:51:06 +02:00
|
|
|
def create_misp_event():
|
|
|
|
|
|
|
|
distribution = int(request.form['misp_data[Event][distribution]'])
|
|
|
|
threat_level_id = int(request.form['misp_data[Event][threat_level_id]'])
|
|
|
|
analysis = int(request.form['misp_data[Event][analysis]'])
|
|
|
|
info = request.form['misp_data[Event][info]']
|
|
|
|
path = request.form['paste']
|
2018-06-18 13:58:31 +02:00
|
|
|
publish = request.form.get('misp_publish')
|
2018-06-14 16:51:06 +02:00
|
|
|
|
|
|
|
#verify input
|
|
|
|
if (0 <= distribution <= 3) and (1 <= threat_level_id <= 4) and (0 <= analysis <= 2):
|
|
|
|
|
|
|
|
l_tags = list(r_serv_metadata.smembers('tag:'+path))
|
2018-06-18 13:58:31 +02:00
|
|
|
event = misp_create_event(distribution, threat_level_id, analysis, info, l_tags, publish, path)
|
2018-06-14 16:51:06 +02:00
|
|
|
|
2018-06-15 17:25:43 +02:00
|
|
|
if event != False:
|
|
|
|
return redirect(event)
|
|
|
|
else:
|
2018-06-19 13:43:26 +02:00
|
|
|
return 'error, event creation'
|
2018-06-18 17:16:22 +02:00
|
|
|
return 'error0'
|
2018-06-14 16:51:06 +02:00
|
|
|
|
|
|
|
@PasteSubmit.route("/PasteSubmit/create_hive_case", methods=['POST'])
|
2019-05-02 17:31:14 +02:00
|
|
|
@login_required
|
2019-06-19 17:02:09 +02:00
|
|
|
@login_analyst
|
2018-06-14 16:51:06 +02:00
|
|
|
def create_hive_case():
|
|
|
|
|
|
|
|
hive_tlp = int(request.form['hive_tlp'])
|
|
|
|
threat_level = int(request.form['threat_level_hive'])
|
|
|
|
hive_description = request.form['hive_description']
|
|
|
|
hive_case_title = request.form['hive_case_title']
|
|
|
|
path = request.form['paste']
|
|
|
|
|
|
|
|
#verify input
|
|
|
|
if (0 <= hive_tlp <= 3) and (1 <= threat_level <= 4):
|
|
|
|
|
|
|
|
l_tags = list(r_serv_metadata.smembers('tag:'+path))
|
|
|
|
case = hive_create_case(hive_tlp, threat_level, hive_description, hive_case_title, l_tags, path)
|
|
|
|
|
2018-06-15 17:25:43 +02:00
|
|
|
if case != False:
|
|
|
|
return redirect(case)
|
|
|
|
else:
|
|
|
|
return 'error'
|
|
|
|
|
|
|
|
return 'error'
|
|
|
|
|
|
|
|
@PasteSubmit.route("/PasteSubmit/edit_tag_export")
|
2019-05-02 17:31:14 +02:00
|
|
|
@login_required
|
2019-06-19 17:02:09 +02:00
|
|
|
@login_analyst
|
2018-06-15 17:25:43 +02:00
|
|
|
def edit_tag_export():
|
|
|
|
misp_auto_events = r_serv_db.get('misp:auto-events')
|
|
|
|
hive_auto_alerts = r_serv_db.get('hive:auto-alerts')
|
|
|
|
|
|
|
|
whitelist_misp = r_serv_db.scard('whitelist_misp')
|
|
|
|
whitelist_hive = r_serv_db.scard('whitelist_hive')
|
2018-06-14 16:51:06 +02:00
|
|
|
|
2018-06-15 17:25:43 +02:00
|
|
|
list_export_tags = list(r_serv_db.smembers('list_export_tags'))
|
|
|
|
status_misp = []
|
|
|
|
status_hive = []
|
|
|
|
|
2018-11-06 16:08:58 +01:00
|
|
|
infoleak_tags = Taxonomies().get('infoleak').machinetags()
|
|
|
|
is_infoleak_tag = []
|
2018-06-18 13:58:31 +02:00
|
|
|
|
|
|
|
for tag in list_export_tags:
|
|
|
|
if r_serv_db.sismember('whitelist_misp', tag):
|
2018-06-15 17:25:43 +02:00
|
|
|
status_misp.append(True)
|
2018-06-18 13:58:31 +02:00
|
|
|
else:
|
|
|
|
status_misp.append(False)
|
2018-06-15 17:25:43 +02:00
|
|
|
|
2018-07-24 14:46:35 +02:00
|
|
|
for tag in list_export_tags:
|
|
|
|
if r_serv_db.sismember('whitelist_hive', tag):
|
2018-06-15 17:25:43 +02:00
|
|
|
status_hive.append(True)
|
2018-07-24 14:46:35 +02:00
|
|
|
else:
|
|
|
|
status_hive.append(False)
|
2018-06-19 11:54:34 +02:00
|
|
|
|
2018-11-06 16:08:58 +01:00
|
|
|
if tag in infoleak_tags:
|
|
|
|
is_infoleak_tag.append(True)
|
|
|
|
else:
|
|
|
|
is_infoleak_tag.append(False)
|
|
|
|
|
2018-07-24 14:46:35 +02:00
|
|
|
if misp_auto_events is not None:
|
2018-06-19 11:54:34 +02:00
|
|
|
if int(misp_auto_events) == 1:
|
|
|
|
misp_active = True
|
|
|
|
else:
|
|
|
|
misp_active = False
|
2018-07-24 14:46:35 +02:00
|
|
|
else:
|
|
|
|
misp_active = False
|
|
|
|
|
|
|
|
if hive_auto_alerts is not None:
|
2018-06-19 11:54:34 +02:00
|
|
|
if int(hive_auto_alerts) == 1:
|
|
|
|
hive_active = True
|
|
|
|
else:
|
|
|
|
hive_active = False
|
2018-06-15 17:25:43 +02:00
|
|
|
else:
|
|
|
|
hive_active = False
|
2018-06-18 13:58:31 +02:00
|
|
|
|
|
|
|
nb_tags = str(r_serv_db.scard('list_export_tags'))
|
|
|
|
nb_tags_whitelist_misp = str(r_serv_db.scard('whitelist_misp')) + ' / ' + nb_tags
|
|
|
|
nb_tags_whitelist_hive = str(r_serv_db.scard('whitelist_hive')) + ' / ' + nb_tags
|
|
|
|
|
2018-06-15 17:25:43 +02:00
|
|
|
return render_template("edit_tag_export.html",
|
|
|
|
misp_active=misp_active,
|
|
|
|
hive_active=hive_active,
|
|
|
|
list_export_tags=list_export_tags,
|
2018-11-06 16:08:58 +01:00
|
|
|
is_infoleak_tag=is_infoleak_tag,
|
2018-06-15 17:25:43 +02:00
|
|
|
status_misp=status_misp,
|
2018-06-18 13:58:31 +02:00
|
|
|
status_hive=status_hive,
|
|
|
|
nb_tags_whitelist_misp=nb_tags_whitelist_misp,
|
2018-06-19 11:31:30 +02:00
|
|
|
nb_tags_whitelist_hive=nb_tags_whitelist_hive,
|
|
|
|
flag_misp=flag_misp,
|
|
|
|
flag_hive=flag_hive)
|
2018-06-15 17:25:43 +02:00
|
|
|
|
|
|
|
@PasteSubmit.route("/PasteSubmit/tag_export_edited", methods=['POST'])
|
2019-05-02 17:31:14 +02:00
|
|
|
@login_required
|
2019-06-19 17:02:09 +02:00
|
|
|
@login_analyst
|
2018-06-15 17:25:43 +02:00
|
|
|
def tag_export_edited():
|
|
|
|
tag_enabled_misp = request.form.getlist('tag_enabled_misp')
|
|
|
|
tag_enabled_hive = request.form.getlist('tag_enabled_hive')
|
|
|
|
|
|
|
|
list_export_tags = list(r_serv_db.smembers('list_export_tags'))
|
|
|
|
|
|
|
|
r_serv_db.delete('whitelist_misp')
|
|
|
|
r_serv_db.delete('whitelist_hive')
|
|
|
|
|
|
|
|
for tag in tag_enabled_misp:
|
|
|
|
if r_serv_db.sismember('list_export_tags', tag):
|
|
|
|
r_serv_db.sadd('whitelist_misp', tag)
|
|
|
|
else:
|
|
|
|
return 'invalid input'
|
|
|
|
|
|
|
|
for tag in tag_enabled_hive:
|
|
|
|
if r_serv_db.sismember('list_export_tags', tag):
|
|
|
|
r_serv_db.sadd('whitelist_hive', tag)
|
|
|
|
else:
|
|
|
|
return 'invalid input'
|
2018-06-18 13:58:31 +02:00
|
|
|
|
2018-06-15 17:25:43 +02:00
|
|
|
return redirect(url_for('PasteSubmit.edit_tag_export'))
|
|
|
|
|
|
|
|
@PasteSubmit.route("/PasteSubmit/enable_misp_auto_event")
|
2019-05-02 17:31:14 +02:00
|
|
|
@login_required
|
2019-06-19 17:02:09 +02:00
|
|
|
@login_analyst
|
2018-06-15 17:25:43 +02:00
|
|
|
def enable_misp_auto_event():
|
|
|
|
r_serv_db.set('misp:auto-events', 1)
|
|
|
|
return edit_tag_export()
|
|
|
|
|
|
|
|
@PasteSubmit.route("/PasteSubmit/disable_misp_auto_event")
|
2019-05-02 17:31:14 +02:00
|
|
|
@login_required
|
2019-06-19 17:02:09 +02:00
|
|
|
@login_analyst
|
2018-06-15 17:25:43 +02:00
|
|
|
def disable_misp_auto_event():
|
|
|
|
r_serv_db.set('misp:auto-events', 0)
|
|
|
|
return edit_tag_export()
|
|
|
|
|
|
|
|
@PasteSubmit.route("/PasteSubmit/enable_hive_auto_alert")
|
2019-05-02 17:31:14 +02:00
|
|
|
@login_required
|
2019-06-19 17:02:09 +02:00
|
|
|
@login_analyst
|
2018-06-15 17:25:43 +02:00
|
|
|
def enable_hive_auto_alert():
|
|
|
|
r_serv_db.set('hive:auto-alerts', 1)
|
|
|
|
return edit_tag_export()
|
|
|
|
|
|
|
|
@PasteSubmit.route("/PasteSubmit/disable_hive_auto_alert")
|
2019-05-02 17:31:14 +02:00
|
|
|
@login_required
|
2019-06-19 17:02:09 +02:00
|
|
|
@login_analyst
|
2018-06-15 17:25:43 +02:00
|
|
|
def disable_hive_auto_alert():
|
|
|
|
r_serv_db.set('hive:auto-alerts', 0)
|
|
|
|
return edit_tag_export()
|
2018-06-14 16:51:06 +02:00
|
|
|
|
2018-11-07 09:41:58 +01:00
|
|
|
@PasteSubmit.route("/PasteSubmit/add_push_tag")
|
2019-05-02 17:31:14 +02:00
|
|
|
@login_required
|
2019-06-19 17:02:09 +02:00
|
|
|
@login_analyst
|
2018-11-07 09:41:58 +01:00
|
|
|
def add_push_tag():
|
|
|
|
tag = request.args.get('tag')
|
2018-11-07 11:42:31 +01:00
|
|
|
if tag is not None:
|
2018-11-07 10:17:57 +01:00
|
|
|
|
2018-11-07 11:42:31 +01:00
|
|
|
#limit tag length
|
|
|
|
if len(tag) > 49:
|
|
|
|
tag = tag[0:48]
|
2018-11-07 09:41:58 +01:00
|
|
|
|
2018-11-07 11:42:31 +01:00
|
|
|
r_serv_db.sadd('list_export_tags', tag)
|
|
|
|
|
|
|
|
to_return = {}
|
|
|
|
to_return["tag"] = tag
|
|
|
|
return jsonify(to_return)
|
|
|
|
else:
|
|
|
|
return 'None args', 400
|
2018-11-07 09:41:58 +01:00
|
|
|
|
2018-11-06 16:08:58 +01:00
|
|
|
@PasteSubmit.route("/PasteSubmit/delete_push_tag")
|
2019-05-02 17:31:14 +02:00
|
|
|
@login_required
|
2019-06-19 17:02:09 +02:00
|
|
|
@login_analyst
|
2018-11-06 16:08:58 +01:00
|
|
|
def delete_push_tag():
|
|
|
|
tag = request.args.get('tag')
|
|
|
|
|
|
|
|
infoleak_tags = Taxonomies().get('infoleak').machinetags()
|
|
|
|
if tag not in infoleak_tags and r_serv_db.sismember('list_export_tags', tag):
|
|
|
|
r_serv_db.srem('list_export_tags', tag)
|
2018-11-07 09:41:58 +01:00
|
|
|
r_serv_db.srem('whitelist_misp', tag)
|
|
|
|
r_serv_db.srem('whitelist_hive', tag)
|
2018-11-06 16:08:58 +01:00
|
|
|
to_return = {}
|
|
|
|
to_return["tag"] = tag
|
|
|
|
return jsonify(to_return)
|
|
|
|
else:
|
|
|
|
return 'this tag can\'t be removed', 400
|
|
|
|
|
2018-06-05 16:58:04 +02:00
|
|
|
# ========= REGISTRATION =========
|
2018-09-20 10:38:19 +02:00
|
|
|
app.register_blueprint(PasteSubmit, url_prefix=baseUrl)
|