MalwareClassifier/bin/import.py

22 lines
569 B
Python
Raw Normal View History

2015-01-10 18:19:23 +00:00
import argparse
import sys
import redis
2015-01-10 18:19:23 +00:00
argParser = argparse.ArgumentParser(description='Malware classifier')
argParser.add_argument('-f', action='append', help='Filename')
args = argParser.parse_args()
r = redis.StrictRedis(host='localhost', port=6379, db=0)
2015-01-10 18:19:23 +00:00
if args.f is not None:
md5 = args.f[0].split(".")[0]
r.sadd('processed', md5)
lnumber = 0
2015-01-10 18:19:23 +00:00
for line in sys.stdin:
if lnumber == 0:
for field in line.rstrip().split(","):
r.sadd('type', field)
lnumber = lnumber + 1
2015-01-10 18:19:23 +00:00
else:
argParser.print_help()