欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  网络运营

运行sqlmap提示AttributeError: 'module' object has no attribute 'HTTPSHandler'解决方法

程序员文章站 2022-06-28 09:55:02
今天在新机器上安装sqlmap,运行提示AttributeError: 'module' object has no attribute 'HTTPSHandler...

今天在新机器上安装sqlmap,运行提示AttributeError: 'module' object has no attribute 'HTTPSHandler'

运行sqlmap提示AttributeError: 'module' object has no attribute 'HTTPSHandler'解决方法

网上找了找资料,发现一篇文章http://paltman.com/2007/11/15/getting-ssl-support-in-python-251/

输入如下命令:

wget http://www.openssl.org/source/openssl-0.9.8g.tar.gz

tar zxf openssl-0.9.8g.tar.gz

cd openssl-0.9.8g

./config  #需要安装perl5

make

make install


 

安装好之后

vi Python-2.7.4/Modules/Setup.dist



 

接下来cd到python安装包的目录

找到以下内容,取消注释(文章说是206-209,不过我这个在210多行,差不多,一般:206回车就能看到了)

运行sqlmap提示AttributeError: 'module' object has no attribute 'HTTPSHandler'解决方法

取消注释后重新编译python

 


 

cd Python-2.7.4

./configure

make

make install

以上步骤执行后再./sqlmap.py 搞定

运行sqlmap提示AttributeError: 'module' object has no attribute 'HTTPSHandler'解决方法