MalwareClassifier/bin/import.py
Alexandre Dulaunoy d3b76fd9bb Workshop - second step
Processed files are now added in the Redis set
2015-01-10 19:20:31 +01:00

17 lines
444 B
Python

import argparse
import sys
import redis
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)
if args.f is not None:
md5 = args.f[0].split(".")[0]
r.sadd('processed', md5)
for line in sys.stdin:
print (line.split(",")[0])
else:
argParser.print_help()