diff --git a/README.md b/README.md index c067787..2b2b378 100755 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Malwoverview -[GitHub release (latest by date)](https://github.com/alexandreborges/malwoverview/releases/tag/6.0.0) [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/6.0.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 stars](https://github.com/alexandreborges/malwoverview/stargazers) [Twitter Follow](https://twitter.com/ale_sp_brazil) [Downloads/Last Month](https://pypistats.org/packages/malwoverview) @@ -71,7 +71,7 @@ See GNU Public License on . -## Current Version: 6.0.0 +## Current Version: 6.0.1 Important note: Malwoverview does NOT submit samples to any endpoint by default, so it respects possible Non-Disclosure Agreements (NDAs). There're specific options @@ -442,6 +442,12 @@ should be executed: ## HISTORY +Version 6.0.1: + + This version: + + * Issue in Malshare's download option has been fixed.. + Version 6.0.0: This version: diff --git a/malwoverview/__pycache__/malwoverview.cpython-310.pyc b/malwoverview/__pycache__/malwoverview.cpython-310.pyc new file mode 100644 index 0000000..3d0c97b Binary files /dev/null and b/malwoverview/__pycache__/malwoverview.cpython-310.pyc differ diff --git a/malwoverview/malwoverview.py b/malwoverview/malwoverview.py index 814a7a5..6aef531 100755 --- a/malwoverview/malwoverview.py +++ b/malwoverview/malwoverview.py @@ -21,7 +21,7 @@ # Christian Clauss (https://github.com/cclauss) # Artur Marzano (https://github.com/Macmod) -# Malwoverview.py: version 6.0.0 +# Malwoverview.py: version 6.0.1 import os import argparse @@ -52,7 +52,7 @@ __author__ = "Alexandre Borges" __copyright__ = "Copyright 2018-2024, Alexandre Borges" __license__ = "GNU General Public License v3.0" -__version__ = "6.0.0" +__version__ = "6.0.1" __email__ = "reverseexploit at proton.me" def finish_hook(signum, frame): @@ -73,7 +73,7 @@ def main(): USER_HOME_DIR = str(Path.home()) + '/' cv.windows = 0 - parser = argparse.ArgumentParser(prog=None, description="Malwoverview is a first response tool for threat hunting written by Alexandre Borges. This version is 6.0.0", usage="python malwoverview.py -c -d -o <0|1> -v <1-13> -V -a <1-15> -w <0|1> -A -l <1-7> -L -j <1-7> -J -p <1-8> -P -y <1-5> -Y -n <1-5> -N -m <1-8> -M -b <1-10> -B -x <1-7> -X -i <1-13> -I ") + parser = argparse.ArgumentParser(prog=None, description="Malwoverview is a first response tool for threat hunting written by Alexandre Borges. This version is 6.0.1", usage="python malwoverview.py -c -d -o <0|1> -v <1-13> -V -a <1-15> -w <0|1> -A -l <1-7> -L -j <1-7> -J -p <1-8> -P -y <1-5> -Y -n <1-5> -N -m <1-8> -M -b <1-10> -B -x <1-7> -X -i <1-13> -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, default='', metavar="DIRECTORY", help='Specifies the directory containing malware samples to be checked against VIRUS TOTAL. Use the option -D to decide whether you are being using a public VT API or a Premium VT API.') parser.add_argument('-o', '--background', dest='backg', type=int, default=1, metavar="BACKGROUND", help='Adapts the output colors to a light background color terminal. The default is dark background color terminal.') diff --git a/setup.py b/setup.py index cb4e239..43cc1a2 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ setup( name="malwoverview", - version="6.0.0", + version="6.0.1", author="Alexandre Borges", author_email="reverseexploit@proton.me", license="GNU GPL v3.0",