mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-02-16 19:40:37 +03:00
Minor update
This commit is contained in:
parent
5fae5c3787
commit
8f84b740da
|
@ -1,6 +1,12 @@
|
||||||
# Copyright (c) 2006-2021 sqlmap developers (https://sqlmap.org/)
|
# Copyright (c) 2006-2021 sqlmap developers (https://sqlmap.org/)
|
||||||
# See the file 'LICENSE' for copying permission
|
# See the file 'LICENSE' for copying permission
|
||||||
|
|
||||||
|
# CTFs
|
||||||
|
|
||||||
|
/flag
|
||||||
|
/flag.txt
|
||||||
|
/readflag
|
||||||
|
|
||||||
# Reference: https://gist.github.com/sckalath/78ad449346171d29241a
|
# Reference: https://gist.github.com/sckalath/78ad449346171d29241a
|
||||||
|
|
||||||
/apache/logs/access.log
|
/apache/logs/access.log
|
||||||
|
@ -1718,6 +1724,7 @@
|
||||||
/etc/php4/apache2/php.ini
|
/etc/php4/apache2/php.ini
|
||||||
/etc/php5/apache/php.ini
|
/etc/php5/apache/php.ini
|
||||||
/etc/php5/apache2/php.ini
|
/etc/php5/apache2/php.ini
|
||||||
|
/etc/php/7.4/apache2/php.ini
|
||||||
/etc/php/php.ini
|
/etc/php/php.ini
|
||||||
/usr/local/apache/conf/modsec.conf
|
/usr/local/apache/conf/modsec.conf
|
||||||
/var/cpanel/cpanel.config
|
/var/cpanel/cpanel.config
|
||||||
|
@ -1793,9 +1800,10 @@
|
||||||
|
|
||||||
# Misc
|
# Misc
|
||||||
|
|
||||||
/etc/lib/nfs/etab
|
|
||||||
/app/app.js
|
/app/app.js
|
||||||
/app/configure.js
|
/app/configure.js
|
||||||
/app/config/config.json
|
/app/config/config.json
|
||||||
/flag.txt
|
/etc/grafana/grafana.ini
|
||||||
/readflag
|
/opt/kibana/config/kibana.yml
|
||||||
|
/etc/kibana/kibana.yml
|
||||||
|
/etc/elasticsearch/elasticsearch.yml
|
||||||
|
|
|
@ -12,7 +12,9 @@
|
||||||
5.1.
|
5.1.
|
||||||
5.5.
|
5.5.
|
||||||
5.6.
|
5.6.
|
||||||
|
5.7.
|
||||||
6.0.
|
6.0.
|
||||||
|
8.0.
|
||||||
|
|
||||||
# PostgreSQL
|
# PostgreSQL
|
||||||
PostgreSQL 7.0
|
PostgreSQL 7.0
|
||||||
|
@ -30,6 +32,13 @@ PostgreSQL 9.0
|
||||||
PostgreSQL 9.1
|
PostgreSQL 9.1
|
||||||
PostgreSQL 9.2
|
PostgreSQL 9.2
|
||||||
PostgreSQL 9.3
|
PostgreSQL 9.3
|
||||||
|
PostgreSQL 9.4
|
||||||
|
PostgreSQL 9.5
|
||||||
|
PostgreSQL 9.6
|
||||||
|
PostgreSQL 10.
|
||||||
|
PostgreSQL 11.
|
||||||
|
PostgreSQL 12.
|
||||||
|
PostgreSQL 13.
|
||||||
|
|
||||||
# Oracle
|
# Oracle
|
||||||
Oracle Database 9i Standard Edition Release
|
Oracle Database 9i Standard Edition Release
|
||||||
|
@ -49,12 +58,18 @@ Oracle Database 11g Express Edition Release
|
||||||
Oracle Database 11g Express Edition Release 11.
|
Oracle Database 11g Express Edition Release 11.
|
||||||
Oracle Database 11g Enterprise Edition Release
|
Oracle Database 11g Enterprise Edition Release
|
||||||
Oracle Database 11g Enterprise Edition Release 11.
|
Oracle Database 11g Enterprise Edition Release 11.
|
||||||
|
Oracle Database 12c
|
||||||
|
|
||||||
# Microsoft SQL Server
|
# Microsoft SQL Server
|
||||||
Microsoft SQL Server 7.0
|
Microsoft SQL Server 7.0
|
||||||
Microsoft SQL Server 2000
|
Microsoft SQL Server 2000
|
||||||
Microsoft SQL Server 2005
|
Microsoft SQL Server 2005
|
||||||
Microsoft SQL Server 2008
|
Microsoft SQL Server 2008
|
||||||
|
Microsoft SQL Server 2012
|
||||||
|
Microsoft SQL Server 2014
|
||||||
|
Microsoft SQL Server 2016
|
||||||
|
Microsoft SQL Server 2017
|
||||||
|
Microsoft SQL Server 2019
|
||||||
|
|
||||||
|
|
||||||
[Users]
|
[Users]
|
||||||
|
|
|
@ -20,7 +20,7 @@ from thirdparty import six
|
||||||
from thirdparty.six import unichr as _unichr
|
from thirdparty.six import unichr as _unichr
|
||||||
|
|
||||||
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
|
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
|
||||||
VERSION = "1.5.9.3"
|
VERSION = "1.5.9.4"
|
||||||
TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable"
|
TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable"
|
||||||
TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34}
|
TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34}
|
||||||
VERSION_STRING = "sqlmap/%s#%s" % ('.'.join(VERSION.split('.')[:-1]) if VERSION.count('.') > 2 and VERSION.split('.')[-1] == '0' else VERSION, TYPE)
|
VERSION_STRING = "sqlmap/%s#%s" % ('.'.join(VERSION.split('.')[:-1]) if VERSION.count('.') > 2 and VERSION.split('.')[-1] == '0' else VERSION, TYPE)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user