zoukankan      html  css  js  c++  java
  • AWVS破解版在 Centos7 下安装过程中存在问题记录

    • Linux

    因为蓝奏云不支持特殊的分卷后缀,所以下载下来手动重命名,解压001后缀的文件即可。

    Linux acunetix_13.0.200217097.zip.001.zip

    手动重命名为 Linux acunetix_13.0.200217097.zip.001

    Linux acunetix_13.0.200217097.zip.002.zip

    手动重命名为 Linux acunetix_13.0.200217097.zip.002

    安装过程

    Linux

     
    Bash
    #  文件结构
    $ tree
    .
    ├── acunetix_13.0.200217097_x64_.sh
    ├── license_info.json
    └── wvsc
    
    #  以root方式运行
    $ sudo bash acunetix_13.0.200217097_x64_.sh
    
    #  回车继续 阅读协议部分 直接按 q 键 跳过
    press ENTER to continue
    >>> 
    
    # 接受许可
    Accept the license terms? [yes|no]
    [no] >>> yes
    
    # hostname 我这里默认回车了 国光测试 哪怕安装的机器IP换了 也是可以正常访问awvs服务的
    Configuring hostname...
    Insert new hostname, or leave blank to use ubuntu
        Hostname [ubuntu]:
        Using hostname ubuntu
    
    # 设置登录的邮箱和密码 等待安装完成即可
    Configuring the master user...
        Email: admin@sqlsec.com
        Password: 
        Password again: 
    
    #  破解覆盖原文件 需要高权限
    $ sudo cp wvsc /home/acunetix/.acunetix/v_200217097/scanner/
    $ sudo cp license_info.json /home/acunetix/.acunetix/data/license/

    AWVS Linux 破解版在 Centos7 下安装过程中存在问题记录

    问题 1

    运行 AWVS 安装程序时出现以下问题:

    图片 1.png

    Acunetix Installer Version: v_190703137, Copyright (c) Acunetix
    ------------------------------------------------------------
    Checking os...
    Checking for dependencies...
        - dependency libXrender.so.1 not found on the system
        - dependency libXext.so.6 not found on the system
        - dependency libcairo.so.2 not found on the system
        - dependency libXss.so.1 not found on the system
        - dependency libXcursor.so.1 not found on the system
        - dependency libXfixes.so.3 not found on the system
        - dependency libXcomposite.so.1 not found on the system
        - dependency libXrandr.so.2 not found on the system
        - dependency libpangocairo-1.0.so.0 not found on the system
        - dependency libXdamage.so.1 not found on the system
        - dependency libgdk-3.so.0 not found on the system
        - dependency libatspi.so.0 not found on the system
        - dependency libXtst.so.6 not found on the system
        - dependency libgtk-3.so.0 not found on the system
        - dependency libatk-bridge-2.0.so.0 not found on the system
        - dependency libgdk_pixbuf-2.0.so.0 not found on the system
        - dependency libatk-1.0.so.0 not found on the system
        - dependency libXi.so.6 not found on the system
        - dependency libpango-1.0.so.0 not found on the system
        - dependency libcups.so.2 not found on the system
    Some dependencies are not found on the system. Aborting installation.
    Aborting installation
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26

    解决方案

    运行以下命令

    yum install 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
    
    • 1

    问题 2

    出现以下问题:
    在这里插入图片描述

    /wvsc: /lib64/libc.so.6: version `GLIBC_2.18' not found (required by /home/acunetix/.acunetix_trial/v_190703137/scanner/libstdc++.so.6)
    
    • 1

    解决方案

    cd /home/
    strings /usr/lib64/libstdc++.so.6 |grep GLIBCXX
    
    • 1
    • 2

    然后下载缺少版本的 GLIBCXX,我这里是发现没有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
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7

    问题 3

    编译 GLIBC 时出现以下问题:

    在这里插入图片描述

    mv -f /usr/lib64/audit/sotruss-lib.so.new /usr/lib64/audit/sotruss-lib.so
    make[2]: *** No rule to make target `/root/glibc-2.18/build/dlfcn/libdl.so.2', needed by `/root/glibc-2.18/build/elf/sprof'.  Stop.
    make[2]: Leaving directory `/root/glibc-2.18/elf'
    make[1]: *** [elf/subdir_install] Error 2
    make[1]: Leaving directory `/root/glibc-2.18'
    make: *** [install] Error 2
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6

    解决方案

    yum install gawk
    make all
    make install
    
    • 1
    • 2
    • 3

    最终编译成功

    在这里插入图片描述

  • 相关阅读:
    Weblgic安装应用报错:Caused by: com.bea.xml.XmlException: failed to load java type corresponding to e=web-a...
    【Java VisualVM】使用 VisualVM 进行性能分析及调优
    linux如何查看端口被哪个进程占用?
    jvisualVM加载插件及报错 response code:503 for URL和Received fatal alert: protocol_version解决办法
    [BZOJ1381]Knights
    [SHOI2002]舞会
    [POJ1325]Machine Schedule
    [Usaco2005 Jan]Muddy Fields泥泞的牧场
    [Usaco2005 Nov]Asteroids
    [ZOJ1140]Courses 课程
  • 原文地址:https://www.cnblogs.com/study-hj/p/13890807.html
Copyright © 2011-2022 走看看