mikesplain / openvas-docker

A Docker container for Openvas
MIT License
768 stars 305 forks source link

There is a problem with HTTP access #253

Closed SecReXus closed 2 months ago

SecReXus commented 4 years ago

When visiting the page, you will be prompted as follows: The request contained an unknown or invalid Host header. If you are trying to access GSA via its hostname or a proxy, make sure GSA is set up to allow it.

investlab commented 4 years ago

Screenshot_1 Same issue! This is my docker run: docker run -d -p 443:443 -e ALLOW_HEADER_HOST=openvas.xxx.xx -e PUBLIC_HOSTNAME=openvas.xxx.xx -v $(pwd)/data:/var/lib/openvas/mgr/ -e OV_PASSWORD=xxx -e OV_SMTP_HOSTNAME=smtp.gmail.com -e OV_SMTP_PORT=587 -e OV_SMTP_USERNAME=xxx@gmail.com -e OV_SMTP_KEY=xxx --name openvas mikesplain/openvas

investlab commented 4 years ago

Solution:

  1. Access to container's bash: docker exec -it openvas bash
  2. Open file: /etc/default/openvas-gsa (note: apt update -y && apt install vim -y) vim /etc/default/openvas-gsa
  3. Add this line: ALLOW_HEADER_HOST=PUT YOUR HOST NAME or IPADDRESS HERE
  4. Restart /etc/init.d/openvas-gsa restart
  5. Check on browser -> Ok!.

Screenshot_2

costabh commented 2 years ago

@wisoez if i wanted to open to everyone, i just put 0.0.0.0 or have another wildcard for this option?