835

使用 Git,有没有办法告诉它接受自签名证书?

我正在使用 https 服务器来托管 git 服务器,但现在证书是自签名的。

当我第一次尝试在那里创建存储库时:

git push origin master -f

我得到错误:

error: Cannot access URL     
https://the server/git.aspx/PocketReferences/, return code 22

fatal: git-http-push failed
4

18 回答 18

1505

永久接受特定证书

尝试http.sslCAPathhttp.sslCAInfoAdam Spiers 的回答给出了一些很好的例子。这是该问题的最安全的解决方案。

禁用单个 git 命令的 TLS/SSL 验证

尝试使用正确的配置变量传递-cgit,或使用Flow 的答案

git -c http.sslVerify=false clone https://example.com/path/to/git

禁用特定存储库的 SSL 验证

可以全局停用 ssl 验证。强烈建议不要这样做,但为了完整性而提及:

git config --global http.sslVerify false # Do NOT do this!

中有很多 SSL 配置选项git。从手册页git config

http.sslVerify
    Whether to verify the SSL certificate when fetching or pushing over HTTPS.
    Can be overridden by the GIT_SSL_NO_VERIFY environment variable.

http.sslCAInfo
    File containing the certificates to verify the peer with when fetching or pushing
    over HTTPS. Can be overridden by the GIT_SSL_CAINFO environment variable.

http.sslCAPath
    Path containing files with the CA certificates to verify the peer with when
    fetching or pushing over HTTPS.
    Can be overridden by the GIT_SSL_CAPATH environment variable.

其他一些有用的 SSL 配置选项:

http.sslCert
    File containing the SSL certificate when fetching or pushing over HTTPS.
    Can be overridden by the GIT_SSL_CERT environment variable.

http.sslKey
    File containing the SSL private key when fetching or pushing over HTTPS.
    Can be overridden by the GIT_SSL_KEY environment variable.

http.sslCertPasswordProtected
    Enable git's password prompt for the SSL certificate. Otherwise OpenSSL will
    prompt the user, possibly many times, if the certificate or private key is encrypted.
    Can be overridden by the GIT_SSL_CERT_PASSWORD_PROTECTED environment variable.
于 2012-07-23T23:28:17.183 回答
181

您可以设置GIT_SSL_NO_VERIFYtrue

GIT_SSL_NO_VERIFY=true git clone https://example.com/path/to/git

或者将 Git 配置为不在命令行上验证连接:

git -c http.sslVerify=false clone https://example.com/path/to/git

请注意,如果您不验证 SSL/TLS 证书,那么您很容易受到中间人攻击

于 2013-10-14T15:11:19.333 回答
164

我不是现有答案的[编辑:原始版本] 的忠实粉丝,因为禁用安全检查应该是最后的手段,而不是提供的第一个解决方案。即使您在没有其他验证方法的情况下无法在第一次收到时信任自签名证书,但将证书用于后续git操作至少会使仅在您下载证书后才会发生的攻击变得更加困难。换句话说,如果您下载的证书正版的,那么从那时起您就很好了。相反,如果您只是禁用验证,那么您在任何时候都对任何类型的中间人攻击持开放态度。

举一个具体的例子:著名的repo.or.cz存储库提供了一个自签名证书。我可以下载该文件,将其放在类似的位置/etc/ssl/certs,然后执行以下操作:

# Initial clone
GIT_SSL_CAINFO=/etc/ssl/certs/rorcz_root_cert.pem \
    git clone https://repo.or.cz/org-mode.git

# Ensure all future interactions with origin remote also work
cd org-mode
git config http.sslCAInfo /etc/ssl/certs/rorcz_root_cert.pem

请注意,git config在此处使用 local(即不使用--global)意味着此自签名证书仅受此特定存储库的信任,这很好。它也比使用更好,GIT_SSL_CAPATH因为它消除了git通过可能受到损害的不同证书颁发机构进行验证的风险。

于 2014-11-06T17:44:31.733 回答
61

Git 自签名证书配置

tl;博士

永远不要禁用所有 SSL 验证!

这会造成不良的安全文化。不要成为那个人。

您所追求的配置键是:

这些用于配置您信任的主机证书

这些用于配置您的证书以响应 SSL 挑战。

有选择地将上述设置应用于特定主机。

全球.gitconfig自签名证书颁发机构

为了我自己和我的同事的缘故,我们如何设法让自签名证书在不禁用sslVerify. 编辑您.gitconfig的使用git config --global -e添加这些:

