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

本文最后更新于 2019.12.01,总计 3109 字 ,阅读本文大概需要 2 ~ 7 分钟
本文已超过 1606天 没有更新。如果文章内容或图片资源失效,请留言反馈,我会及时处理,谢谢!

目录

问题 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

解决方案:

运行以下命令

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

问题 2

出现以下问题:

图片 2.png

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

解决方案

Cd /home/
strings /usr/lib64/libstdc++.so.6 |grep GLIBCXX

然后下载缺少版本的 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

问题 3

编译 GLIBC 时出现以下问题:

图片 3.png

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

解决方案

yum install gawk
make all
make install

最终编译成功

图片 4.png

「感谢老板送来的软糖/蛋糕/布丁/牛奶/冰阔乐!」

panda

(๑>ڡ<)☆谢谢老板~

使用微信扫描二维码打赏

版权属于:

panda | 热爱安全的理想少年

本文链接:

https://www.cnpanda.net/talksafe/381.html(转载时请注明本文出处及文章链接)

暂时无法评论哦~

已有 4 条评论
  1. 蟋蟀哥哥 访客

    这个版本能部署在mac下么

    |
    1. panda 作者
      @蟋蟀哥哥

      没尝试过 所以不清楚 不过应该可以 只要安装相关的组件

      |
  2. memeda 访客

    [root@vultrguest acunetix]# service acunetix status
    Redirecting to /bin/systemctl status acunetix.service
    ● acunetix.service - Acunetix Service
    Loaded: loaded (/etc/systemd/system/acunetix.service; enabled; vendor preset: disabled)
    Active: activating (auto-restart) (Result: exit-code) since Mon 2020-07-13 09:02:33 UTC; 7s ago
    Process: 27752 ExecStart=/home/acunetix/.acunetix/start.sh (code=exited, status=203/EXEC)
    Main PID: 27752 (code=exited, status=203/EXEC)

    Jul 13 09:02:33 vultrguest systemd[1]: acunetix.service: Main process exited, code=exited, status=203/EXEC
    Jul 13 09:02:33 vultrguest systemd[1]: acunetix.service: Failed with result 'exit-code'.
    contos7安装有问题 求解!!!

    |
    1. panda 作者
      @memeda

      你这没上下文 没法解决呀

      |