From 6c46fd75234974ef20ccce900cd42cc55b96b3c9 Mon Sep 17 00:00:00 2001 From: ekultek Date: Wed, 25 Oct 2017 16:32:55 -0500 Subject: [PATCH] splitting the shell commands via shlex will make the commands more secure, and able to avoid most shell injection instances --- lib/core/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/core/settings.py b/lib/core/settings.py index d153aed..1c391b2 100644 --- a/lib/core/settings.py +++ b/lib/core/settings.py @@ -36,7 +36,7 @@ PATCH_ID = str(subprocess.check_output(["git", "rev-parse", "origin/master"]))[: # clone link CLONE = "https://github.com/ekultek/zeus-scanner.git" # current version -VERSION = "1.1" +VERSION = "1.1.1" # colors to output depending on the version VERSION_TYPE_COLORS = {"dev": 33, "stable": 92, "other": 30} # version string formatting