Hello everyone, It also may be you are using old Squid that does not support signing faked certificate with algorithm other than SHA-1 (because it was hardcoded at that time).
This is the case of Squid 3.3.8 usually present in stable Ubuntu 14 LTS and CentOS 7. In order to fix it you either need to go to most recent Squid (preferred) or recompile your Squid after applying a small patch like the following: --- gadgets.cc 2013-07-13 15:25:14.000000000 +0200 +++ gadgets.cc.new 2015-11-09 23:00:47.591124352 +0100 @@ -389,9 +389,9 @@ /*Now sign the request */ if (properties.signAlgorithm != Ssl::algSignSelf && properties.signWithPkey.get()) - ret = X509_sign(cert.get(), properties.signWithPkey.get(), EVP_sha1()); + ret = X509_sign(cert.get(), properties.signWithPkey.get(), EVP_sha256()); else //else sign with self key (self signed request) - ret = X509_sign(cert.get(), pkey.get(), EVP_sha1()); + ret = X509_sign(cert.get(), pkey.get(), EVP_sha256()); if (!ret) return false; There is doc article and repo that has it all explained: http://docs.diladele.com/administrator_guide_4_4/install/ubuntu14/squid.html https://github.com/ra-at-diladele-com/qlproxy_external/tree/master/src/va/scripts.ubuntu14 But please take it with a huge grain of salt if you can. Best regards, Rafael Akchurin Diladele B.V.
http://www.quintolabs.com http://www.diladele.com -- Please take a look at Web Safety - our ICAP based web filter server for Squid proxy. From: squid-users [mailto:squid-users-bounces@xxxxxxxxxxxxxxxxxxxxx]
On Behalf Of Diogenes S. Jesus The answer why you only see it on Chrome is because since Chrome >= 41: "Sites with end-entity certificates that expire on or after 1 January 2017, and which include a SHA-1-based signature as part of the certificate chain, will be treated as “affirmatively insecure”.
Subresources from such domain will be treated as “active mixed content”." Best regards On Wed, Aug 31, 2016 at 5:24 PM, Alex Rousskov <rousskov@xxxxxxxxxxxxxxxxxxxxxxx> wrote:
--
|
_______________________________________________ squid-users mailing list squid-users@xxxxxxxxxxxxxxxxxxxxx http://lists.squid-cache.org/listinfo/squid-users