# Specify the scheme and host as a 'context' that only these settings apply
# Must use Git v1.8.5+ for these contexts to work
[credential "https://your.domain.com"]
  username = user.name

  # Uncomment the credential helper that applies to your platform
  # Windows
  # helper = manager

  # OSX
  # helper = osxkeychain

  # Linux (in-memory credential helper)
  # helper = cache

  # Linux (permanent storage credential helper)
  # https://askubuntu.com/a/776335/491772

# Specify the scheme and host as a 'context' that only these settings apply 
# Must use Git v1.8.5+ for these contexts to work
[http "https://your.domain.com"]
  ##################################
  # Self Signed Server Certificate #
  ##################################

  # MUST be PEM format
  # Some situations require both the CAPath AND CAInfo 
  sslCAInfo = /path/to/selfCA/self-signed-certificate.crt
  sslCAPath = /path/to/selfCA/
  sslVerify = true

  ###########################################
  # Private Key and Certificate information #
  ###########################################

  # Must be PEM format and include BEGIN CERTIFICATE / END CERTIFICATE, 
  # not just the BEGIN PRIVATE KEY / END PRIVATE KEY for Git to recognise it.
  sslCert = /path/to/privatekey/myprivatecert.pem

  # Even if your PEM file is password protected, set this to false.
  # Setting this to true always asks for a password even if you don't have one.
  # When you do have a password, even with this set to false it will prompt anyhow. 
  sslCertPasswordProtected = 0

参考:

git clone-ing时指定配置

如果您需要在每个 repo 的基础上应用它,文档会告诉您只git config --local在 repo 目录中运行。好吧,当您还没有在本地克隆 repo 时,这没有用,是吗?

您可以global -> local通过如上所述设置全局配置来做 hokey-pokey,然后在克隆后将这些设置复制到本地 repo 配置中......

或者您可以做的是在克隆后指定配置命令应用于目标存储库。git clone

# Declare variables to make clone command less verbose     
OUR_CA_PATH=/path/to/selfCA/
OUR_CA_FILE=$OUR_CA_PATH/self-signed-certificate.crt
MY_PEM_FILE=/path/to/privatekey/myprivatecert.pem
SELF_SIGN_CONFIG="-c http.sslCAPath=$OUR_CA_PATH -c http.sslCAInfo=$OUR_CA_FILE -c http.sslVerify=1 -c http.sslCert=$MY_PEM_FILE -c http.sslCertPasswordProtected=0"

# With this environment variable defined it makes subsequent clones easier if you need to pull down multiple repos.
git clone $SELF_SIGN_CONFIG https://mygit.server.com/projects/myproject.git myproject/

一个班轮

编辑:请参阅VonC回答,该回答指出了从 2.14.x/2.15 到这一行的特定 git 版本的绝对和相对路径的警告

git clone -c http.sslCAPath="/path/to/selfCA" -c http.sslCAInfo="/path/to/selfCA/self-signed-certificate.crt" -c http.sslVerify=1 -c http.sslCert="/path/to/privatekey/myprivatecert.pem" -c http.sslCertPasswordProtected=0 https://mygit.server.com/projects/myproject.git myproject/

中央操作系统unable to load client key

如果你在 CentOS 上尝试这个并且你的.pem文件给了你

unable to load client key: "-8178 (SEC_ERROR_BAD_KEY)"

然后,您将需要有关如何使用 NSS 而不是 Open SSL 的StackOverflow 答案。curl

你会想从源代码重建curl

git clone http://github.com/curl/curl.git curl/
cd curl/
# Need these for ./buildconf
yum install autoconf automake libtool m4 nroff perl -y
#Need these for ./configure
yum install openssl-devel openldap-devel libssh2-devel -y

./buildconf
su # Switch to super user to install into /usr/bin/curl
./configure --with-openssl --with-ldap --with-libssh2 --prefix=/usr/
make
make install

重新启动计算机,因为 libcurl 仍作为共享库在内存中

Python、pip 和 conda

相关如何将自定义 CA 根证书添加到 Windows 中 pip 使用的 CA 存储?

于 2016-12-21T01:22:15.180 回答
24

此答案摘自Michael Kauffman 撰写的这篇文章。

将 Git for Windows 与企业 SSL 证书一起使用

问题

如果您拥有企业 SSL 证书并想从控制台或 VSCode 克隆您的存储库,则会收到以下错误:

致命:无法访问'<a href="https://myserver/tfs/DefaultCollection/_git/Proj/" rel="noreferrer">https://myserver/tfs/DefaultCollection/_git/Proj/':SSL 证书问题:无法获取本地颁发者证书

