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)