Windows下在安装AWVS后默认监听在:https://localhost:3443
,如何使其监听在0.0.0.0
呢?
找到AWVS配置文件,默认位于:C:\ProgramData\Acunetix\settings.ini
,修改内容:
server.address=0.0.0.0
server.port=3443
然后在防火墙开放对应的端口:netsh advfirewall firewall add rule name="AWVS" protocol=TCP dir=in localport=3443 action=allow
然后重启AWVS服务即可:
net stop Acunetix
net start Acunetix
Comments | NOTHING