Skip to content

Commit 0d82096

Browse files
committed
Minor update
1 parent f15b73d commit 0d82096

3 files changed

Lines changed: 37 additions & 3 deletions

File tree

data/txt/common-outputs.txt

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,34 @@
2424
9.2.
2525
9.3.
2626

27+
# MariaDB (banner reported as e.g. '10.6.21-MariaDB-...')
28+
10.0.
29+
10.1.
30+
10.2.
31+
10.3.
32+
10.4.
33+
10.5.
34+
10.6.
35+
10.7.
36+
10.8.
37+
10.9.
38+
10.10.
39+
10.11.
40+
11.0.
41+
11.1.
42+
11.2.
43+
11.3.
44+
11.4.
45+
11.5.
46+
11.6.
47+
11.7.
48+
11.8.
49+
12.0.
50+
12.1.
51+
12.2.
52+
12.3.
53+
13.0.
54+
2755
# PostgreSQL
2856
PostgreSQL 7.0
2957
PostgreSQL 7.1
@@ -51,6 +79,7 @@ PostgreSQL 14.
5179
PostgreSQL 15.
5280
PostgreSQL 16.
5381
PostgreSQL 17.
82+
PostgreSQL 18.
5483

5584
# Oracle
5685
Oracle Database 9i Standard Edition Release
@@ -97,6 +126,9 @@ Microsoft SQL Server 2025
97126
'debian-sys-maint'@'localhost'
98127
'root'@'%'
99128
'root'@'localhost'
129+
'mysql.sys'@'localhost'
130+
'mysql.session'@'localhost'
131+
'mysql.infoschema'@'localhost'
100132

101133
# MySQL < 5.0
102134
debian-sys-maint
@@ -420,6 +452,8 @@ XDBWEBSERVICES
420452
information_schema
421453
performance_schema
422454
mysql
455+
sys
456+
test
423457
phpmyadmin
424458

425459
# PostgreSQL

data/txt/sha256sums.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ c52c17f3344707cae4c3694a979e073202bd46866fcc51d99f7e4d0c21cf335b data/shell/sta
2525
af4e1f87ec7afd12b7ddb39ff07bf24cd31be2b1de11e1be064e1dd96ff43eac data/shell/stagers/stager.php_
2626
eb86f6ad21e597f9283bb4360129ebc717bc8f063d7ab2298f31118275790484 data/txt/common-columns.txt
2727
63ba15f2ba3df6e55600a2749752c82039add43ed61129febd9221eb1115f240 data/txt/common-files.txt
28-
9610fbd4ede776ab60d003c0ea052d68625921a53cdcfa50a4965b0985b619ca data/txt/common-outputs.txt
28+
852b420157bbffb56947e4b201a7df5242e75443ab161049a50235eb4e8e9aae data/txt/common-outputs.txt
2929
44047281263ef297f27fdd8fa98a0b0438a25989f897ce184cb0e2e442fb6c11 data/txt/common-tables.txt
3030
ccba96624a0176b4c5acd8824db62a8c6856dafa7d32424807f38efed22a6c29 data/txt/keywords.txt
3131
522cce0327de8a5dfb5ade505e8a23bbd37bcabcbb2993f4f787ccdecf24997e data/txt/smalldict.txt
@@ -189,7 +189,7 @@ ccc4a717e887652b1fcce073d9409d9c59a3b28548c703a9e453d15845f90cd7 lib/core/patch
189189
9bf174058f15d14e24e94f9aaf42df045119d3617c6c54bd2f3af79b462f331d lib/core/replication.py
190190
0b8c38a01bb01f843d94a6c5f2075ee47520d0c4aa799cecea9c3e2c5a4a23a6 lib/core/revision.py
191191
888daba83fd4a34e9503fe21f01fef4cc730e5cde871b1d40e15d4cbc847d56c lib/core/session.py
192-
b01cfaf542516bce373b0543fc74c0e25b32a8e5f75b6e9990e4e119347059b5 lib/core/settings.py
192+
bfb81831c04059573ed0d17904242183f4d51065f235f00d437f7fc6ddcf33c7 lib/core/settings.py
193193
c7804223319e18eb0b8e2cbf0a8b6896d1cefb7b0b1a2e9f1cf826a8a3b56750 lib/core/shell.py
194194
a2e98a94b231432736d6b304fc75525c8b5fdb4768c418387c5b4c1a610dad64 lib/core/subprocessng.py
195195
19f1e3c5e3ba703d28d510cd7a9ab8284d5fbe9df5ce7e77c86e5931571364b7 lib/core/target.py

lib/core/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
from thirdparty import six
2121

2222
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
23-
VERSION = "1.10.6.150"
23+
VERSION = "1.10.6.151"
2424
TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable"
2525
TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34}
2626
VERSION_STRING = "sqlmap/%s#%s" % ('.'.join(VERSION.split('.')[:-1]) if VERSION.count('.') > 2 and VERSION.split('.')[-1] == '0' else VERSION, TYPE)

0 commit comments

Comments
 (0)