mirror of
https://github.com/adulau/MalwareClassifier.git
synced 2024-12-22 08:46:04 +00:00
Workshop - second step
Processed files are now added in the Redis set
This commit is contained in:
parent
1cb5fe46d3
commit
d3b76fd9bb
1 changed files with 5 additions and 1 deletions
|
@ -1,12 +1,16 @@
|
|||
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:
|
||||
filename = args.f
|
||||
md5 = args.f[0].split(".")[0]
|
||||
r.sadd('processed', md5)
|
||||
for line in sys.stdin:
|
||||
print (line.split(",")[0])
|
||||
else:
|
||||
|
|
Loading…
Reference in a new issue