zoukankan      html  css  js  c++  java
  • kali安装docker

    最近要在客户现场做一次钓鱼测试,开始用的自己的云服务器搭了一个钓鱼平台,但是发现国内的25端口全被禁了,自己有没有国外的服务器没办法只能用自己的虚拟机了。

    下面是安装步骤:

      1、安装https协议、CA证书、dirmngr

        apt-get update 、apt-get install -y apt-transport-https ca-certificates、 apt-get install dirmngr

      2、添加GPG密钥并添加更新源

        curl -fsSL https://mirrors.tuna.tsinghua.edu.cn/docker-ce/linux/debian/gpg | sudo apt-key add -

        echo 'deb https://mirrors.tuna.tsinghua.edu.cn/docker-ce/linux/debian/ buster stable' | sudo tee /etc/apt/sources.list.d/docker.list

      3、系统更新以及安装docker

        apt-get update 、apt install docker-ce

      4、启动docker服务器

        service docker start

      5、安装docker-compose

        apt install docker-compose

    后续更新钓鱼平台gophish使用。

    勿做伸手党,勤思考,总能成就一番事业。
  • 相关阅读:
    python--DAY7面向对象进阶
    python--socket实例
    Python---day5-各类模块的使用
    python--day4--迭代器、生成器
    Python--三元运算与lambda表达式
    python--函数式登录程序
    Python--变量作用域
    Python--函数
    Python----文件的IO操作
    swagger2文档的步骤
  • 原文地址:https://www.cnblogs.com/X-caiji/p/13439034.html
Copyright © 2011-2022 走看看