in reply to Re: ssl details cgi script
in thread ssl details cgi script

use Net::SSL::ExpireDate; my $site = "www.google.com"; $ed = Net::SSL::ExpireDate->new( https => $site ); if (defined $ed->expire_date) { $expire_date = $ed->expire_date; print $expire_date; $expired = $ed->is_expired; }
Above code is also working fine but not with the cgi. Anyways many thanks for suggesting new solution.

Thanks