Threezh1 / JSFinder

JSFinder is a tool for quickly extracting URLs and subdomains from JS files on a website.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Fail to access x.domain.com

vansh1 opened this issue · comments

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

yes,me too

commented

me too

commented

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