in reply to Re^2: Can Log4Perl integrated with LWP log SSL/TLS handshaking?
in thread Can Log4Perl integrated with LWP log SSL/TLS handshaking?
...ted.byers...
Wow, dude, its me again :)
Same deal, it means IO::Socket::SSL couldn't verify the certificate authority of the gremlin.site
It means your local certificate authority .crt bundle (Mozilla::CA or something else) is missing the authority that gremlin.site uses (because not all CA can be trusted, LWP , Mozilla::CA, and Phony SSL Certificates )
Debugging SSL communications has more info on using openssl client to debug ssl communications (like get more info, rule perl out...)
Like if you go into firefox and go to https://rt.perl.org, if you don't have Certificate Authority - Develooper LLC certificate installed, firefox will warn you bad example, they don't use develooper anymore
See, all these "Client-" headers are put there by LWP+helpers, try it on your gremlin.site, hopefully it will say something like unrecognized root authority
$ lwp-request -UuSsEd https://rt.perl.org GET https://rt.perl.org User-Agent: lwp-request/6.03 libwww-perl/6.08 200 OK Cache-Control: no-cache Connection: close Date: Sun, 03 Aug 2014 22:52:33 GMT Pragma: no-cache Server: Plack::Handler::Starlet Content-Type: text/html; charset=utf-8 Client-Date: Sun, 03 Aug 2014 23:00:30 GMT Client-Peer: 207.171.7.176:443 Client-Response-Num: 1 Client-SSL-Cert-Issuer: /C=US/O=GeoTrust, Inc./CN=RapidSSL CA Client-SSL-Cert-Subject: /serialNumber=KOhlTc3Vbi/3MxmsaSvic2A8i8jTkaB +z/C=US/O=rt.perl.org/OU=GT87157338/OU=See www.rapidssl.com/resources/ +cps (c)11/OU=Domain Control Validated - RapidSSL(R)/CN=rt.perl.org Client-SSL-Cipher: AES128-SHA256 Client-SSL-Socket-Class: IO::Socket::SSL Client-Transfer-Encoding: chunked Link: </NoAuth/images/favicon.png>; rel="shortcut icon"; type="image/p +ng" Link: </NoAuth/css/aileron-squished-09504fd500c0b721310b79cd2eb67ac0.c +ss>; media="all"; rel="stylesheet"; type="text/css" Link: </NoAuth/css/print.css>; media="print"; rel="stylesheet"; type=" +text/css" Set-Cookie: RT_SID_perl.443=15287ecac634a287f31aaa7154f0d7da; path=/; +secure; HttpOnly Title: Login X-Frame-Options: DENY X-UA-Compatible: IE=edge
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Can Log4Perl integrated with LWP log SSL/TLS handshaking?
by ted.byers (Monk) on Aug 04, 2014 at 01:18 UTC | |
by Anonymous Monk on Aug 04, 2014 at 06:45 UTC |