Questions tagged «ssl»

SSL问题是指安全套接字层通信协议,还是与受信任的签名机构颁发的签名证书进行交互。

5
无法连接到某些HTTPS网站
我刚搬到一间新公寓,并通过路由器与Internet连接,但发现无法连接到许多使用SSL的站点。 例如,尝试连接到贝宝: curl -v https://paypal.com * About to connect() to paypal.com port 443 (#0) * Trying 66.211.169.3... connected * successfully set certificate verify locations: * CAfile: none CApath: /etc/ssl/certs * SSLv3, TLS handshake, Client hello (1): * Unknown SSL protocol error in connection to paypal.com:443 * Closing connection #0 curl: …
12 12.04  ssl  https 

2
找不到/etc/pki/tls/certs/ca-bundle.crt
我正在curl -L https://get.rvm.io | bash -s stable安装RVM。我说错了 CAfile: /etc/pki/tls/certs/ca-bundle.crt CApath: none 我在互联网上搜索了一下,发现更改的权限/etc/pki/tls/certs/ca-bundle.crt应该可以完成工作。但是/etc/pki我的系统缺少整个目录。我该如何解决?
12 12.10  ssl  curl 


1
Ubuntu中的开源FortiGate(Forti SSL VPN)客户端支持
是否有人在向Ubuntu添加对开源FortiGate SSL VPN NetworkManager客户端的支持? 根据此博客https://blogs.gnome.org/lkundrak/2015/09/24/fortigate-ssl-vpn-support-added-to-networkmanager/的介绍,它最初对开源FortiGate客户端提供支持。 (前端:network-manager-fortisslvpn,后端:openfortivpn) 如果没有人,我该如何帮助? 我是软件开发人员,但是没有Ubuntu打包规则/贡献策略的经验。欢迎任何建设性的指导。

2
libcurl3和libcurl4有什么区别
我当时正在设置Ubuntu 14.04开发环境,然后安装libcurl,但是注意到我的智能缓存中有两个不同的版本。版本之间的主要区别是什么?人们对Django项目推荐哪些区别? 我以为libcurl4是较新的,并且可能会更好,但是我担心它可能会破坏与其他产品的兼容性,对蛇油证书表现不佳,或者将来使我头疼。 libcurl4有什么我应该注意的大陷阱吗?谢谢。
11 14.04  ssl  curl 

3
从Google Code检出代码时出现问题
我最近已升级到Ubuntu 11.10,此后,我一直无法从Google Code检出代码。我无法使用svn或git来获取它,但是它们在升级之前都可以正常工作(因此我假设11.10存在问题)。 SVN: $ svn checkout https://project.googlecode.com/svn/ project --username me@gmail.com svn: OPTIONS of 'https://project.googlecode.com/svn': SSL handshake failed: Secure connection truncated (https://project.googlecode.com) Git: $ git clone https://me@code.google.com/p/project/ Cloning into project... Password: error: gnutls_handshake() failed: A TLS packet with unexpected length was received. while accessing https://me@code.google.com/p/project/info/refs fatal: HTTP request failed 有任何想法吗? …
10 11.10  git  svn  ssl 

3
如何验证DDCLIENT正在使用SSL,如果未使用SSL,如何强制使用它?
我一直在按照本指南在pi上设置VPN。步骤的一部分是设置和配置动态dns服务。我已经在多个平台上创建了多个帐户。ip和dynamicdns就是其中两个。下面是我的ddclient.conf文件的输出,它在两个动态dns站点上均正常连接。 daemon=60 # check every 60 seconds syslog=yes # log update msgs to syslog mail=root # mail all msgs to root mail-failure=root # mail failed update msgs to root pid=/var/run/ddclient.pid # record PID in file. ssl=yes # use ssl-support. Works with # ssl-library use=web, web=myip.dnsdynamic.com # get ip from server. …
9 dns  openvpn  ssl  dyndns  ddclient 

1
是否有关于设置SSL以供localhost /测试使用的现代且清晰的教程?
假设我正在为login.example.com开发脚本。我绝对无权访问login.example.com,但是该页面将脚本加载到asset.example.com(我可以访问)。为了测试新脚本在生产登录页面上的运行情况,我将/ etc / hosts更改为将asset.example.com指向本地主机(并相应地设置了Apache)。 现在唯一的问题是登录页面加载https://assets.example.com/script.js(再次,我对此没有任何影响!)。因此,为了测试脚本,我需要设置一个自签名SSL证书。 我按照这里的指示进行操作:https : //help.ubuntu.com/11.10/serverguide/C/certificates-and-security.html 我还尝试使用default-ssl对其进行测试,但均无济于事。我只是不断地收到SSL连接错误: // Error 107 (net::ERR_SSL_PROTOCOL_ERROR): SSL protocol error. (Chrome) 谢谢! 更新:由于我们现在的版本是12.04 LTS && 12.10,因此本教程应解决这些版本。
9 12.04  12.10  ssl  openssl 