解决方案

  1. 将根自签名证书导出到文件。您可以在浏览器中执行此操作。

  2. 在您的 git 文件夹中找到“ca-bundle.crt”文件(当前版本 C:\Program Files\Git\usr\ssl\certs,但过去已更改)。将文件复制到您的用户配置文件。使用 VSCode 之类的文本编辑器打开它,然后将导出的证书的内容添加到文件末尾。

现在我们必须配置 git 以使用新文件:

git config --global http.sslCAInfo C:/Users/<yourname>/ca-bundle.crt

这会将以下条目添加到用户配置文件根目录中的 .gitconfig 文件中。

[http] sslCAInfo = C:/Users/<yourname>/ca-bundle.crt

于 2018-03-27T14:30:11.027 回答
22

将 http.sslVerify 设置为 false 不是一个好习惯。相反,我们可以使用 SSL 证书。

因此,构建代理将使用带有 SSL 证书和 PAT 的 https 进行身份验证。 在此处输入图像描述

在此处输入图像描述

在此处输入图像描述

复制 cer 文件的内容,包括-begin-和-end--。

构建代理上的 git bash => git config –global http.sslcainfo “C:/Program Files/Git/mingw64/ssl/certs/ca-bundle.crt” 转到此文件并附加 .cer 内容。

因此,构建代理可以访问 SSL 证书

于 2020-02-17T12:00:17.127 回答
16

我一直遇到这个问题,所以编写了一个脚本来从服务器下载自签名证书并将其安装到 ~/.gitcerts,然后更新 git-config 以指向这些证书。它存储在全局配置中,因此每个远程只需要运行一次。

https://github.com/iwonbigbro/tools/blob/master/bin/git-remote-install-cert.sh

于 2014-12-19T22:40:44.807 回答
11

禁用特定存储库的 SSL 验证如果存储库完全在您的控制之下,您可以尝试:

 git config --global http.sslVerify false
于 2019-11-26T11:19:35.897 回答
6

在 Windows 上使用 64 位版本的 Git,只需将自签名 CA 证书添加到这些文件中:

  • C:\Program Files\Git\mingw64\ssl\certs\ca-bundle.crt
  • C:\Program Files\Git\mingw64\ssl\certs\ca-bundle.trust.crt

如果它只是一个服务器自签名证书,请将其添加到

  • C:\Program Files\Git\mingw64\ssl\cert.pem
于 2018-03-05T12:52:20.920 回答
4

当您使用 sslKey 或 sslCert 使用一个班轮时要小心,如Josh Peak回答

git clone -c http.sslCAPath="/path/to/selfCA" \
  -c http.sslCAInfo="/path/to/selfCA/self-signed-certificate.crt" \
  -c http.sslVerify=1 \
  -c http.sslCert="/path/to/privatekey/myprivatecert.pem" \
  -c http.sslCertPasswordProtected=0 \
https://mygit.server.com/projects/myproject.git myproject

只有 Git 2.14.x/2.15(2015 年第三季度)能够~username/mykey正确解释路径(虽然它仍然可以解释绝对路径/path/to/privatekey)。

请参阅Junio C Hamano ( ) 的提交 8d15496(2017 年 7 月 20 日。 帮助者:查尔斯·贝利 ( )(由Junio C Hamano 合并 -- --提交 17b1e1d中,2017 年 8 月 11 日)gitster
hashpling
gitster

http.c:http.sslcert并且http.sslkey都是路径名

回到创建现代 http_options() 代码路径以解析 29508e1 处的各种 http.* 选项 “隔离共享 HTTP 请求功能”,2005-11-18,Git 0.99.9k)时,后来更正了多个之间的交互7059cd9 (" : Fix config file parsing", 2009-03-09, Git 1.6.3-rc0) 中的配置文件http_init(),我们将配置变量如http.sslkey,解析http.sslcert为普通字符串,因为git_config_pathname()它理解“ ~[username]/”前缀不存在。

后来,我们将其中的一些(即http.sslCAPathhttp.sslCAInfo)转换为使用该函数,并从一开始就添加了类似于http.cookeyFile http.pinnedpubkey使用该函数的变量。正因为如此,这些变量都理解“ ~[username]/”前缀。

让剩下的两个变量http.sslcerthttp.sslkey,也知道约定,因为它们都是文件的明确路径名。

于 2017-08-13T18:25:42.147 回答
4

在 Windows 上,这对我有用:

