2022-03-07 15:12:01 +01:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
# -*-coding:UTF-8 -*
|
|
|
|
|
|
|
|
import os
|
|
|
|
import sys
|
|
|
|
import redis
|
|
|
|
|
2022-03-08 10:44:41 +01:00
|
|
|
from flask import url_for
|
2022-03-07 15:12:01 +01:00
|
|
|
|
2022-07-08 09:47:47 +02:00
|
|
|
sys.path.append(os.environ['AIL_BIN'])
|
|
|
|
from lib.ConfigLoader import ConfigLoader
|
|
|
|
from lib.objects import abstract_object
|
2022-03-07 15:12:01 +01:00
|
|
|
|
2022-07-08 09:47:47 +02:00
|
|
|
config_loader = ConfigLoader()
|
2022-03-07 15:12:01 +01:00
|
|
|
|
2022-07-08 09:47:47 +02:00
|
|
|
config_loader = None
|
2022-03-07 15:12:01 +01:00
|
|
|
|
2022-07-08 09:47:47 +02:00
|
|
|
class CryptoCurrency(abstract_object.AbstractObject):
|
2022-03-07 15:12:01 +01:00
|
|
|
"""
|
|
|
|
AIL CryptoCurrency Object. (strings)
|
|
|
|
"""
|
|
|
|
|
|
|
|
def __init__(self, id, subtype):
|
|
|
|
super(CryptoCurrency, self).__init__('cryptocurrency', id, subtype=subtype)
|
|
|
|
|
|
|
|
# def get_ail_2_ail_payload(self):
|
|
|
|
# payload = {'raw': self.get_gzip_content(b64=True),
|
|
|
|
# 'compress': 'gzip'}
|
|
|
|
# return payload
|
|
|
|
|
|
|
|
# # WARNING: UNCLEAN DELETE /!\ TEST ONLY /!\
|
|
|
|
def delete(self):
|
|
|
|
# # TODO:
|
|
|
|
pass
|
|
|
|
|
2022-07-08 09:47:47 +02:00
|
|
|
def get_currency_symbol(self):
|
|
|
|
if self.subtype=='bitcoin':
|
|
|
|
return 'BTC'
|
|
|
|
elif self.subtype=='ethereum':
|
|
|
|
return 'ETH'
|
|
|
|
elif self.subtype=='bitcoin-cash':
|
|
|
|
return 'BCH'
|
|
|
|
elif self.subtype=='litecoin':
|
|
|
|
return 'LTC'
|
|
|
|
elif self.subtype=='monero':
|
|
|
|
return 'XMR'
|
|
|
|
elif self.subtype=='zcash':
|
|
|
|
return 'ZEC'
|
|
|
|
elif self.subtype=='dash':
|
|
|
|
return 'DASH'
|
|
|
|
return None
|
|
|
|
|
2022-03-07 15:12:01 +01:00
|
|
|
def get_link(self, flask_context=False):
|
|
|
|
if flask_context:
|
|
|
|
url = url_for('correlation.show_correlation', object_type=self.type, type_id=self.subtype, correlation_id=self.id)
|
|
|
|
else:
|
|
|
|
url = f'{baseurl}/correlation/show_correlation?object_type={self.type}&type_id={self.subtype}&correlation_id={self.id}'
|
|
|
|
return url
|
|
|
|
|
|
|
|
def get_svg_icon(self):
|
|
|
|
if self.subtype == 'bitcoin':
|
|
|
|
style = 'fab'
|
|
|
|
icon = '\uf15a'
|
|
|
|
elif self.subtype == 'monero':
|
|
|
|
style = 'fab'
|
|
|
|
icon = '\uf3d0'
|
|
|
|
elif self.subtype == 'ethereum':
|
|
|
|
style = 'fab'
|
|
|
|
icon = '\uf42e'
|
|
|
|
else:
|
|
|
|
style = 'fas'
|
|
|
|
icon = '\uf51e'
|
|
|
|
return {'style': style, 'icon': icon, 'color': '#DDCC77', 'radius':5}
|
|
|
|
|
2022-07-08 09:47:47 +02:00
|
|
|
def get_misp_object(self):
|
|
|
|
obj_attrs = []
|
|
|
|
obj = MISPObject('coin-address')
|
|
|
|
obj.first_seen = self.get_first_seen()
|
|
|
|
obj.last_seen = self.get_last_seen()
|
|
|
|
|
|
|
|
obj_attrs.append( obj.add_attribute('address', value=self.id) )
|
|
|
|
crypto_symbol = self.get_currency_symbol()
|
|
|
|
if crypto_symbol:
|
|
|
|
obj_attrs.append( obj.add_attribute('symbol', value=crypto_symbol) )
|
|
|
|
|
|
|
|
for obj_attr in obj_attrs:
|
|
|
|
for tag in self.get_tags():
|
|
|
|
obj_attr.add_tag(tag)
|
|
|
|
return obj
|
|
|
|
|
2022-03-07 15:12:01 +01:00
|
|
|
############################################################################
|
|
|
|
############################################################################
|
|
|
|
############################################################################
|
|
|
|
|
|
|
|
def exist_correlation(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
############################################################################
|
|
|
|
############################################################################
|
|
|
|
|
2022-07-08 09:47:47 +02:00
|
|
|
def build_crypto_regex(subtype, search_id):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def search_by_name(subtype, search_id):
|
|
|
|
|
|
|
|
# # TODO: BUILD regex
|
|
|
|
obj = CryptoCurrency(subtype, search_id)
|
|
|
|
if obj.exists():
|
|
|
|
return search_id
|
|
|
|
else:
|
|
|
|
regex = build_crypto_regex(subtype, search_id)
|
|
|
|
return abstract_object.search_subtype_obj_by_id('cryptocurrency', subtype, regex)
|
|
|
|
|
2022-03-07 15:12:01 +01:00
|
|
|
|
|
|
|
|
|
|
|
#if __name__ == '__main__':
|