From 641b7194f26b29fbc62170f113c1260ca6a7f413 Mon Sep 17 00:00:00 2001 From: sponce2 Date: Wed, 10 Dec 2014 22:14:57 +0200 Subject: [PATCH] Update theZoo.py --- theZoo.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/theZoo.py b/theZoo.py index 037adb0..92ef8ea 100644 --- a/theZoo.py +++ b/theZoo.py @@ -51,10 +51,10 @@ def main(): def getArgvs(): parser = OptionParser() parser = OptionParser() - parser.add_option("-t", "--type", dest="type_of_mal", default='', help="Type of malware to search. \nFor example botnet,trojan,virus,etc...") - parser.add_option("-l", "--language", dest="lang_of_mal", default='', help="Language of the version of the malware which is in the databse.\nFor example: vbs,vb,c,cpp,bin,etc...") - parser.add_option("-a", "--architecture", dest="arch_of_mal", default='', help="The architecture the malware is intended for.\nFor example: x86,x64,arm7,etc...") - parser.add_option("-p", "--platform", dest="plat_of_mal", default="", help="Platform the malware is inteded for.\nFor example: win32,win64,ios,android,etc...") + parser.add_option("-t", "--type", dest="type_of_mal", default='', help="Type of malware to search. \ne.g. botnet,trojan,virus,etc...") + parser.add_option("-l", "--language", dest="lang_of_mal", default='', help="Language of the version of the malware which is in the databse.\e.g. vbs,vb,c,cpp,bin,etc...") + parser.add_option("-a", "--architecture", dest="arch_of_mal", default='', help="The architecture the malware is intended for.\ne.g. x86,x64,arm7,etc...") + parser.add_option("-p", "--platform", dest="plat_of_mal", default="", help="Platform the malware is inteded for.\ne.g. win32,win64,ios,android,etc...") parser.add_option("-u", "--update", dest="update_bol", default=0, help="Updates the DB of theZoo.", action="store_true") parser.add_option("-v", "--version" , dest="ver_bol", default=0, help="Shows version and licensing information.", action="store_true") parser.add_option("-w", "--license", dest="license_bol", default=0, help="Prints the GPLv3 license information.", action="store_true")