将您的自签名证书的内容添加到ca-bundle文件的末尾。包括-----BEGIN CERTIFICATE----------END CERTIFICATE-----

ca-bundle文件的位置通常是C:\Program Files\Git\mingw64\ssl\certs

然后,将ca-bundle文件的路径添加到全局 git 配置中。以下命令可以解决问题:git config --global http.sslCAInfo "C:/Program Files/Git/mingw64/ssl/certs/ca-bundle.crt"

备注:路径取决于你本地的ca-bundle文件路径!

于 2019-06-24T10:26:53.230 回答
3

检查您的防病毒和防火墙设置。

从一天到另一天,git 不再工作了。综上所述,我发现卡巴斯基在中间放了一个自签名的杀毒个人根证书。按照上面的说明,我没有设法让 Git 接受该证书。我放弃了。对我有用的是禁用扫描加密连接的功能。

  1. 打开卡巴斯基
  2. 设置 > 附加 > 网络 > 不扫描加密连接

在此之后,git 在启用 sslVerify 的情况下再次工作。

笔记。这对我来说仍然不满意,因为我想激活我的反病毒功能。在高级设置中,卡巴斯基会显示无法使用该功能的网站列表。Github 没有被列为其中之一。我会在卡巴斯基论坛上查看。似乎有一些主题,例如 https://forum.kaspersky.com/index.php?/topic/395220-kis-interfering-with-git/&tab=comments#comment-2801211

于 2018-05-19T12:03:45.903 回答
3

关于http.sslCAPath选项的说明:如果OpenSSL c_rehash 命令已在包含证书文件的目录上运行,git则只会检测给定目录路径中的证书文件。该命令将为每个证书创建符号链接,其中链接的名称是哈希值。例如:c_rehash

$ cd /path/to/ssl/cert/directory

$ ls -al

  total 16
  drwxr-xr-x  3 user  staff    96 Oct 20 13:47 .
  drwxr-xr-x  4 user  staff   128 Oct 20 13:46 ..
  -rw-r--r--  1 user  staff  4832 Oct 20 13:47 google.pem

$ /usr/local/opt/openssl@1.1/bin/c_rehash ./

  Doing ./

$ ls -al

  total 16
  drwxr-xr-x  4 user  staff   128 Oct 20 13:58 .
  drwxr-xr-x  4 user  staff   128 Oct 20 13:46 ..
  lrwxr-xr-x  1 user  staff    10 Oct 20 13:58 f6dbf7a7.0 -> google.pem
  -rw-r--r--  1 user  staff  4832 Oct 20 13:47 google.pem

请注意,该c_rehash命令已创建以下符号链接:f6dbf7a7.0 -> google.pem.

您也可以将以下命令替换为c_rehash实用程序,但请注意,以下命令将仅处理*.pem文件,而c_rehash实用程序将处理.pem, .crt, .cer, or .crl文件:

for file in *.pem; do ln -s $file `openssl x509 -hash -noout -in $file`.0; done

如果您现在配置http.sslCAPath到包含上述符号链接的目录,git将获取证书文件:

# contents of /etc/gitconfig
[http]
        sslCAPath = /path/to/ssl/cert/directory/

您还可以http.sslCAPath使用环境变量进行配置:

export GIT_SSL_CAPATH=/path/to/ssl/cert/directory/
于 2021-10-20T03:11:02.083 回答
2

我使用 Windows 机器,这篇文章帮助了我。基本上我在记事本中打开了 ca-bundle.crt 并在其中添加了链证书(全部)。这个问题通常发生在公司网络中,我们在系统和 git repo 之间有中间人。我们需要以 base 64 格式导出证书链中除叶子证书之外的所有证书,并将它们全部添加到 ca-bundle.crt 中,然后为这个修改后的 crt 文件配置 git。

于 2019-08-06T09:29:52.137 回答
1

.gitconfig文件中,您可以添加以下给定值以使自签名证书可接受

sslCAInfo = /home/XXXX/abc.crt

于 2017-11-09T15:53:45.603 回答
1

我的回答可能会迟到,但它对我有用。它可能会帮助某人。

我尝试了上述步骤,但并没有解决问题。

试试这个git config --global http.sslVerify false

于 2019-03-19T03:44:42.860 回答
0

我这样做:

git init
git config --global http.sslVerify false
git clone https://myurl/myrepo.git
于 2018-10-27T19:15:31.880 回答
-3

它对我有用,只需运行以下命令

git config --global http.sslVerify false

它将打开一个 git 凭据窗口,提供您的凭据。第一次只问

于 2021-02-23T04:24:24.723 回答