mirror of https://github.com/CIRCL/AIL-framework
71 lines
2.2 KiB
Python
Executable File
71 lines
2.2 KiB
Python
Executable File
#!/usr/bin/env python2
|
|
# -*-coding:UTF-8 -*
|
|
import pprint
|
|
import time
|
|
from packages import Paste
|
|
from packages import lib_refine
|
|
from pubsublogger import publisher
|
|
|
|
from Helper import Process
|
|
|
|
if __name__ == "__main__":
|
|
publisher.port = 6380
|
|
publisher.channel = "Script"
|
|
|
|
config_section = 'CreditCards'
|
|
|
|
p = Process(config_section)
|
|
|
|
# FUNCTIONS #
|
|
publisher.info("Creditcard script subscribed to channel creditcard_categ")
|
|
|
|
message = p.get_from_set()
|
|
prec_filename = None
|
|
|
|
creditcard_regex = "4[0-9]{12}(?:[0-9]{3})?"
|
|
|
|
# FIXME For retro compatibility
|
|
channel = 'creditcard_categ'
|
|
|
|
# mastercard_regex = "5[1-5]\d{2}([\ \-]?)\d{4}\1\d{4}\1\d{4}"
|
|
# visa_regex = "4\d{3}([\ \-]?)\d{4}\1\d{4}\1\d{4}"
|
|
# discover_regex = "6(?:011\d\d|5\d{4}|4[4-9]\d{3}|22(?:1(?:2[6-9]|
|
|
# [3-9]\d)|[2-8]\d\d|9(?:[01]\d|2[0-5])))\d{10}"
|
|
# jcb_regex = "35(?:2[89]|[3-8]\d)([\ \-]?)\d{4}\1\d{4}\1\d{4}"
|
|
# amex_regex = "3[47]\d\d([\ \-]?)\d{6}\1\d{5}"
|
|
# chinaUP_regex = "62[0-5]\d{13,16}"
|
|
# maestro_regex = "(?:5[0678]\d\d|6304|6390|67\d\d)\d{8,15}"
|
|
|
|
while True:
|
|
if message is not None:
|
|
filename, word, score = message.split()
|
|
|
|
if prec_filename is None or filename != prec_filename:
|
|
creditcard_set = set([])
|
|
PST = Paste.Paste(filename)
|
|
|
|
for x in PST.get_regex(creditcard_regex):
|
|
if lib_refine.is_luhn_valid(x):
|
|
creditcard_set.add(x)
|
|
|
|
PST.__setattr__(channel, creditcard_set)
|
|
PST.save_attribute_redis(channel, creditcard_set)
|
|
|
|
pprint.pprint(creditcard_set)
|
|
to_print = 'CreditCard;{};{};{};'.format(
|
|
PST.p_source, PST.p_date, PST.p_name)
|
|
if (len(creditcard_set) > 0):
|
|
publisher.critical('{}Checked {} valid number(s)'.format(
|
|
to_print, len(creditcard_set)))
|
|
else:
|
|
publisher.info('{}CreditCard related'.format(to_print))
|
|
|
|
prec_filename = filename
|
|
|
|
else:
|
|
publisher.debug("Script creditcard is idling 1m")
|
|
print 'Sleeping'
|
|
time.sleep(60)
|
|
|
|
message = p.get_from_set()
|