Questions tagged «https»

安全超文本传输​​协议

7
如何为命令行安装证书
因此,在学校,我们需要安装证书才能访问https站点。在firefox中,我可以导入证书。但是,我不能在命令行中这样做。例如,运行git push我得到: fatal: unable to access 'https://github.com/user/repo': server certificate verification failed. CAfile: /etc/ssl/certs/ca-certificates.crt CRLfile: none 如何导入证书以删除此证书?导入必须能够为我进行身份验证。另外,它是一个.cer文件,因此答案.crt不起作用。另外,我不想要像我已经有了的有关如何设置git的步骤。我想知道是否可以这样做。还是可以完全禁用该git命令的身份验证,使其忽略证书,如此处的答案所示?另外,我不想加载网页,我已经设置了firefox来做到这一点。我希望git push命令提供标准输出,例如: [master 630d087] message 1 file changed, 93 insertions(+), 80 deletions(-) rewrite somefile (84%) Counting objects: 9, done. Delta compression using up to 4 threads. Compressing objects: 100% (4/4), done. Writing objects: 100% (5/5), …



3
将git与gnome-keyring和http(s)仓库一起使用的正确方法是什么?
目前,每当我git pull还是git push一个HTTP(S)库,我得到如下: $ git pull Username for 'https://gitrepos.reposdomain.com': me@mydomain.com Password for 'https://me@mydomain.com@gitrepos.reposdomain.com': 偶尔使用是可以的,但是很快就变得非常烦人。 不幸的是,在这种情况下,不能切换到ssh。 我已经读到早期版本的git提供了凭据“ store”和“ cache”,但是不建议这样做,因为它以明文形式存储密码。 但 较新的版本git显然将git凭证存储在中gnome-keyring,但必须正确设置。 我已经尝试在SO上遵循其他(非Ubuntu)答案,以使其正常工作(即this),但是我仍然看到用户名和密码提示。 存储githttp(s)仓库的凭据的正确和最安全的方法是什么?如何使它们在Ubuntu上工作?

7
在没有代理的情况下,对某些站点的Python HTTPS请求(urllib2)在Ubuntu 12.04上失败
我有一个用Python编写的小应用程序,它曾经可以工作……直到昨天,突然它开始给我HTTPS连接错误。我不记得是否有更新,但是Python 2.7.3rc2和Python 3.2都失败了。 我在Google上进行了搜索,发现当人们在代理背后时会发生这种情况,但是我却没有(自从上次工作以来,我的网络没有任何变化)。我的系统的运行Windows和Python 2.7.2的计算机没有问题(在同一网络中)。 >>> url = 'https://www.mediafire.com/api/user/get_session_token.php' >>> response = urllib2.urlopen(url).read() File "/usr/lib/python2.7/urllib2.py", line 126, in urlopen return _opener.open(url, data, timeout) File "/usr/lib/python2.7/urllib2.py", line 400, in open response = self._open(req, data) File "/usr/lib/python2.7/urllib2.py", line 418, in _open '_open', req) File "/usr/lib/python2.7/urllib2.py", line 378, in _call_chain result = func(*args) …
23 12.04  python  ssl  https 


2
更新http_proxy环境变量
我最近更改了与代理用户名相对应的密码。因此,我用新密码更新了apt.conf和/ etc / environment文件。但是当我键入 echo $http_proxy 要么 env 打印所有环境变量,并显示带有旧密码的值。对于socks_proxy,all_proxy同样。 有什么办法吗?


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
如何更正Google Earth的“无效HTTP请求”通知?
我正在运行Ubuntu 12.04。如您所知,Google Earth 7尚未在Ubuntu 12.04中运行。 我通过make-googleearth-package --force命令安装了Google Earth 。我的安装成功。刚开始时,一切正常。但是几天后,我遇到了问题。当我在“飞往”框中键入一个城市时,我想搜索它。如图所示,它给了我“无效的HTTP请求”错误: 怎么解决? PS:我删除并重新安装了它,但问题仍然存在。我只能通过鼠标搜索地球。
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.