libgit2 / libgit2/libgit2sharp
Disable SSL Certificate Check: 'unknown certificate lookup failure: 33'
未关闭
还没有人认领这个 Issue。
- 主要语言
- C#
- 星标
- 3.5k
- 派生
- 925
- PR 合并指标
- 30 天内没有已合并 PR
描述
I want to disable certificate verification when cloning a repo from GitLab.
The code I am using is:
var options = new CloneOptions();
options.FetchOptions.CredentialsProvider = (_url, _user, _cred)
=> new UsernamePasswordCredentials
{
Username = "user",
Password = "token"
};
options.FetchOptions.CertificateCheck += delegate (Certificate certificate, bool valid, string host)
{
return true;
};
Repository.Clone(cloneUrl, cloneDirectoryPath, options);
But I got this error when cloning:
unknown certificate lookup failure: 33
Version of LibGit2Sharp (release number or SHA1)
v0.30.0
Operating system(s) tested; .NET runtime tested
Windows 10
C# net8.0
贡献指南
从这里开始
- 先读完整个 Issue,再读项目的贡献指南。
- 在 Issue 下留言说明你要接手 —— 这能避免两个人做同样的事。
- Fork 仓库,在一个分支上完成修改。
- 提交 Pull Request,并在描述里引用这个 Issue 编号。
调研方向
首先,按照所示方式使用 CloneOptions、FetchOptions.CertificateCheck 和 Repository.Clone,在 Windows 10、.NET 8.0 和 LibGit2Sharp v0.30.0 环境中复现该案例。跟踪证书回调以及“unknown certificate lookup failure: 33”的来源;当理解所报告的 GitLab 克隆行为并验证预期的证书检查处理方式后,即视为完成。
由索引模型根据 Issue 内容生成。
评估
- 技术栈
- csharp, git
- 领域
- security
- Issue 类型
- 缺陷
- 难度
- 4/5
- 预计耗时
- 3-5 天
- 活跃度
- 停滞
- 描述清晰度
- 基本清楚
- 新手友好度
- 35/100