Threezh1 / JSFinder

JSFinder is a tool for quickly extracting URLs and subdomains from JS files on a website.
2.62k stars 400 forks source link

Fail to access x.domain.com #25

Open vansh1 opened 2 years ago

vansh1 commented 2 years ago

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

FirstLIF commented 2 years ago

yes,me too

QDGSCLOUD commented 1 year ago

me too

QDGSCLOUD commented 1 year ago

how to resolve it

Labster22 commented 1 year ago

【已解决】读源码发现有这个报错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.disablewarnings() requests.packages.urllib3.util.ssl.DEFAULT_CIPHERS += ':HIGH:!DH:!aNULL'

image