diff --git a/README.md b/README.md
index 537b4d7..bc1aabe 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,6 @@
# Malwoverview
-[](https://github.com/alexandreborges/malwoverview/releases/tag/5.4.4) [](https://github.com/alexandreborges/malwoverview/releases) [](https://github.com/alexandreborges/malwoverview/releases) [](https://github.com/alexandreborges/malwoverview/blob/master/LICENSE)
+[](https://github.com/alexandreborges/malwoverview/releases/tag/5.4.5) [](https://github.com/alexandreborges/malwoverview/releases) [](https://github.com/alexandreborges/malwoverview/releases) [](https://github.com/alexandreborges/malwoverview/blob/master/LICENSE)
[](https://github.com/alexandreborges/malwoverview/stargazers)
[](https://twitter.com/ale_sp_brazil)
[](https://pypistats.org/packages/malwoverview)
@@ -71,7 +71,7 @@
See GNU Public License on .
-# Current Version: 5.4.4
+# Current Version: 5.4.5
Important note: Malwoverview does NOT submit samples to any endpoint by default,
so it respects possible Non-Disclosure Agreements (NDAs). There're specific options
@@ -433,6 +433,12 @@ should be executed:
# HISTORY
+Version 5.4.5:
+
+ This version:
+
+ * Includes a fix related to the installation path.
+
Version 5.4.4:
This version:
diff --git a/malwoverview/malwoverview.py b/malwoverview/malwoverview.py
index ca8c1d0..3239574 100755
--- a/malwoverview/malwoverview.py
+++ b/malwoverview/malwoverview.py
@@ -20,7 +20,7 @@
# Corey Forman (https://github.com/digitalsleuth)
# Christian Clauss (https://github.com/cclauss)
-# Malwoverview.py: version 5.4.4
+# Malwoverview.py: version 5.4.5
import os
import sys
@@ -62,7 +62,7 @@
__author__ = "Alexandre Borges"
__copyright__ = "Copyright 2018-2024, Alexandre Borges"
__license__ = "GNU General Public License v3.0"
-__version__ = "5.4.4"
+__version__ = "5.4.5"
__email__ = "reverseexploit at proton.me"
haurl = 'https://www.hybrid-analysis.com/api/v2'
@@ -10412,7 +10412,7 @@ def sendandroidvt(package):
ipaddrvtx = ''
ffpname = ''
- parser = argparse.ArgumentParser(prog=None, description="Malwoverview is a first response tool for threat hunting written by Alexandre Borges. This version is 5.4.4", 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 5.4.5", 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, 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 77720d1..625c870 100644
--- a/setup.py
+++ b/setup.py
@@ -11,7 +11,7 @@
setup(
name="malwoverview",
- version="5.4.4",
+ version="5.4.5",
author="Alexandre Borges",
author_email="reverseexploit@proton.me",
license="GNU GPL v3.0",