美文网首页
kali 2020 安装pwndbg

kali 2020 安装pwndbg

作者: 是人也 | 来源:发表于2020-04-13 13:48 被阅读0次

按照官网操作

git clone https://github.com/pwndbg/pwndbg
cd pwndbg
./setup.sh

注意需要修改setup.sh

  1. python-pip unable to locate python-pip 可能是由于python2.7不再维护,所以删除了install_apt中的python-pip
    sudo apt-get -y install gdb python-dev python3-dev python3-pip libglib2.0-dev libc6-dbg
  1. 添加case kali
    case $distro in
        "kali")
            install_apt
            ;;
  1. 在国内,为了方便我修改了pip3源
    修改~/.config/pip/pip.conf
[global]
index-url = http://mirrors.aliyun.com/pypi/simple/
[install]
trusted-host=mirrors.aliyun.com

相关文章

网友评论

      本文标题:kali 2020 安装pwndbg

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