mirror of
https://github.com/ail-project/ail-framework.git
synced 2024-11-10 08:38:28 +00:00
chg: [Cryptocurrency, RegexTracker] uptdate cryptocurrency list + fix: RegexTracker typo
This commit is contained in:
parent
30fd361e1c
commit
839443500d
2 changed files with 2 additions and 2 deletions
|
@ -77,7 +77,7 @@ if __name__ == "__main__":
|
||||||
try:
|
try:
|
||||||
matched = dict_regex_tracked[regex].search(item_content)
|
matched = dict_regex_tracked[regex].search(item_content)
|
||||||
except TimeoutException:
|
except TimeoutException:
|
||||||
print ("{0} processing timeout".format(paste.p_rel_path))
|
print ("{0} processing timeout".format(item_id))
|
||||||
continue
|
continue
|
||||||
else:
|
else:
|
||||||
signal.alarm(0)
|
signal.alarm(0)
|
||||||
|
|
|
@ -34,7 +34,7 @@ PASTES_FOLDER = Flask_config.PASTES_FOLDER
|
||||||
hashDecoded = Blueprint('hashDecoded', __name__, template_folder='templates')
|
hashDecoded = Blueprint('hashDecoded', __name__, template_folder='templates')
|
||||||
|
|
||||||
## TODO: put me in option
|
## TODO: put me in option
|
||||||
all_cryptocurrency = ['bitcoin', 'monero']
|
all_cryptocurrency = ['bitcoin', 'ethereum', 'bitcoin-cash', 'litecoin', 'monero', 'zcash', 'dash']
|
||||||
all_pgpdump = ['key', 'name', 'mail']
|
all_pgpdump = ['key', 'name', 'mail']
|
||||||
|
|
||||||
# ============ FUNCTIONS ============
|
# ============ FUNCTIONS ============
|
||||||
|
|
Loading…
Reference in a new issue