From 071d49e44f4e37a96941a3c77fbcee1a4101cbd4 Mon Sep 17 00:00:00 2001 From: Alexandre Borges Date: Tue, 28 Jul 2020 19:50:41 -0400 Subject: [PATCH] Malwoverview 3.1.2 --- README.md | 6 +++--- malwoverview/malwoverview.py | 6 +++--- setup.py | 4 ++-- 3 files changed, 8 insertions(+), 8 deletions(-) mode change 100644 => 100755 malwoverview/malwoverview.py diff --git a/README.md b/README.md index 4f5e65c..7dc0ea9 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Malwoverview.py -[GitHub release (latest by date)](https://github.com/alexandreborges/malwoverview/releases/tag/3.1.1) [GitHub last commit](https://github.com/alexandreborges/malwoverview/releases) [GitHub Release Date](https://github.com/alexandreborges/malwoverview/releases) [GitHub](https://github.com/alexandreborges/malwoverview/blob/master/LICENSE) +[GitHub release (latest by date)](https://github.com/alexandreborges/malwoverview/releases/tag/3.1.2) [GitHub last commit](https://github.com/alexandreborges/malwoverview/releases) [GitHub Release Date](https://github.com/alexandreborges/malwoverview/releases) [GitHub](https://github.com/alexandreborges/malwoverview/blob/master/LICENSE) [GitHub stars](https://github.com/alexandreborges/malwoverview/stargazers) [Twitter Follow](https://twitter.com/ale_sp_brazil) [PayPal](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=M8F458EZH8UZE&source=url) @@ -72,7 +72,7 @@ See GNU Public License on . -# Current Version: 3.1.1 +# Current Version: 3.1.2 ## Important note: Malwoverview does NOT submit samples to Virus Total or Hybrid Analysis by default. It submits only hashes, so respecting Non-Disclosure Agreements (NDAs). Nonetheless, if you use the "-V" (uppercase), "-A" (uppercase) or "-P" (uppercase), so Malwoverview SUBMITS your malware sample to Virus Total, Hybrid Analysis and Polyswarm, respectively. @@ -481,7 +481,7 @@ Malwoverview is a malware triage tool written by Alexandre Borges. # HISTORY -Version 3.1.1: +Version 3.1.2: This version: diff --git a/malwoverview/malwoverview.py b/malwoverview/malwoverview.py old mode 100644 new mode 100755 index 801bf41..c597414 --- a/malwoverview/malwoverview.py +++ b/malwoverview/malwoverview.py @@ -19,7 +19,7 @@ # Alexandre Borges (project owner) # Corey Forman (https://github.com/digitalsleuth) -# Malwoverview.py: version 3.1.1 +# Malwoverview.py: version 3.1.2 import os import sys @@ -55,7 +55,7 @@ __updated_by__ = "Corey Forman (https://github.com/digitalsleuth)" __copyright__ = "Copyright 2018-2020, Alexandre Borges" __license__ = "GNU General Public License v3.0" -__version__ = "3.1.1" +__version__ = "3.1.2" __email__ = "alexandreborges at blackstormsecurity.com" haurl = 'https://www.hybrid-analysis.com/api/v2' @@ -4097,7 +4097,7 @@ def dirchecking(repo2): ipaddrvt = '' metatype = 0 - parser = argparse.ArgumentParser(prog=None, description="Malwoverview is a malware triage tool written by Alexandre Borges. The current version is 3.1.1.", usage= "malwoverview.py -c -d -f -i <0|1> -b <0|1> -v <0|1> -a <0|1> -p <0|1> -s <0|1> -x <0|1> -w <|1> -u -H -V -D <0|1> -e<0|1|2|3|4> -A -g -r -t <0|1> -Q <0|1> -l <0|1> -n <1-12> -m -M <0|1> -U -S -z -B <0|1> -K <0|1> -j -J -P -N -R -G <0|1|2|3|4> -y <0|1> -Y -Z <0|1> -X <0|1> -Y -T -W -k -I ") + parser = argparse.ArgumentParser(prog=None, description="Malwoverview is a malware triage tool written by Alexandre Borges. The current version is 3.1.2.", usage= "malwoverview.py -c -d -f -i <0|1> -b <0|1> -v <0|1> -a <0|1> -p <0|1> -s <0|1> -x <0|1> -w <|1> -u -H -V -D <0|1> -e<0|1|2|3|4> -A -g -r -t <0|1> -Q <0|1> -l <0|1> -n <1-12> -m -M <0|1> -U -S -z -B <0|1> -K <0|1> -j -J -P -N -R -G <0|1|2|3|4> -y <0|1> -Y -Z <0|1> -X <0|1> -Y -T -W -k -I ") parser.add_argument('-c', '--config', dest='config', type=str, metavar = "CONFIG FILE", default = (USER_HOME_DIR + '.malwapi.conf'), help='Use a custom config file to specify API\'s') parser.add_argument('-d', '--directory', dest='direct',type=str, metavar = "DIRECTORY", help='specify directory containing malware samples.') parser.add_argument('-f', '--filename', dest='fpname',type=str, metavar = "FILENAME", default = '', help='Specifies a full path to a file. Shows general information about the file (any filetype)') diff --git a/setup.py b/setup.py index 086a6aa..75231c3 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ setup( name="malwoverview", - version="3.1.1", + version="3.1.2", author="Alexandre Borges", author_email="alexandreborges@blackstormsecurity.com", license="GNU GPL v3.0", @@ -35,7 +35,7 @@ "requests==2.22.0", "validators", "geocoder", - "polyswarm-api", + "polyswarm-api==1.1.1", "pathlib", "configparser", "python-magic-bin; platform_system == 'Windows'"