kali setoolkit 克隆网站接收数据输出时报错,报错如下:
AttributeError: module ‘cgi‘ has no attribute ‘escape‘
解决方法:
打开harvester.py ,修改里面的代码
vim /usr/share/set/src/webattack/harvester/harvester.py
1、在import cgi下加入import html
2、在334行中将cgi.escape改成html.escape

保存后重新运行就可以了

相关文章:

  • 2021-10-09
  • 2021-12-13
  • 2021-06-06
  • 2021-07-27
  • 2021-05-07
  • 2022-01-23
  • 2021-08-17
  • 2021-08-28
猜你喜欢
  • 2021-09-15
  • 2021-12-19
  • 2021-11-02
  • 2021-11-28
  • 2021-08-27
  • 2021-10-09
  • 2021-09-09
相关资源
相似解决方案