Fail to access x.domain.com
vansh1 opened this issue · 4 comments
vansh1 commented
i am using python3 JSFInder.py -f file.txt and getting this error
FirstLIF commented
yes,me too
QDGSCLOUD commented
me too
QDGSCLOUD commented
how to resolve it
Labster22 commented
【已解决】读源码发现有这个报错ssl.SSLError: [SSL: DH_KEY_TOO_SMALL] dh key too small
参考 https://stackoverflow.com/questions/38015537/python-requests-exceptions-sslerror-dh-key-too-small
在 JSFinder.py 文件中添加这两行
requests.packages.urllib3.disable_warnings()
requests.packages.urllib3.util.ssl_.DEFAULT_CIPHERS += ':HIGH:!DH:!aNULL'