diff --git a/data/txt/common-files.txt b/data/txt/common-files.txt index b2eee3064..c2514e4e4 100644 --- a/data/txt/common-files.txt +++ b/data/txt/common-files.txt @@ -1704,9 +1704,6 @@ /etc/crontab /etc/hosts /etc/my.cnf -/.bash_history -/.htpasswd -/.htaccess /etc/.htpasswd /root/.bash_history /etc/named.conf diff --git a/lib/core/settings.py b/lib/core/settings.py index 3d26a917c..3dec6dbae 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.3.11.96" +VERSION = "1.3.11.97" 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)