2016-02-04 15:22:51 +01:00
|
|
|
#!/usr/bin/env python
|
2014-08-06 11:43:40 +02:00
|
|
|
# -*-coding:UTF-8 -*
|
2017-05-09 11:13:16 +02:00
|
|
|
|
|
|
|
"""
|
|
|
|
The CreditCards Module
|
|
|
|
======================
|
|
|
|
|
|
|
|
This module is consuming the Redis-list created by the Categ module.
|
|
|
|
|
|
|
|
It apply credit card regexes on paste content and warn if above a threshold.
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
2014-08-14 17:55:18 +02:00
|
|
|
import pprint
|
|
|
|
import time
|
|
|
|
from packages import Paste
|
2014-08-06 11:43:40 +02:00
|
|
|
from packages import lib_refine
|
|
|
|
from pubsublogger import publisher
|
2014-09-05 17:05:45 +02:00
|
|
|
import re
|
|
|
|
|
2014-08-29 19:37:56 +02:00
|
|
|
from Helper import Process
|
2014-08-06 11:43:40 +02:00
|
|
|
|
2014-08-20 15:14:57 +02:00
|
|
|
if __name__ == "__main__":
|
2014-08-22 17:35:40 +02:00
|
|
|
publisher.port = 6380
|
2014-08-20 15:14:57 +02:00
|
|
|
publisher.channel = "Script"
|
2014-08-06 11:43:40 +02:00
|
|
|
|
2014-08-29 19:37:56 +02:00
|
|
|
config_section = 'CreditCards'
|
2014-08-14 17:55:18 +02:00
|
|
|
|
2014-08-29 19:37:56 +02:00
|
|
|
p = Process(config_section)
|
2014-08-06 11:43:40 +02:00
|
|
|
|
|
|
|
# FUNCTIONS #
|
|
|
|
publisher.info("Creditcard script subscribed to channel creditcard_categ")
|
|
|
|
|
|
|
|
|
|
|
|
creditcard_regex = "4[0-9]{12}(?:[0-9]{3})?"
|
|
|
|
|
2014-08-29 19:37:56 +02:00
|
|
|
# FIXME For retro compatibility
|
|
|
|
channel = 'creditcard_categ'
|
|
|
|
|
2014-09-05 17:05:45 +02:00
|
|
|
# Source: http://www.richardsramblings.com/regex/credit-card-numbers/
|
|
|
|
cards = [
|
2014-09-08 16:51:43 +02:00
|
|
|
r'\b4\d{3}(?:[\ \-]?)\d{4}(?:[\ \-]?)\d{4}(?:[\ \-]?)\d{4}\b', # 16-digit VISA, with separators
|
|
|
|
r'\b5[1-5]\d{2}(?:[\ \-]?)\d{4}(?:[\ \-]?)\d{4}(?:[\ \-]?)\d{4}\b', # 16 digits MasterCard
|
|
|
|
r'\b6(?:011|22(?:(?=[\ \-]?(?:2[6-9]|[3-9]))|[2-8]|9(?=[\ \-]?(?:[01]|2[0-5])))|4[4-9]\d|5\d\d)(?:[\ \-]?)\d{4}(?:[\ \-]?)\d{4}(?:[\ \-]?)\d{4}\b', # Discover Card
|
|
|
|
r'\b35(?:2[89]|[3-8]\d)(?:[\ \-]?)\d{4}(?:[\ \-]?)\d{4}(?:[\ \-]?)\d{4}\b', # Japan Credit Bureau (JCB)
|
|
|
|
r'\b3[47]\d\d(?:[\ \-]?)\d{6}(?:[\ \-]?)\d{5}\b', # American Express
|
|
|
|
r'\b(?:5[0678]\d\d|6304|6390|67\d\d)\d{8,15}\b', # Maestro
|
2014-09-05 17:05:45 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
regex = re.compile('|'.join(cards))
|
2014-08-06 11:43:40 +02:00
|
|
|
|
|
|
|
while True:
|
2014-09-05 17:05:45 +02:00
|
|
|
message = p.get_from_set()
|
2014-08-14 17:55:18 +02:00
|
|
|
if message is not None:
|
2014-09-05 17:05:45 +02:00
|
|
|
filename, score = message.split()
|
|
|
|
paste = Paste.Paste(filename)
|
|
|
|
content = paste.get_p_content()
|
|
|
|
all_cards = re.findall(regex, content)
|
|
|
|
if len(all_cards) > 0:
|
|
|
|
print 'All matching', all_cards
|
2014-08-14 17:55:18 +02:00
|
|
|
creditcard_set = set([])
|
2014-08-06 11:43:40 +02:00
|
|
|
|
2014-09-05 17:05:45 +02:00
|
|
|
for card in all_cards:
|
|
|
|
clean_card = re.sub('[^0-9]', '', card)
|
|
|
|
if lib_refine.is_luhn_valid(clean_card):
|
|
|
|
print clean_card, 'is valid'
|
|
|
|
creditcard_set.add(clean_card)
|
2014-08-06 11:43:40 +02:00
|
|
|
|
2014-09-05 17:05:45 +02:00
|
|
|
paste.__setattr__(channel, creditcard_set)
|
|
|
|
paste.save_attribute_redis(channel, creditcard_set)
|
2014-08-06 11:43:40 +02:00
|
|
|
|
2014-08-14 17:55:18 +02:00
|
|
|
pprint.pprint(creditcard_set)
|
2014-08-20 15:14:57 +02:00
|
|
|
to_print = 'CreditCard;{};{};{};'.format(
|
2014-09-05 17:05:45 +02:00
|
|
|
paste.p_source, paste.p_date, paste.p_name)
|
2014-08-14 17:55:18 +02:00
|
|
|
if (len(creditcard_set) > 0):
|
2016-10-27 11:50:24 +02:00
|
|
|
publisher.warning('{}Checked {} valid number(s);{}'.format(
|
|
|
|
to_print, len(creditcard_set), paste.p_path))
|
2016-07-18 16:22:33 +02:00
|
|
|
#Send to duplicate
|
2016-08-24 15:35:23 +02:00
|
|
|
p.populate_set_out(filename, 'Duplicate')
|
2016-08-08 09:17:44 +02:00
|
|
|
#send to Browse_warning_paste
|
2016-08-09 11:59:36 +02:00
|
|
|
p.populate_set_out('creditcard;{}'.format(filename), 'BrowseWarningPaste')
|
2014-08-06 11:43:40 +02:00
|
|
|
else:
|
2016-10-27 11:50:24 +02:00
|
|
|
publisher.info('{}CreditCard related;{}'.format(to_print, paste.p_path))
|
2014-08-06 11:43:40 +02:00
|
|
|
else:
|
|
|
|
publisher.debug("Script creditcard is idling 1m")
|
2014-09-05 17:05:45 +02:00
|
|
|
time.sleep(10)
|
2014-08-06 11:43:40 +02:00
|
|
|
|