zoukankan      html  css  js  c++  java
  • docker openvas

    https://hub.docker.com/r/mikesplain/openvas/

    Requirements

    Docker
    Ports available: 443, 9390, 9391

    Usage

    Simply run:

    docker run -d -p 443:443 -p 9390:9390 -p 9391:9391 --name openvas mikesplain/openvas
    

    This will grab the container from the docker registry and start it up. Openvas startup can take some time (4-5 minutes while NVT's are scanned and databases rebuilt), so be patient. Once you see a gasdprocess in the top command below, the web ui is good to go. Goto https://<machinename>

    Username: admin
    Password: openvas
    

    To check the status of the process, run:

    docker top openvas
    

    In the output, look for the process scanning cert data. It contains a percentage.

    To run bash inside the container run:

    docker exec -it openvas bash
    

    Config

    By default GSAD will run on 443 with self signed certs. If you would like to run
    this on 80 without certs you can pass the following param and change the port in
    docker run from 443 to 80

    docker run -d -p 80:80 -p 9390:9390 -p 9391:9391 -e HTTP_ONLY=true --name openvas mikesplain/openvas
  • 相关阅读:
    flush privileges 什么意思
    kill
    xargs
    mysql 5.6 与5.7安装
    内核线程、轻量级进程、用户线程
    在gdb将所有线程的堆栈输出到文件中去
    GDB 反向调试(Reverse Debugging)
    redhat 6.6 安装 (LVM)
    GDB中创建要素数据集
    AO Identify地图交互
  • 原文地址:https://www.cnblogs.com/SZLLQ2000/p/5433686.html
Copyright © 2011-2022 走看看