Skip to content

Commit 636c12b

Browse files
committed
Adding missing alias for DM8 (sqlmapproject#5894)
1 parent ab7ce92 commit 636c12b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

data/txt/sha256sums.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ e18c0c2c5a57924a623792a48bfd36e98d9bc085f6db61a95fc0dc8a3bcedc0c lib/core/decor
189189
48797d6c34dd9bb8a53f7f3794c85f4288d82a9a1d6be7fcf317d388cb20d4b3 lib/core/replication.py
190190
3574639db4942d16a2dc0a2f04bb7c0913c40c3862b54d34c44075a760e0c194 lib/core/revision.py
191191
888daba83fd4a34e9503fe21f01fef4cc730e5cde871b1d40e15d4cbc847d56c lib/core/session.py
192-
d8a567ea4246f4767af5d50305ec2c184aa824b54d5e8e61fb44ffd9a4927b12 lib/core/settings.py
192+
c0f848d501c33ae35d0372c7d70ce9bde176691b6962ae94e2d753c2fff17543 lib/core/settings.py
193193
cd5a66deee8963ba8e7e9af3dd36eb5e8127d4d68698811c29e789655f507f82 lib/core/shell.py
194194
bcb5d8090d5e3e0ef2a586ba09ba80eef0c6d51feb0f611ed25299fbb254f725 lib/core/subprocessng.py
195195
d35650179816193164a5f177102f18379dfbe6bb6d40fbb67b78d907b41c8038 lib/core/target.py

lib/core/settings.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
from thirdparty import six
2020

2121
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
22-
VERSION = "1.10.1.40"
22+
VERSION = "1.10.1.41"
2323
TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable"
2424
TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34}
2525
VERSION_STRING = "sqlmap/%s#%s" % ('.'.join(VERSION.split('.')[:-1]) if VERSION.count('.') > 2 and VERSION.split('.')[-1] == '0' else VERSION, TYPE)
@@ -298,7 +298,7 @@
298298
MSSQL_ALIASES = ("microsoft sql server", "mssqlserver", "mssql", "ms")
299299
MYSQL_ALIASES = ("mysql", "my") + ("mariadb", "maria", "memsql", "tidb", "percona", "drizzle", "doris", "starrocks")
300300
PGSQL_ALIASES = ("postgresql", "postgres", "pgsql", "psql", "pg") + ("cockroach", "cockroachdb", "amazon redshift", "redshift", "greenplum", "yellowbrick", "enterprisedb", "yugabyte", "yugabytedb", "opengauss")
301-
ORACLE_ALIASES = ("oracle", "orcl", "ora", "or")
301+
ORACLE_ALIASES = ("oracle", "orcl", "ora", "or", "dm8")
302302
SQLITE_ALIASES = ("sqlite", "sqlite3")
303303
ACCESS_ALIASES = ("microsoft access", "msaccess", "access", "jet")
304304
FIREBIRD_ALIASES = ("firebird", "mozilla firebird", "interbase", "ibase", "fb")

0 commit comments

Comments
 (0)