2018-05-04 13:53:29 +02:00
|
|
|
#!/usr/bin/env python3
|
2014-08-06 11:43:40 +02:00
|
|
|
# -*-coding:UTF-8 -*
|
|
|
|
|
2019-06-19 15:00:25 +02:00
|
|
|
import os
|
|
|
|
import sys
|
2019-06-24 13:43:16 +02:00
|
|
|
import ssl
|
2019-07-31 13:24:43 +02:00
|
|
|
import json
|
2019-06-24 13:43:16 +02:00
|
|
|
import time
|
2020-04-06 11:22:31 +02:00
|
|
|
import uuid
|
2019-06-19 15:00:25 +02:00
|
|
|
|
2014-08-14 17:55:18 +02:00
|
|
|
import redis
|
2019-05-02 17:31:14 +02:00
|
|
|
import random
|
2019-06-26 16:36:40 +02:00
|
|
|
import logging
|
|
|
|
import logging.handlers
|
2019-06-24 13:43:16 +02:00
|
|
|
|
2019-07-31 13:24:43 +02:00
|
|
|
from flask import Flask, render_template, jsonify, request, Request, Response, session, redirect, url_for
|
2019-05-02 17:31:14 +02:00
|
|
|
from flask_login import LoginManager, current_user, login_user, logout_user, login_required
|
|
|
|
|
2014-08-06 11:43:40 +02:00
|
|
|
import flask
|
2017-04-19 11:02:03 +02:00
|
|
|
import importlib
|
|
|
|
from os.path import join
|
2019-11-18 09:46:15 +01:00
|
|
|
|
|
|
|
# # TODO: put me in lib/Tag
|
|
|
|
from pytaxonomies import Taxonomies
|
|
|
|
|
2016-07-05 16:53:03 +02:00
|
|
|
sys.path.append(os.path.join(os.environ['AIL_BIN'], 'packages/'))
|
2019-11-18 09:46:15 +01:00
|
|
|
import Tag
|
|
|
|
|
2017-04-19 11:02:03 +02:00
|
|
|
sys.path.append('./modules/')
|
2014-12-24 15:42:20 +01:00
|
|
|
|
2019-05-02 17:31:14 +02:00
|
|
|
from User import User
|
|
|
|
|
2019-10-28 13:48:43 +01:00
|
|
|
sys.path.append(os.path.join(os.environ['AIL_BIN'], 'lib/'))
|
|
|
|
import ConfigLoader
|
|
|
|
|
2016-12-09 08:46:37 +01:00
|
|
|
# Import config
|
|
|
|
import Flask_config
|
2016-08-19 13:34:02 +02:00
|
|
|
|
2019-09-25 08:58:18 +02:00
|
|
|
# Import Blueprint
|
|
|
|
from blueprints.root import root
|
2019-10-28 13:48:43 +01:00
|
|
|
from blueprints.crawler_splash import crawler_splash
|
2019-11-14 17:05:58 +01:00
|
|
|
from blueprints.correlation import correlation
|
2020-01-07 16:14:56 +01:00
|
|
|
from blueprints.tags_ui import tags_ui
|
2020-02-17 10:52:25 +01:00
|
|
|
from blueprints.import_export import import_export
|
2020-10-13 16:02:30 +02:00
|
|
|
from blueprints.objects_item import objects_item
|
2021-07-14 13:58:00 +02:00
|
|
|
from blueprints.hunters import hunters
|
2020-10-13 16:02:30 +02:00
|
|
|
from blueprints.old_endpoints import old_endpoints
|
2020-01-07 16:14:56 +01:00
|
|
|
|
2019-06-19 15:00:25 +02:00
|
|
|
|
2019-07-30 13:49:21 +02:00
|
|
|
Flask_dir = os.environ['AIL_FLASK']
|
|
|
|
|
2016-12-09 08:46:37 +01:00
|
|
|
# CONFIG #
|
2019-10-28 13:48:43 +01:00
|
|
|
config_loader = ConfigLoader.ConfigLoader()
|
|
|
|
baseUrl = config_loader.get_config_str("Flask", "baseurl")
|
2020-07-06 17:13:36 +02:00
|
|
|
host = config_loader.get_config_str("Flask", "host")
|
2018-09-20 10:38:19 +02:00
|
|
|
baseUrl = baseUrl.replace('/', '')
|
|
|
|
if baseUrl != '':
|
|
|
|
baseUrl = '/'+baseUrl
|
2016-08-24 18:00:05 +02:00
|
|
|
|
2020-01-21 11:39:08 +01:00
|
|
|
try:
|
|
|
|
FLASK_PORT = config_loader.get_config_int("Flask", "port")
|
|
|
|
except Exception:
|
|
|
|
FLASK_PORT = 7000
|
|
|
|
|
2019-05-03 16:52:05 +02:00
|
|
|
# ========= REDIS =========#
|
2019-10-28 13:48:43 +01:00
|
|
|
r_serv_db = config_loader.get_redis_conn("ARDB_DB")
|
|
|
|
r_serv_tags = config_loader.get_redis_conn("ARDB_Tags")
|
|
|
|
r_cache = config_loader.get_redis_conn("Redis_Cache")
|
2019-06-26 16:36:40 +02:00
|
|
|
|
|
|
|
# logs
|
|
|
|
log_dir = os.path.join(os.environ['AIL_HOME'], 'logs')
|
|
|
|
if not os.path.isdir(log_dir):
|
|
|
|
os.makedirs(logs_dir)
|
|
|
|
|
2019-07-25 17:26:32 +02:00
|
|
|
# log_filename = os.path.join(log_dir, 'flask_server.logs')
|
|
|
|
# logger = logging.getLogger()
|
|
|
|
# formatter = logging.Formatter('%(asctime)s - %(levelname)s - %(message)s')
|
|
|
|
# handler_log = logging.handlers.TimedRotatingFileHandler(log_filename, when="midnight", interval=1)
|
|
|
|
# handler_log.suffix = '%Y-%m-%d.log'
|
|
|
|
# handler_log.setFormatter(formatter)
|
|
|
|
# handler_log.setLevel(30)
|
|
|
|
# logger.addHandler(handler_log)
|
|
|
|
# logger.setLevel(30)
|
2019-06-26 16:36:40 +02:00
|
|
|
|
2019-05-03 16:52:05 +02:00
|
|
|
# ========= =========#
|
|
|
|
|
2019-06-24 13:43:16 +02:00
|
|
|
# ========= TLS =========#
|
|
|
|
ssl_context = ssl.SSLContext(ssl.PROTOCOL_TLSv1_2)
|
2019-07-30 13:49:21 +02:00
|
|
|
ssl_context.load_cert_chain(certfile=os.path.join(Flask_dir, 'server.crt'), keyfile=os.path.join(Flask_dir, 'server.key'))
|
2019-06-24 13:43:16 +02:00
|
|
|
#print(ssl_context.get_ciphers())
|
|
|
|
# ========= =========#
|
|
|
|
|
2018-09-20 10:38:19 +02:00
|
|
|
Flask_config.app = Flask(__name__, static_url_path=baseUrl+'/static/')
|
2016-12-09 08:46:37 +01:00
|
|
|
app = Flask_config.app
|
2018-06-08 16:49:20 +02:00
|
|
|
app.config['MAX_CONTENT_LENGTH'] = 900 * 1024 * 1024
|
2014-08-26 17:33:28 +02:00
|
|
|
|
2019-09-25 08:58:18 +02:00
|
|
|
# ========= BLUEPRINT =========#
|
|
|
|
app.register_blueprint(root, url_prefix=baseUrl)
|
2019-10-28 13:48:43 +01:00
|
|
|
app.register_blueprint(crawler_splash, url_prefix=baseUrl)
|
2019-11-14 17:05:58 +01:00
|
|
|
app.register_blueprint(correlation, url_prefix=baseUrl)
|
2020-01-07 16:14:56 +01:00
|
|
|
app.register_blueprint(tags_ui, url_prefix=baseUrl)
|
2020-02-17 10:52:25 +01:00
|
|
|
app.register_blueprint(import_export, url_prefix=baseUrl)
|
2020-10-13 16:02:30 +02:00
|
|
|
app.register_blueprint(objects_item, url_prefix=baseUrl)
|
2021-07-14 13:58:00 +02:00
|
|
|
app.register_blueprint(hunters, url_prefix=baseUrl)
|
2020-10-13 16:02:30 +02:00
|
|
|
app.register_blueprint(old_endpoints, url_prefix=baseUrl)
|
2019-09-25 08:58:18 +02:00
|
|
|
# ========= =========#
|
|
|
|
|
2020-01-21 11:39:08 +01:00
|
|
|
# ========= Cookie name ========
|
2020-04-06 11:22:31 +02:00
|
|
|
app.config.update(SESSION_COOKIE_NAME='ail_framework_{}'.format(uuid.uuid4().int))
|
2020-01-21 11:39:08 +01:00
|
|
|
|
2019-05-02 17:31:14 +02:00
|
|
|
# ========= session ========
|
|
|
|
app.secret_key = str(random.getrandbits(256))
|
|
|
|
login_manager = LoginManager()
|
2019-09-25 08:58:18 +02:00
|
|
|
login_manager.login_view = 'root.login'
|
2019-05-02 17:31:14 +02:00
|
|
|
login_manager.init_app(app)
|
|
|
|
|
2019-09-25 08:58:18 +02:00
|
|
|
print()
|
|
|
|
|
2019-05-02 17:31:14 +02:00
|
|
|
# ========= LOGIN MANAGER ========
|
|
|
|
|
|
|
|
@login_manager.user_loader
|
|
|
|
def load_user(user_id):
|
|
|
|
return User.get(user_id)
|
|
|
|
|
2019-09-25 08:58:18 +02:00
|
|
|
# ========= HEADER GENERATION ======== DEPRECATED
|
2017-04-25 12:18:08 +02:00
|
|
|
|
|
|
|
# Get headers items that should be ignored (not displayed)
|
|
|
|
toIgnoreModule = set()
|
|
|
|
try:
|
|
|
|
with open('templates/ignored_modules.txt', 'r') as f:
|
|
|
|
lines = f.read().splitlines()
|
|
|
|
for line in lines:
|
|
|
|
toIgnoreModule.add(line)
|
|
|
|
|
|
|
|
except IOError:
|
2019-08-05 16:31:03 +02:00
|
|
|
pass
|
2017-04-25 12:18:08 +02:00
|
|
|
|
2017-04-19 15:14:20 +02:00
|
|
|
# Dynamically import routes and functions from modules
|
|
|
|
# Also, prepare header.html
|
|
|
|
to_add_to_header_dico = {}
|
2019-07-30 13:49:21 +02:00
|
|
|
for root, dirs, files in os.walk(os.path.join(Flask_dir, 'modules')):
|
2017-04-19 15:14:20 +02:00
|
|
|
sys.path.append(join(root))
|
2017-04-25 12:18:08 +02:00
|
|
|
|
|
|
|
# Ignore the module
|
|
|
|
curr_dir = root.split('/')[1]
|
|
|
|
if curr_dir in toIgnoreModule:
|
|
|
|
continue
|
|
|
|
|
2017-04-19 15:14:20 +02:00
|
|
|
for name in files:
|
|
|
|
module_name = root.split('/')[-2]
|
|
|
|
if name.startswith('Flask_') and name.endswith('.py'):
|
|
|
|
if name == 'Flask_config.py':
|
|
|
|
continue
|
|
|
|
name = name.strip('.py')
|
|
|
|
#print('importing {}'.format(name))
|
|
|
|
importlib.import_module(name)
|
|
|
|
elif name == 'header_{}.html'.format(module_name):
|
|
|
|
with open(join(root, name), 'r') as f:
|
|
|
|
to_add_to_header_dico[module_name] = f.read()
|
2014-08-26 17:33:28 +02:00
|
|
|
|
2017-04-19 15:14:20 +02:00
|
|
|
#create header.html
|
|
|
|
complete_header = ""
|
2019-07-30 13:49:21 +02:00
|
|
|
with open(os.path.join(Flask_dir, 'templates', 'header_base.html'), 'r') as f:
|
2017-04-19 15:14:20 +02:00
|
|
|
complete_header = f.read()
|
|
|
|
modified_header = complete_header
|
|
|
|
|
|
|
|
#Add the header in the supplied order
|
2018-04-17 16:06:32 +02:00
|
|
|
for module_name, txt in list(to_add_to_header_dico.items()):
|
2017-04-19 15:14:20 +02:00
|
|
|
to_replace = '<!--{}-->'.format(module_name)
|
|
|
|
if to_replace in complete_header:
|
|
|
|
modified_header = modified_header.replace(to_replace, txt)
|
|
|
|
del to_add_to_header_dico[module_name]
|
|
|
|
|
|
|
|
#Add the header for no-supplied order
|
|
|
|
to_add_to_header = []
|
|
|
|
for module_name, txt in to_add_to_header_dico.items():
|
|
|
|
to_add_to_header.append(txt)
|
|
|
|
|
|
|
|
modified_header = modified_header.replace('<!--insert here-->', '\n'.join(to_add_to_header))
|
|
|
|
|
|
|
|
#Write the header.html file
|
2019-07-30 13:49:21 +02:00
|
|
|
with open(os.path.join(Flask_dir, 'templates', 'header.html'), 'w') as f:
|
2017-04-19 15:14:20 +02:00
|
|
|
f.write(modified_header)
|
|
|
|
|
|
|
|
# ========= JINJA2 FUNCTIONS ========
|
2016-07-05 16:53:03 +02:00
|
|
|
def list_len(s):
|
|
|
|
return len(s)
|
|
|
|
app.jinja_env.filters['list_len'] = list_len
|
|
|
|
|
2016-08-04 11:55:38 +02:00
|
|
|
|
2016-08-09 11:59:36 +02:00
|
|
|
# ========= CACHE CONTROL ========
|
|
|
|
@app.after_request
|
|
|
|
def add_header(response):
|
|
|
|
"""
|
|
|
|
Add headers to both force latest IE rendering engine or Chrome Frame,
|
|
|
|
and also to cache the rendered page for 10 minutes.
|
|
|
|
"""
|
|
|
|
response.headers['X-UA-Compatible'] = 'IE=Edge,chrome=1'
|
2019-09-03 11:58:34 +02:00
|
|
|
if 'Cache-Control' not in response.headers:
|
|
|
|
response.headers['Cache-Control'] = 'private, max-age=0'
|
2016-08-09 11:59:36 +02:00
|
|
|
return response
|
2016-07-21 13:44:22 +02:00
|
|
|
|
2017-04-19 15:14:20 +02:00
|
|
|
# ========== ROUTES ============
|
2019-06-06 21:27:13 +02:00
|
|
|
|
2019-09-25 08:58:18 +02:00
|
|
|
#@app.route('/endpoints')
|
|
|
|
#def endpoints():
|
|
|
|
# for rule in app.url_map.iter_rules():
|
|
|
|
# str_endpoint = str(rule)
|
|
|
|
# if len(str_endpoint)>5:
|
|
|
|
# if str_endpoint[0:5]=='/api/': ## add baseUrl ???
|
|
|
|
# print(str_endpoint)
|
|
|
|
# #print(rule.endpoint) #internal endpoint name
|
|
|
|
# #print(rule.methods)
|
|
|
|
# return 'ok'
|
2017-04-19 15:14:20 +02:00
|
|
|
|
2019-06-20 10:11:23 +02:00
|
|
|
# ========== ERROR HANDLER ============
|
|
|
|
|
2019-07-31 13:24:43 +02:00
|
|
|
@app.errorhandler(405)
|
|
|
|
def _handle_client_error(e):
|
2019-10-28 13:48:43 +01:00
|
|
|
if request.path.startswith('/api/'): ## # TODO: add baseUrl
|
2019-08-06 11:29:12 +02:00
|
|
|
res_dict = {"status": "error", "reason": "Method Not Allowed: The method is not allowed for the requested URL"}
|
|
|
|
anchor_id = request.path[8:]
|
|
|
|
anchor_id = anchor_id.replace('/', '_')
|
2020-04-20 17:50:40 +02:00
|
|
|
api_doc_url = 'https://github.com/ail-project/ail-framework/tree/master/doc#{}'.format(anchor_id)
|
2019-08-06 11:29:12 +02:00
|
|
|
res_dict['documentation'] = api_doc_url
|
|
|
|
return Response(json.dumps(res_dict, indent=2, sort_keys=True), mimetype='application/json'), 405
|
2019-07-31 13:24:43 +02:00
|
|
|
else:
|
|
|
|
return e
|
|
|
|
|
2019-06-20 10:11:23 +02:00
|
|
|
@app.errorhandler(404)
|
2019-07-31 13:24:43 +02:00
|
|
|
def error_page_not_found(e):
|
2019-09-25 08:58:18 +02:00
|
|
|
if request.path.startswith('/api/'): ## # TODO: add baseUrl
|
2019-07-31 13:24:43 +02:00
|
|
|
return Response(json.dumps({"status": "error", "reason": "404 Not Found"}, indent=2, sort_keys=True), mimetype='application/json'), 404
|
|
|
|
else:
|
|
|
|
# avoid endpoint enumeration
|
|
|
|
return page_not_found(e)
|
|
|
|
|
2019-06-20 10:11:23 +02:00
|
|
|
@login_required
|
|
|
|
def page_not_found(e):
|
2019-06-20 10:56:31 +02:00
|
|
|
# avoid endpoint enumeration
|
2019-06-20 10:11:23 +02:00
|
|
|
return render_template('error/404.html'), 404
|
2017-04-19 15:14:20 +02:00
|
|
|
|
2018-05-23 16:58:56 +02:00
|
|
|
# ========== INITIAL taxonomies ============
|
2019-11-18 09:46:15 +01:00
|
|
|
default_taxonomies = ["infoleak", "gdpr", "fpf", "dark-web"]
|
|
|
|
|
|
|
|
# enable default taxonomies
|
|
|
|
for taxo in default_taxonomies:
|
|
|
|
Tag.enable_taxonomy(taxo)
|
2018-05-23 16:58:56 +02:00
|
|
|
|
2018-06-15 17:25:43 +02:00
|
|
|
# ========== INITIAL tags auto export ============
|
2019-11-18 09:46:15 +01:00
|
|
|
taxonomies = Taxonomies()
|
|
|
|
|
2018-06-15 17:25:43 +02:00
|
|
|
infoleak_tags = taxonomies.get('infoleak').machinetags()
|
|
|
|
infoleak_automatic_tags = []
|
|
|
|
for tag in taxonomies.get('infoleak').machinetags():
|
|
|
|
if tag.split('=')[0][:] == 'infoleak:automatic-detection':
|
|
|
|
r_serv_db.sadd('list_export_tags', tag)
|
|
|
|
|
2018-06-19 16:39:49 +02:00
|
|
|
r_serv_db.sadd('list_export_tags', 'infoleak:submission="manual"')
|
2016-12-09 08:46:37 +01:00
|
|
|
# ============ MAIN ============
|
2016-07-08 10:19:24 +02:00
|
|
|
|
2014-08-06 11:43:40 +02:00
|
|
|
if __name__ == "__main__":
|
2020-07-06 17:13:36 +02:00
|
|
|
app.run(host=host, port=FLASK_PORT, threaded=True, ssl_context=ssl_context)
|