Threezh1/JSFinder

Fail to access x.domain.com

vansh1 opened this issue · 4 comments

i am using python3 JSFInder.py -f file.txt and getting this error

yes,me too

me too

how to resolve it

【已解决】读源码发现有这个报错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'
image