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

Skip to content

Commit eb62397

Browse files
committed
Minor update of Oracle fingerprinting
1 parent 1363422 commit eb62397

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

lib/core/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
from lib.core.enums import OS
2020

2121
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
22-
VERSION = "1.3.3.22"
22+
VERSION = "1.3.3.23"
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)

plugins/dbms/oracle/fingerprint.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ def checkDbms(self):
103103
logger.info(infoMsg)
104104

105105
# Reference: https://en.wikipedia.org/wiki/Oracle_Database
106-
for version in ("12c", "11g", "10g", "9i", "8i"):
106+
for version in ("18c", "12c", "11g", "10g", "9i", "8i"):
107107
number = int(re.search(r"([\d]+)", version).group(1))
108108
output = inject.checkBooleanExpression("%d=(SELECT SUBSTR((VERSION),1,%d) FROM SYS.PRODUCT_COMPONENT_VERSION WHERE ROWNUM=1)" % (number, 1 if number < 10 else 2))
109109

txt/checksum.md5

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ d5ef43fe3cdd6c2602d7db45651f9ceb lib/core/readlineng.py
5050
7d8a22c582ad201f65b73225e4456170 lib/core/replication.py
5151
3179d34f371e0295dd4604568fb30bcd lib/core/revision.py
5252
d6269c55789f78cf707e09a0f5b45443 lib/core/session.py
53-
a6370a4c60104413c514c021f8409a44 lib/core/settings.py
53+
c5129be9a3bf208a709866d00fb71a29 lib/core/settings.py
5454
4483b4a5b601d8f1c4281071dff21ecc lib/core/shell.py
5555
10fd19b0716ed261e6d04f311f6f527c lib/core/subprocessng.py
5656
d9483455ff80d33a55db46ae2fa34a05 lib/core/target.py
@@ -188,7 +188,7 @@ dd6bd1d3d561755b96e953ede16cb8fc plugins/dbms/mysql/syntax.py
188188
82ed71cf0e9283859b61c88325255eb2 plugins/dbms/oracle/connector.py
189189
3266e81eb4a3c083d27c7a255be38893 plugins/dbms/oracle/enumeration.py
190190
5bdd5288c8303ea21a5f8409332e32a1 plugins/dbms/oracle/filesystem.py
191-
8813f44f3b67fc98024199c7b8398811 plugins/dbms/oracle/fingerprint.py
191+
48201c296b2ce285488c2325fff5c625 plugins/dbms/oracle/fingerprint.py
192192
c7bb3f112aad2ea7ea92e036e9aab6a7 plugins/dbms/oracle/__init__.py
193193
2676a1544b454f276c64f5147f03ce02 plugins/dbms/oracle/syntax.py
194194
8da7c9ee0a0e692097757dfc2b5fefe0 plugins/dbms/oracle/takeover.py

0 commit comments

Comments
 (0)