Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 22bf771

Browse files
committed
Trivial update
1 parent 186b392 commit 22bf771

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

lib/core/settings.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
from thirdparty.six import unichr as _unichr
1919

2020
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
21-
VERSION = "1.4.1.58"
21+
VERSION = "1.4.1.59"
2222
TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable"
2323
TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34}
2424
VERSION_STRING = "sqlmap/%s#%s" % ('.'.join(VERSION.split('.')[:-1]) if VERSION.count('.') > 2 and VERSION.split('.')[-1] == '0' else VERSION, TYPE)
@@ -266,9 +266,10 @@
266266
PRESTO_SYSTEM_DBS = ("information_schema",)
267267
ALTIBASE_SYSTEM_DBS = ("SYSTEM_",)
268268

269+
# Note: (<regular>) + (<forks>)
269270
MSSQL_ALIASES = ("microsoft sql server", "mssqlserver", "mssql", "ms")
270-
MYSQL_ALIASES = ("mysql", "my") + ("mariadb", "maria", "memsql", "tidb")
271-
PGSQL_ALIASES = ("postgresql", "postgres", "pgsql", "psql", "pg")
271+
MYSQL_ALIASES = ("mysql", "my") + ("mariadb", "maria", "memsql", "tidb", "percona")
272+
PGSQL_ALIASES = ("postgresql", "postgres", "pgsql", "psql", "pg") + ("cockroach", "cockroachdb")
272273
ORACLE_ALIASES = ("oracle", "orcl", "ora", "or")
273274
SQLITE_ALIASES = ("sqlite", "sqlite3")
274275
ACCESS_ALIASES = ("msaccess", "access", "jet", "microsoft access")

0 commit comments

Comments
 (0)