From 5286df9132fe98f758298f4277462f2cd266b11a Mon Sep 17 00:00:00 2001 From: Slava Date: Thu, 9 Apr 2015 16:13:25 -0300 Subject: [PATCH] Fix phantomjs problem with non ssl3 sites By default phantoms JS use SSLv3 only: ` --ssl-protocol= Sets the SSL protocol (supported protocols: 'SSLv3' (default), 'SSLv2', 'TLSv1', 'any')` For this reason it doesn't work with non ssl3 sites like https://mail.ru. --- src/drivers/phantomjs/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/drivers/phantomjs/Dockerfile b/src/drivers/phantomjs/Dockerfile index 42d120a67..73ed7c9db 100644 --- a/src/drivers/phantomjs/Dockerfile +++ b/src/drivers/phantomjs/Dockerfile @@ -26,4 +26,4 @@ RUN wappalyzer/bin/wappalyzer-links wappalyzer WORKDIR wappalyzer/src/drivers/phantomjs -ENTRYPOINT ["/usr/local/phantomjs/bin/phantomjs", "--load-images=false", "--ignore-ssl-errors=yes", "driver.js"] +ENTRYPOINT ["/usr/local/phantomjs/bin/phantomjs", "--load-images=false", "--ignore-ssl-errors=yes", "--ssl-protocol=any", "driver.js"]