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

Skip to content

Commit 8f84b74

Browse files
committed
Minor update
1 parent 5fae5c3 commit 8f84b74

3 files changed

Lines changed: 27 additions & 4 deletions

File tree

data/txt/common-files.txt

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
# Copyright (c) 2006-2021 sqlmap developers (https://sqlmap.org/)
22
# See the file 'LICENSE' for copying permission
33

4+
# CTFs
5+
6+
/flag
7+
/flag.txt
8+
/readflag
9+
410
# Reference: https://gist.github.com/sckalath/78ad449346171d29241a
511

612
/apache/logs/access.log
@@ -1718,6 +1724,7 @@
17181724
/etc/php4/apache2/php.ini
17191725
/etc/php5/apache/php.ini
17201726
/etc/php5/apache2/php.ini
1727+
/etc/php/7.4/apache2/php.ini
17211728
/etc/php/php.ini
17221729
/usr/local/apache/conf/modsec.conf
17231730
/var/cpanel/cpanel.config
@@ -1793,9 +1800,10 @@
17931800

17941801
# Misc
17951802

1796-
/etc/lib/nfs/etab
17971803
/app/app.js
17981804
/app/configure.js
17991805
/app/config/config.json
1800-
/flag.txt
1801-
/readflag
1806+
/etc/grafana/grafana.ini
1807+
/opt/kibana/config/kibana.yml
1808+
/etc/kibana/kibana.yml
1809+
/etc/elasticsearch/elasticsearch.yml

data/txt/common-outputs.txt

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,9 @@
1212
5.1.
1313
5.5.
1414
5.6.
15+
5.7.
1516
6.0.
17+
8.0.
1618

1719
# PostgreSQL
1820
PostgreSQL 7.0
@@ -30,6 +32,13 @@ PostgreSQL 9.0
3032
PostgreSQL 9.1
3133
PostgreSQL 9.2
3234
PostgreSQL 9.3
35+
PostgreSQL 9.4
36+
PostgreSQL 9.5
37+
PostgreSQL 9.6
38+
PostgreSQL 10.
39+
PostgreSQL 11.
40+
PostgreSQL 12.
41+
PostgreSQL 13.
3342

3443
# Oracle
3544
Oracle Database 9i Standard Edition Release
@@ -49,12 +58,18 @@ Oracle Database 11g Express Edition Release
4958
Oracle Database 11g Express Edition Release 11.
5059
Oracle Database 11g Enterprise Edition Release
5160
Oracle Database 11g Enterprise Edition Release 11.
61+
Oracle Database 12c
5262

5363
# Microsoft SQL Server
5464
Microsoft SQL Server 7.0
5565
Microsoft SQL Server 2000
5666
Microsoft SQL Server 2005
5767
Microsoft SQL Server 2008
68+
Microsoft SQL Server 2012
69+
Microsoft SQL Server 2014
70+
Microsoft SQL Server 2016
71+
Microsoft SQL Server 2017
72+
Microsoft SQL Server 2019
5873

5974

6075
[Users]

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.six import unichr as _unichr
2121

2222
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
23-
VERSION = "1.5.9.3"
23+
VERSION = "1.5.9.4"
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)