2015-01-10 18:19:23 +00:00
|
|
|
import argparse
|
|
|
|
import sys
|
2015-01-10 18:20:31 +00:00
|
|
|
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()
|
|
|
|
|
2015-01-10 18:20:31 +00:00
|
|
|
r = redis.StrictRedis(host='localhost', port=6379, db=0)
|
|
|
|
|
2015-01-10 18:19:23 +00:00
|
|
|
if args.f is not None:
|
2015-01-10 18:20:31 +00:00
|
|
|
md5 = args.f[0].split(".")[0]
|
|
|
|
r.sadd('processed', md5)
|
2015-01-10 18:25:07 +00:00
|
|
|
lnumber = 0
|
2015-01-10 18:19:23 +00:00
|
|
|
for line in sys.stdin:
|
2015-01-10 18:25:07 +00:00
|
|
|
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()
|