美文网首页
AWVS13 acunetix 13 centos 7 安装

AWVS13 acunetix 13 centos 7 安装

作者: 虚心的锄头 | 来源:发表于2020-11-19 16:24 被阅读0次

acunetix_13.0.200807156 下载

①天翼网盘: https://cloud.189.cn/t/bieuy2AjuYNf (访问码:ds99)
②雨苁网盘: https://w.ddosi.workers.dev/

解压密码: www.ddosi.com

将解压好的文件上传至服务器

安装

# 安装先决条件
yum install wget gcc gcc-c++ gtk3 bzip2 libXrender  libXext libXcursor  libXfixes libXcomposite libXrandr libXdamage  libXtst libXi cups-libs dbus-glib libXrandr libXcursor libXinerama cairo cairo-gobject pango  libXScrnSaver libatk-bridge-2.0.so.0 -y

安装 GLIBC_2.18

wget http://mirrors.ustc.edu.cn/gnu/libc/glibc-2.18.tar.gz
tar -zxvf glibc-2.18.tar.gz
cd glibc-2.18
mkdir build
../configure --prefix=/usr
make -j4
sudo make install
# 安装
bash acunetix_13.0.200217097_x64_.sh
#  回车继续 阅读协议部分 直接按 q 键 跳过
press ENTER to continue
>>> 

# 接受许可
Accept the license terms? [yes|no]
[no] >>> yes

# hostname
Configuring hostname...
Insert new hostname, or leave blank to use ubuntu
    Hostname [centos]:
    Using hostname centos

# 设置登录的邮箱和密码(密码必须符合复杂度要求)
Configuring the master user...
    Email: admin@dmain.com
    Password: 
    Password again: 
Initializing file system...

Extracting files to /home/acunetix/.acunetix....

Installing the database...

Starting the database process...
   - Create database
   - Populate database
   - Add new vulnerability data
   - Updating script versions
   - Creating the master user
Stopping the database process...

Generating certificates...
Generating certificate authority & certificates
Saving settings...
Creating the startup script...
Registering service...
Created symlink from /etc/systemd/system/multi-user.target.wants/acunetix.service to /etc/systemd/system/acunetix.service.

Adding LSR shortcuts...
Creating uninstall...

Please visit https://centos:3443/ to access Acunetix UI

配置nginx 代理

# acunetix 配置文件 /home/acunetix/.acunetix/wvs.ini
server.address=127.0.0.1

# nginx配置文件, 证书需要自己申请
server {
        listen       443 ssl;
        ssl_certificate     ssl/full_chain.pem;
        ssl_certificate_key ssl/private.key;
        location / {
            proxy_pass http://127.0.0.1:3443/;
        }
    }

#  解覆盖原文件
cp wvsc /home/acunetix/.acunetix/v_200217097/scanner/
cp license_info.json /home/acunetix/.acunetix/data/license/

启动

service nginx restart
service acunetix restart

访问
https://服务器地址

相关文章

网友评论

      本文标题:AWVS13 acunetix 13 centos 7 安装

      本文链接:https://www.haomeiwen.com/subject/dolliktx.html