Server IP : 80.241.246.6 / Your IP : 216.73.216.129 Web Server : Apache/2.4.25 (Debian) System : Linux kharagauli 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64 User : www-data ( 33) PHP Version : 7.0.33-0+deb9u12 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/local/letsencrypt/tests/letstest/scripts/ |
Upload File : |
#!/usr/bin/env python # Test script for OpenSSL version checking from distutils.version import LooseVersion import sys def main(openssl_version, apache_version): if not openssl_version.strip(): raise Exception("No OpenSSL version found.") if not apache_version.strip(): raise Exception("No Apache version found.") conf_file_location = "/etc/letsencrypt/options-ssl-apache.conf" with open(conf_file_location) as f: contents = f.read() if LooseVersion(apache_version.strip()) < LooseVersion('2.4.11') or \ LooseVersion(openssl_version.strip()) < LooseVersion('1.0.2l'): # should be old version # assert SSLSessionTickets not in conf file if "SSLSessionTickets" in contents: raise Exception("Apache or OpenSSL version is too old, " "but SSLSessionTickets is set.") else: # should be current version # assert SSLSessionTickets in conf file if "SSLSessionTickets" not in contents: raise Exception("Apache and OpenSSL versions are sufficiently new, " "but SSLSessionTickets is not set.") if __name__ == '__main__': main(*sys.argv[1:])