From 81602c409370cbc465b4088af7da23c5dd244842 Mon Sep 17 00:00:00 2001 From: Miroslav Stampar Date: Tue, 22 Dec 2020 21:35:02 +0100 Subject: [PATCH] Another minor update --- data/txt/common-files.txt | 2 ++ lib/core/settings.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/data/txt/common-files.txt b/data/txt/common-files.txt index 00a062582..d1704b159 100644 --- a/data/txt/common-files.txt +++ b/data/txt/common-files.txt @@ -1797,3 +1797,5 @@ /app/app.js /app/configure.js /app/config/config.json +/flag.txt +/readflag diff --git a/lib/core/settings.py b/lib/core/settings.py index 9fbf4034b..b220a819d 100644 --- a/lib/core/settings.py +++ b/lib/core/settings.py @@ -18,7 +18,7 @@ from lib.core.enums import OS from thirdparty.six import unichr as _unichr # sqlmap version (...) -VERSION = "1.4.12.31" +VERSION = "1.4.12.32" TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable" TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34} VERSION_STRING = "sqlmap/%s#%s" % ('.'.join(VERSION.split('.')[:-1]) if VERSION.count('.') > 2 and VERSION.split('.')[-1] == '0' else VERSION, TYPE)