用Mellivora搭建CTF靶场环境

所用系统:Ubuntu20.04

(记得先给虚拟机联网嗷~NAT模式)

正式步骤:

1、在应用中找到软件和更新,转换站点,这里选用最佳站点,反正就是出问题可以尝试换源,确定后关闭软件与更新弹窗时会有一个新的弹窗,选择重新载入便可,载入成功后弹窗会自动关闭

2、打开终端:

1)切换到root用户:

sudo su

2)更新软件源中所有软件列表:

apt-get update

3)更新软件:

apt-get upgrade

4)安装curl:

apt install curl

5)安装pip3:

apt install -y python3-pip

6)安装最新版docker:

curl -s https://get.docker.com/ | sh

7)运行docker:

service docker start

8)安装docker compose:

pip3 install docker-compose

9)安装git:

apt install -y git

10)下载Mellivora源代码包:

git clone https://github.com/Nakiami/mellivora

11)进入Mellovora目录

cd mellivora

12)运行环境:

docker-compose -f docker-compose.dev.yml up

当出现如下界面,代表此时环境已经安装成功,在Ubuntu浏览器地址栏内输入http://localhost/home便可访问:

用Mellivora搭建CTF靶场环境_第1张图片

用Mellivora搭建CTF靶场环境_第2张图片

以下是注册界面:

用Mellivora搭建CTF靶场环境_第3张图片

 注册用户后,可在地址栏输入http://localhost:18080来访问后台数据库提升当前用户为管理员:

服务器 db
用户名 root
密码 password
数据库 mellivora

用Mellivora搭建CTF靶场环境_第4张图片

 用Mellivora搭建CTF靶场环境_第5张图片

登录到后台数据库后,选择users表,在选择数据选项中对刚才注册的账户进行编辑,使其class值为100后保存修改,此时该账户就成为了该CTF平台的管理员账户。

你可能感兴趣的:(渗透测试学习笔记,网络安全)