On Fri, Nov 12, 2010 at 12:43:39AM +0100, Marco Trevisan (Treviño) wrote:
> This is a very old issue [1], also if I figure that it has been fixed
> for a while, actually I can't get any https website working in my phone
> (using both eve or midori).
> 
> This is a great problem not only for loggin-in in any web-service, but
> also for logging-in in many free-wifi area which uses an http-based
> authentication (my university campus does that too), and so for
> navigate.
> 
> I'd really like to find a way to fix this issue. Is there any advice?
> 
> Using the WEBKIT_IGNORE_SSL_ERRORS environment variable doesn't work
> here since both libwebkit and libewebkit use libsoup as backend and that
> env variable was just defined for curl backed...
> So, maybe a workaround for webkit-efl would be using just curl as
> backed, but I don't know if there are disadvantages...
> 
> [1]
> http://www.mail-archive.com/[email protected]/msg38657.html

I use small work around for this:

SHR r...@gojama ~ $ cat /usr/local/bin/cert-retrieve.sh
#!/bin/sh
#
# usage: retrieve-cert.sh remote.host.name [port]
#
REMHOST=$1
REMPORT=${2:-443}

echo |\
openssl s_client -connect ${REMHOST}:${REMPORT} 2>&1 |\
sed -ne '/-BEGIN CERTIFICATE-/,/-END CERTIFICATE-/p'

and save that cert to trusted certs in /etc/ssl/certs (if you can trust
it of course).

Then https worked from both browsers for me.

Regards,
-- 
Martin 'JaMa' Jansa     jabber: [email protected]
_______________________________________________
Shr-User mailing list
[email protected]
http://lists.shr-project.org/mailman/listinfo/shr-user

Reply via email to