summaryrefslogtreecommitdiff
path: root/stamp/displogo.php
blob: 9c1f5341069ff83b33558299b2fcc7ec5cd7fd82 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<? /*
    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
*/
	$img = "/www/stamp/images/CAverify.png";
	$arr = explode("//", mysql_real_escape_string(trim($_REQUEST['refer'])), 2);
	$arr = explode("/", $arr['1'], 2);
	$ref = $arr['0'];

	$arr = explode("//", mysql_real_escape_string(trim($_SERVER['HTTP_REFERER'])), 2);
	$arr = explode("/", $arr['1'], 2);
	$siteref = $arr['0'];

	if($_REQUEST['debug'] != 1)
		header('Content-type: image/png');
	$im = imagecreatefrompng($img);

	if($ref == "" || ($ref != $siteref && $siteref != ""))
	{
		$tc = imagecolorallocate ($im, 255, 0, 0);
		imagestring ($im, 2, 1, 30, "INVALID DOMAIN", $tc);
		imagestring ($im, 2, 1, 45, "Click to Report", $tc);
		imagepng($im);
		exit;	
	}

	list($invalid, $info) = checkhostname($ref);

	if($invalid > 0)
	{
		$tc = imagecolorallocate ($im, 255, 0, 0);
		imagestring ($im, 2, 1, 30, "INVALID DOMAIN", $tc);
		imagestring ($im, 2, 1, 45, "Click to Report", $tc);
		imagepng($im);
		exit;
	}

	$tz = intval($_REQUEST['tz']);
	$now = date("Y-m-d", gmmktime("U") + ($tz * 3600));

	$tc = imagecolorallocate ($im, 0, 0, 0);
	imagestring ($im, 4, 1, 27, "Valid Cert!", $tc);
	imagestring ($im, 1, 7, 42, "Click to Verify", $tc);
	imagestring ($im, 1, 20, 52, $now, $tc);
	imagepng($im);
?>