/* LibreSSL - CAcert web application Copyright (C) 2004-2008 CAcert Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ ?> $certid = 0; if(array_key_exists('cert',$_REQUEST)) $certid=intval($_REQUEST['cert']); $query = "select * from `orgemailcerts`,`org` where `orgemailcerts`.`id`='".intval($certid)."' and `org`.`memid`='".intval($_SESSION['profile']['id'])."' and `org`.`orgid`=`orgemailcerts`.`orgid`"; $res = mysql_query($query); if(mysql_num_rows($res) <= 0) { showheader(_("My CAcert.org Account!")); echo _("No such certificate attached to your account."); showfooter(); exit; } $row = mysql_fetch_assoc($res); $crtname=escapeshellarg($row['crt_name']); $cert = shell_exec("/usr/bin/openssl x509 -in $crtname"); if($row['keytype'] == "NS") { if(array_key_exists('install',$_REQUEST) && $_REQUEST['install'] == 1) { header("Content-Type: application/x-x509-user-cert"); header("Content-Length: ".strlen($cert)); $fname=sanitizeFilename($row['CN']); if($fname=="") $fname="certificate"; header('Content-Disposition: inline; filename="'.$fname.'.crt"'); echo $cert; exit; } else { showheader(_("My CAcert.org Account!")); echo "
"._("You are about to install a certificate, if you are using mozilla/netscape based browsers you will not be informed that the certificate was installed successfully, you can go into the options dialog box, security and manage certificates to view if it was installed correctly however.")."
\n"; echo ""._("Click here")." "._("to install your certificate.")."
\n"; showfooter(); exit; } } else if($row['keytype'] == "VI"){ showheader(_("My CAcert.org Account!")); echo "".$cert.""; showfooter(); } else { showheader(_("My CAcert.org Account!")); ?>
=_("Hit the 'Install your Certificate' button below to install the certificate into MS IE 5.x and above.")?>
showfooter(); exit; } ?>