1
openssl / curl错误:SSL23_GET_SERVER_HELLO:tlsv1警报内部错误
从Ubuntu 14.04与opensl或curl连接到我们的一台服务器时,我们遇到了非常奇怪的问题 执行中: openssl s_client -connect ms.icometrix.com:443 给出: CONNECTED(00000003) 140557262718624:error:14077438:SSL routines:SSL23_GET_SERVER_HELLO:tlsv1 alert internal error:s23_clnt.c:770: 执行时出现类似的错误: curl https://ms.icometrix.com curl: (35) error:14077438:SSL routines:SSL23_GET_SERVER_HELLO:tlsv1 alert internal error openssl版本的输出(在客户端/服务器上): OpenSSL 1.0.1f 6 Jan 2014 dpkg -l openssl的openssl输出: 1.0.1f-1ubuntu2 有趣的是,当与其他版本的Openssl连接时问题消失了: 从Mac,OpenSSL 0.9.8zd,2015年1月8日,一切正常 来自centos,OpenSSL 1.0.1e-fips,2013年2月11日,一切正常 没关系,Ubuntu 14.04的最新稳定版本,OpenSSL 1.0.2d于2015年7月9日正常。 从服务器端,我们看不到任何奇怪的东西。当我们在机器上禁用SSL3时,问题就开始了。 apt-get中的版本可能有问题吗? 我们还测试了其他版本,即apt-cache showpkg提出的版本,但问题仍然存在...
9 ssl  openssl  tls 

1
在安装libnss3的Ubuntu安全更新后,Chromium中多个Google网站的“ SSL协议错误”
方案:运行Ubuntu 12.04.5 LTS(64位)的便携式计算机(“精确的穿山甲”) 问题:在Chromium Web浏览器中-“ Version 37.0.2062.120 Ubuntu 12.04(281580)(64位) ”-安装了2016年2月18日可用的Ubuntu安全更新后,尝试访问时出现以下错误一些Google网站(例如https://www.google.com ; https://plus.google.com/ ; https://hangouts.google.com/): SSL连接错误 无法与服务器建立安全连接。这可能是服务器出现问题,或者可能需要您没有的客户端身份验证证书。 错误代码:ERR_SSL_PROTOCOL_ERROR 这些网站仍可以使用其他网络浏览器正确显示在同一台计算机上,即Google Chrome- “ 版本48.0.2564.109(64位) ”-或Mozilla Firefox-版本“ 44.0.2 ” 2016年2月18日安装的更新如下: libnss3:amd64(3.19.2.1-0ubuntu0.12.04.2,3.21-0ubuntu0.12.04.1) libnss3:i386(3.19.2.1-0ubuntu0.12.04.2,3.21-0ubuntu0.12.04.1) libnss3-1d:amd64(3.19.2.1-0ubuntu0.12.04.2,3.21-0ubuntu0.12.04.1) “ libnss3 ”在http://packages.ubuntu.com/search?keywords=libnss3上被列为“ 网络安全服务库 ”,因此,我相信更新可能与我面临的此问题有关。 是否有人对此问题有任何信息和/或进行其他疑难解答的提示?
8 12.04  chromium  ssl 

3
Ubuntu 16.04 + libssl0.9.8-没有安装候选程序吗?
我在Xubuntu / Ubuntu 16.04上,正在尝试安装libssl0.9.8: sudo apt-get install libssl0.9.8 错误: Reading package lists... Done Building dependency tree Reading state information... Done Package libssl0.9.8 is not available, but is referred to by another package. This may mean that the package is missing, has been obsoleted, or is only available from another source …

4
如何在tomcat中禁用SSLv3?
请提供有关如何修补/解决SSLv3 POODLE漏洞(CVE-2014-3566)的修补程序?对于Tomcat。 我尝试了以下链接,但是它没有帮助:tomcat-users邮件列表档案
8 security  ssl  tomcat7 

1
证书错误
我正在使用ubuntu 16.04在virtualbox上工作,也在公司网络上工作。任何尝试连接到Internet的事物都会以未知的发行者错误进行响应。我了解到我所有的互联网流量都经过公司的VPN,并且VPN颁发了证书,现在我需要知道在证书中放入什么内容以及从何处获取该信息,以便我的计算机信任作为证书颁发者的公司服务器。谢谢!
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.