diff --git a/data/txt/common-columns.txt b/data/txt/common-columns.txt index 6b47653ea..c196f639a 100644 --- a/data/txt/common-columns.txt +++ b/data/txt/common-columns.txt @@ -798,7 +798,9 @@ news nick number nummer +passhash pass_hash +password_hash passwordsalt personal_key phone @@ -2726,3 +2728,4 @@ confidential # Misc u_pass +hashedPw diff --git a/data/txt/common-tables.txt b/data/txt/common-tables.txt index 41558db03..ee958f4e5 100644 --- a/data/txt/common-tables.txt +++ b/data/txt/common-tables.txt @@ -1825,6 +1825,7 @@ jos_comprofiler_members jos_joomblog_users jos_moschat_users knews_lostpass +korisnik korisnici kpro_adminlogs kpro_user @@ -2215,6 +2216,7 @@ admin_pwd admin_pass adminpassword admin_password +admin_passwords usrpass usr_pass pass diff --git a/lib/core/settings.py b/lib/core/settings.py index 0842b17d2..9fbf4034b 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.30" +VERSION = "1.4.12.31" 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)