Kali中搭建vulhub时镜像git失败

Posted 新网工李白

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Kali中搭建vulhub时镜像git失败相关的知识,希望对你有一定的参考价值。

✒️ 问题描述

Kali中搭建vulhub漏洞复现环境是时由于没有docker镜像加速器而导致vulhub images git不下来。

🔪 解决方案

配置免费Docker镜像加速器
Ubuntu

sudo mkdir -p /etc/docker
sudo tee /etc/docker/daemon.json <<-'EOF'
{
  "registry-mirrors": ["https://l10nt4hq.mirror.aliyuncs.com"]
}
EOF
sudo systemctl daemon-reload
sudo systemctl restart docker

Centos和Kali

sudo mkdir -p /etc/docker
sudo tee /etc/docker/daemon.json <<-'EOF'
{
  "registry-mirrors": ["https://l10nt4hq.mirror.aliyuncs.com"]
}
EOF
sudo systemctl daemon-reload
sudo systemctl restart docker

配置完之后继续git

git clone https://github.com/vulhub/vulhub.git

换镜像
GitHub上下载很慢,用码云的镜像

git clone https://gitee.com/puier/vulhub.git

以上是关于Kali中搭建vulhub时镜像git失败的主要内容,如果未能解决你的问题,请参考以下文章

vulnhub靶场搭建

kali2.0中搭建Vulhub

vulhub靶场搭建与使用

kali中安装漏洞靶场Vulhub(超详细)

kali中安装漏洞靶场Vulhub(超详细)

Vulhub靶场搭建