mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-22 09:36:35 +03:00
Minor improvement
This commit is contained in:
parent
0a266f602c
commit
d1bb69f917
|
@ -1659,3 +1659,41 @@
|
|||
\web.config
|
||||
\windows\system32\drivers\etc\hosts
|
||||
\windows\win.ini
|
||||
|
||||
# Reference: https://repo.theoremforge.com/pentesting/tools/blob/0f1f0578739870b633c267789120d85982545a69/Uncategorized/Dump/lfiunix.txt
|
||||
|
||||
/etc/apache2/.htpasswd
|
||||
/etc/apache/.htpasswd
|
||||
/etc/master.passwd
|
||||
/etc/muddleftpd/muddleftpd.passwd
|
||||
/etc/muddleftpd/passwd
|
||||
/etc/passwd
|
||||
/etc/passwd~
|
||||
/etc/passwd-
|
||||
/etc/pureftpd.passwd
|
||||
/etc/samba/private/smbpasswd
|
||||
/etc/samba/smbpasswd
|
||||
/etc/security/opasswd
|
||||
/etc/security/passwd
|
||||
/etc/smbpasswd
|
||||
\Program Files\xampp\apache\conf\httpd.conf
|
||||
/usr/local/pgsql/bin/pg_passwd
|
||||
/usr/local/pgsql/data/passwd
|
||||
/usr/pkgsrc/net/pureftpd/pureftpd.passwd
|
||||
/usr/ports/contrib/pure-ftpd/pureftpd.passwd
|
||||
/usr/ports/ftp/pure-ftpd/pureftpd.passwd
|
||||
/usr/ports/net/pure-ftpd/pureftpd.passwd
|
||||
/var/log/exim_rejectlog/etc/passwd
|
||||
/etc/mysql/conf.d/old_passwords.cnf
|
||||
/etc/password.master
|
||||
/var/www/.lighttpdpassword
|
||||
/Volumes/Macintosh_HD1/opt/apache2/conf/httpd.conf
|
||||
/Volumes/Macintosh_HD1/opt/apache/conf/httpd.conf
|
||||
/Volumes/Macintosh_HD1/opt/httpd/conf/httpd.conf
|
||||
/Volumes/Macintosh_HD1/usr/local/php4/httpd.conf.php
|
||||
/Volumes/Macintosh_HD1/usr/local/php5/httpd.conf.php
|
||||
/Volumes/Macintosh_HD1/usr/local/php/httpd.conf.php
|
||||
/Volumes/Macintosh_HD1/usr/local/php/lib/php.ini
|
||||
/Volumes/webBackup/opt/apache2/conf/httpd.conf
|
||||
/Volumes/webBackup/private/etc/httpd/httpd.conf
|
||||
/Volumes/webBackup/private/etc/httpd/httpd.conf.default
|
||||
|
|
|
@ -18,7 +18,7 @@ from lib.core.enums import OS
|
|||
from thirdparty.six import unichr as _unichr
|
||||
|
||||
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
|
||||
VERSION = "1.3.11.92"
|
||||
VERSION = "1.3.11.93"
|
||||
TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable"
|
||||
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)
|
||||
|
|
Loading…
Reference in New Issue
Block a user