What are you using to do the HTTPS transfer?
I'm using LWP (libwww-perl) with Crypt::SSLeasy (lib-crypt-ssleay-perl on Debian), and if I say:
HEAD -x https://db.debian.org/
I get some headers back in the response, e.g.:
Client-SSL-Cert-Issuer: /C=US/ST=Georgia/L=Atlanta/O=Debian/OU=LDAP/CN=db.debian.org/Email=debian-admin@lists.debian.org
Client-SSL-Cert-Subject: /C=US/ST=Georgia/L=Atlanta/O=Debian/OU=LDAP/CN=db.debian.org/Email=debian-admin@lists.debian.org
Client-SSL-Cipher: EDH-RSA-DES-CBC3-SHA
Client-SSL-Warning: Peer certificate not verified
I strongly recommend reading the Crypt::SSLeay documentation.
So, to use this in a more substantive example:
#!/usr/bin/perl -w
require 5.6.0;
use strict;
use LWP;
our $hostname = shift or die "Syntax: $0 hostname\n";
our $ua = LWP::UserAgent->new;
our $req = HTTP::Request->new(HEAD => "https://$hostname");
our $resp = $ua->request($req);
print " Site: ", $resp->header('Client-SSL-Cert-Subject'), "
+\n";
print "Cert. Authority: ", $resp->header('Client-SSL-Cert-Issuer'), "\
+n";
print " Cipher: ", $resp->header('Client-SSL-Cipher'), "\n";
and then you should be able to run this script with the hostname of an SSL site as a parmaeter, e.g. "www.verisign.com".
HTH
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
|
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.
|
|