Linux webserver 6.8.0-49-generic #49~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Wed Nov 6 17:42:15 UTC 2 x86_64
Apache/2.4.52 (Ubuntu)
Server IP : 192.168.1.1 & Your IP : 3.149.239.180
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
doc /
vsftpd /
Delete
Unzip
Name
Size
Permission
Date
Action
SECURITY
[ DIR ]
drwxr-xr-x
2024-09-18 19:48
examples
[ DIR ]
drwxr-xr-x
2024-09-18 19:48
AUDIT
1.36
KB
-rw-r--r--
2008-02-02 01:30
BENCHMARKS
2.84
KB
-rw-r--r--
2008-02-02 01:30
BUGS
822
B
-rw-r--r--
2012-03-28 03:21
FAQ.gz
4.97
KB
-rw-r--r--
2011-12-17 19:34
NEWS.Debian.gz
446
B
-rw-r--r--
2024-07-11 12:59
README
1.33
KB
-rw-r--r--
2021-07-31 20:08
README.Debian
3.1
KB
-rw-r--r--
2024-07-11 12:59
README.security
112
B
-rw-r--r--
2008-02-02 01:30
README.ssl
2.07
KB
-rw-r--r--
2008-02-02 01:30
REWARD
125
B
-rw-r--r--
2008-02-02 01:30
SIZE
392
B
-rw-r--r--
2008-02-02 01:30
SPEED
1.14
KB
-rw-r--r--
2008-02-02 01:30
TODO
1.79
KB
-rw-r--r--
2012-04-05 01:27
TUNING
1.23
KB
-rw-r--r--
2008-02-02 01:30
changelog.Debian.gz
1.23
KB
-rw-r--r--
2024-07-16 07:52
copyright
1.63
KB
-rw-r--r--
2024-07-11 12:59
Save
Rename
As of vsftpd version 2.0.0, SSL / TLS support is provided. The SSL / TLS support provides the ability to encrypt FTP logins and subsequent commands, as well as the data transfers themselves. The encyption will, for example, stop the stealing of sensitive passwords via network snooping. By default, SSL support is disabled both at compile time and at runtime. Before considering enabling / using SSL support, there are some security considerations: - Only enable SSL if absolutely necessary. Enabling SSL will allow attackers to make use of any security problems in the OpenSSL libraries. Note that the OpenSSL libraries are a large quantity of code and have had the occasional security problem in the past. For example, your server might use virtual users to control access to non-sensitive download content. In this case, the passwords might not be worth securing with SSL. - After enabling SSL, consider restricting access to an SSL enabled server where feasible. For example, only the internal network might need access. In order to enable and use SSL support, you need the following: - vsftpd built with OpenSSL support. This is a decision your vsftpd packager made, or if you are building vsftpd yourself, edit "builddefs.h" and change the "#undef VSF_BUILD_SSL" to "#define VSF_BUILD_SSL". - "ssl_enable=YES" in your vsftpd.conf. - A SSL certificate. By default, an RSA certificate is looked for at the location /usr/share/ssl/certs/vsftpd.pem. To get an RSA certificate, either buy one from a certificate authority, or you can create your own self-signed certificate. If you have OpenSSL installed, you may find a "Makefile" in your shared certificates directory, e.g. /usr/share/ssl/certs. In that case, go to that directory and type e.g. "make vsftpd.pem". Then answer the questions you are asked. Alternatively, read the man page for "openssl". - Also be aware of the following SSL related parameters. Read the vsftpd.conf.5 manual page to learn about them: allow_anon_ssl, force_local_logins_ssl, force_local_data_ssl, ssl_sslv2, ssl_sslv3, ssl_tlsv1, rsa_cert_file, dsa_cert_file, ssl_ciphers.