I installed GVM using the official docker containers. That worded fine. I could connect via 127.0.0.1 and scan targets. I changed the docker-compose.yml inserting:
- - 127.0.0.1:9392:80
+ networks:
+ - macvlan_network
+ - default
+
+ networks:
+ macvlan_network:
+ driver: macvlan
+ driver_opts:
+ parent: wlan0 # Replace with your host's network interface
+ ipam:
+ config:
+ - subnet: 192.168.178.0/24
+ gateway: 192.168.178.1
Now I can connect to the web interface via 192.168.178.24:80 and start a scan, which returns 0 Targets (using the same host as a testing target, and a simple scan using the task wizzard).
I never used docker before and this set up seems rather complex to me… I hope the formating of the file contens worked this time …