mirror of
https://github.com/ail-project/ail-framework.git
synced 2024-11-13 01:58:22 +00:00
add: Decoder Module, decode binary, hex and base64
This commit is contained in:
parent
280e9d8af8
commit
ad26f016e3
4 changed files with 18 additions and 4 deletions
14
OVERVIEW.md
14
OVERVIEW.md
|
@ -36,18 +36,24 @@ ARDB overview
|
||||||
'vt_report' vt_report
|
'vt_report' vt_report
|
||||||
'nb_seen_in_all_pastes' nb_seen_in_all_pastes
|
'nb_seen_in_all_pastes' nb_seen_in_all_pastes
|
||||||
|
|
||||||
|
SET - 'all_decoder' decoder*
|
||||||
|
|
||||||
|
SET - 'hash_all_type' hash_type *
|
||||||
SET - 'hash_base64_all_type' hash_type *
|
SET - 'hash_base64_all_type' hash_type *
|
||||||
SET - 'hash_binary_all_type' hash_type *
|
SET - 'hash_binary_all_type' hash_type *
|
||||||
|
|
||||||
|
SET - 'hash_paste:'+paste hash * °°°
|
||||||
SET - 'base64_paste:'+paste hash *
|
SET - 'base64_paste:'+paste hash *
|
||||||
SET - 'binary_paste:'+paste hash *
|
SET - 'binary_paste:'+paste hash *
|
||||||
|
|
||||||
|
ZADD - 'hash_date:'+20180622 hash * °°° nb_seen_this_day
|
||||||
ZADD - 'base64_date:'+20180622 hash * nb_seen_this_day
|
ZADD - 'base64_date:'+20180622 hash * nb_seen_this_day
|
||||||
|
ZADD - 'binary_date:'+20180622 hash * nb_seen_this_day
|
||||||
|
|
||||||
ZADD - 'base64_hash'+hash paste * nb_seen_in_paste
|
ZADD - 'nb_seen_hash:'+hash paste * °°° nb_seen_in_paste
|
||||||
ZADD - 'binary_hash'+hash paste * nb_seen_in_paste
|
ZADD - 'base64_hash:'+hash paste * nb_seen_in_paste
|
||||||
|
ZADD - 'binary_hash:'+hash paste * nb_seen_in_paste
|
||||||
SET - 'hash_all_type' hash_type
|
|
||||||
|
|
||||||
|
ZADD - 'hash_type:'+type date °°° nb_seen
|
||||||
ZADD - 'base64_type:'+type date nb_seen
|
ZADD - 'base64_type:'+type date nb_seen
|
||||||
ZADD - 'binary_type:'+type date nb_seen
|
ZADD - 'binary_type:'+type date nb_seen
|
||||||
|
|
|
@ -146,6 +146,8 @@ function launching_scripts {
|
||||||
sleep 0.1
|
sleep 0.1
|
||||||
screen -S "Script_AIL" -X screen -t "Binary" bash -c './Binary.py; read x'
|
screen -S "Script_AIL" -X screen -t "Binary" bash -c './Binary.py; read x'
|
||||||
sleep 0.1
|
sleep 0.1
|
||||||
|
screen -S "Script_AIL" -X screen -t "Decoder" bash -c './Decoder.py; read x'
|
||||||
|
sleep 0.1
|
||||||
screen -S "Script_AIL" -X screen -t "Bitcoin" bash -c './Bitcoin.py; read x'
|
screen -S "Script_AIL" -X screen -t "Bitcoin" bash -c './Bitcoin.py; read x'
|
||||||
sleep 0.1
|
sleep 0.1
|
||||||
screen -S "Script_AIL" -X screen -t "Phone" bash -c './Phone.py; read x'
|
screen -S "Script_AIL" -X screen -t "Phone" bash -c './Phone.py; read x'
|
||||||
|
|
|
@ -124,6 +124,7 @@ if __name__ == "__main__":
|
||||||
except ipaddress.AddressValueError:
|
except ipaddress.AddressValueError:
|
||||||
continue
|
continue
|
||||||
cc = getattr(l, 'cc')
|
cc = getattr(l, 'cc')
|
||||||
|
asn = ''
|
||||||
if getattr(l, 'asn') is not None:
|
if getattr(l, 'asn') is not None:
|
||||||
asn = getattr(l, 'asn')[2:] #remobe b'
|
asn = getattr(l, 'asn')[2:] #remobe b'
|
||||||
|
|
||||||
|
|
|
@ -2,6 +2,7 @@
|
||||||
bloomfilters = Blooms
|
bloomfilters = Blooms
|
||||||
dicofilters = Dicos
|
dicofilters = Dicos
|
||||||
pastes = PASTES
|
pastes = PASTES
|
||||||
|
hash = HASHS
|
||||||
base64 = BASE64
|
base64 = BASE64
|
||||||
|
|
||||||
wordtrending_csv = var/www/static/csv/wordstrendingdata
|
wordtrending_csv = var/www/static/csv/wordstrendingdata
|
||||||
|
@ -65,6 +66,10 @@ max_execution_time = 60
|
||||||
path = Base64/
|
path = Base64/
|
||||||
max_execution_time = 60
|
max_execution_time = 60
|
||||||
|
|
||||||
|
[Hex]
|
||||||
|
path = Base64/
|
||||||
|
max_execution_time = 60
|
||||||
|
|
||||||
[Modules_Duplicates]
|
[Modules_Duplicates]
|
||||||
#Number of month to look back
|
#Number of month to look back
|
||||||
maximum_month_range = 3
|
maximum_month_range = 3
|
||||||
|
|
Loading…
Reference in a new issue