Neo23x0 / munin

Online hash checker for Virustotal and other services

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

munin.py cli issue

devanghp opened this issue · comments

After running python3 munin.py -i my.ini --cli , I got the below error.

Traceback (most recent call last):
File "/home/heldso/munin/munin.py", line 43, in
import cfscrape
File "/home/heldso/.local/lib/python3.10/site-packages/cfscrape/init.py", line 19, in
from urllib3.util.ssl_ import create_urllib3_context, DEFAULT_CIPHERS
ImportError: cannot import name 'DEFAULT_CIPHERS' from 'urllib3.util.ssl_' (/home/helo/.local/lib/python3.10/site-packages/urllib3/util/ssl_.py)

Hi, I had the same Issue.

Downgrading the urllib3 pip package from 2.0.4 to 1.26.16 solved the issue for me:
python -m pip install --upgrade urllib3==1.26.16