docker方式安装awvs和nessus渗透工具

docker-compose.yaml文件

version: '2'
services:
 awvsnessus:
   image: leishianquan/awvs-nessus:v4
   environment:
     NESSUS_TZ_DIR: '/usr/share/zoneinfo'
   ports:
    - "8834:8834"
    - "3443:3443"

破解awvs

注:执行docker-compose up -d 后,容器已经启动了awvs服务了
cp /home/license_info.json /home/acunetix/.acunetix/data/license/ #第一次使用破解awvs

启动nessusd服务

docker-compose exec awvsnessus /bin/bash
/etc/init.d/nessusd start

访问

awvs

url: https://127.0.0.1:13443/
username: leishi@leishi.com
password: Leishi123

Nessus

url: https://127.0.0.1:8834/#/
username:leishi
password:leishianquan

注:本文参考自:https://www.cxyzjd.com/article/weixin_54430466/114525206
最后感谢雷石安全实验室将制作的docker镜像予以分享

原文地址:https://www.cnblogs.com/zunwen/p/15538642.html