Date: Thu, 29 Oct 2020 07:49:38 +0000 From: bugzilla-noreply@freebsd.org To: ports-bugs@FreeBSD.org Subject: [Bug 250716] sysutils/py-hpilo: RC4-SHA is no longer available in openssl Message-ID: <bug-250716-7788@https.bugs.freebsd.org/bugzilla/>
next in thread | raw e-mail | index | archive | help
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D250716 Bug ID: 250716 Summary: sysutils/py-hpilo: RC4-SHA is no longer available in openssl Product: Ports & Packages Version: Latest Hardware: Any OS: Any Status: New Severity: Affects Some People Priority: --- Component: Individual Port(s) Assignee: pizzamig@freebsd.org Reporter: matthias.pfaller@familie-pfaller.de Assignee: pizzamig@freebsd.org Flags: maintainer-feedback?(pizzamig@freebsd.org) py37-hpilo_cli will fail because RC4-SHA is no longer available. Replacing = the set_ciphers with a nop does the job for me, but it will probably no longer = work with older (iLO3?) devices. regards, Matthias --- /usr/local/lib/python3.7/site-packages/hpilo.py~ 2020-10-06 19:52:33.000000000 +0200 +++ /usr/local/lib/python3.7/site-packages/hpilo.py 2020-10-29 08:41:25.082982000 +0100 @@ -400,7 +400,7 @@ # Even more sadly, some iLOs are still using RC4-SHA # which was dropped from the default cipher suite in # Python 2.7.10 and Python 3.4.4. Add it back here :( - self.ssl_context.set_ciphers("RC4-SHA:" + ssl._DEFAULT_CIPHERS) + self.ssl_context.set_ciphers(ssl._DEFAULT_CIPHERS) return self.ssl_context.wrap_socket( sock, server_hostname=3Dself.hostname) except ssl.SSLError as exc: --=20 You are receiving this mail because: You are the assignee for the bug.=
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-250716-7788>