H4ckForJob / dirmap

An advanced web directory & file scanning tool that will be more powerful than DirBuster, Dirsearch, cansina, and Yu Jian.一个高级web目录、文件扫描工具,功能将会强于DirBuster、Dirsearch、cansina、御剑。
GNU General Public License v3.0
3.15k stars 546 forks source link

Python 3.10 Error running #74

Closed dointisme closed 2 years ago

dointisme commented 2 years ago

Traceback (most recent call last): File "/home/kali/dirmap/dirmap.py", line 19, in from lib.core.option import initOptions File "/home/kali/dirmap/lib/core/option.py", line 21, in from thirdlib.IPy.IPy import IP File "/home/kali/dirmap/thirdlib/IPy/IPy.py", line 1020, in class IPSet(collections.MutableSet): AttributeError: module 'collections' has no attribute 'MutableSet'

solution

py3.10 deprecates Importing ABC directly from collections Py3.10 deprecates Importing ABC directly from collections This causes the import configuration to fail in Python 3.10: File "/home/pi/dev/py310b/lib/python3.10/site-packages/configman/orderedset.py", line 25, in class OrderedSet(collections.MutableSet): AttributeError: module 'collections' has no attribute ' MutableSet' The solution is "CollectionS.abc.mutableet" instead of "Collections.mutableet"