index.php
4.48 KB
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
<?php
require('../class/connect.php');
//取得隨機數
function domake_password($pw_length){
global $public_r;
if($public_r['keytog']==1)//字母
{
$low_ascii_bound=65;
$upper_ascii_bound=90;
$notuse=array(91);
}
elseif($public_r['keytog']==2)//數字+字母
{
$low_ascii_bound=50;
$upper_ascii_bound=90;
$notuse=array(58,59,60,61,62,63,64,73,79);
}
else//數字
{
$low_ascii_bound=48;
$upper_ascii_bound=57;
$notuse=array(58);
}
while($i<$pw_length)
{
if(PHP_VERSION<'4.2.0')
{
mt_srand((double)microtime()*1000000);
}
$randnum=mt_rand($low_ascii_bound,$upper_ascii_bound);
if(!in_array($randnum,$notuse))
{
$password1=$password1.chr($randnum);
$i++;
}
}
return $password1;
}
//返回顏色
function ReturnShowKeyColor($img){
global $public_r;
//背景色
if($public_r['keybgcolor'])
{
$bgcr=ToReturnRGB($public_r['keybgcolor']);
$r['bgcolor']=imagecolorallocate($img,$bgcr[0],$bgcr[1],$bgcr[2]);
}
else
{
$r['bgcolor']=imagecolorallocate($img,102,102,102);
}
//文字色
if($public_r['keyfontcolor'])
{
$fcr=ToReturnRGB($public_r['keyfontcolor']);
$r['fontcolor']=ImageColorAllocate($img,$fcr[0],$fcr[1],$fcr[2]);
}
else
{
$r['fontcolor']=ImageColorAllocate($img,255,255,255);
}
//干擾色
if($public_r['keydistcolor'])
{
$dcr=ToReturnRGB($public_r['keydistcolor']);
$r['distcolor']=ImageColorAllocate($img,$dcr[0],$dcr[1],$dcr[2]);
}
else
{
$r['distcolor']=ImageColorAllocate($img,71,71,71);
}
return $r;
}
//顯示驗證碼
function ShowKey($v){
$vname=ecmsReturnKeyVarname($v);
$key=strtolower(domake_password(4));
ecmsSetShowKey($vname,$key);
//是否支持gd庫
if(function_exists("imagejpeg"))
{
header ("Content-type: image/jpeg");
$img=imagecreate(47,20);
$colorr=ReturnShowKeyColor($img);
$bgcolor=$colorr['bgcolor'];
$fontcolor=$colorr['fontcolor'];
$distcolor=$colorr['distcolor'];
imagefill($img,0,0,$bgcolor);
imagestring($img,5,6,3,$key,$fontcolor);
for($i=0;$i<90;$i++) //加入干擾象素
{
imagesetpixel($img,rand()%70,rand()%30,$distcolor);
}
imagejpeg($img);
imagedestroy($img);
}
elseif (function_exists("imagepng"))
{
header ("Content-type: image/png");
$img=imagecreate(47,20);
$colorr=ReturnShowKeyColor($img);
$bgcolor=$colorr['bgcolor'];
$fontcolor=$colorr['fontcolor'];
$distcolor=$colorr['distcolor'];
imagefill($img,0,0,$bgcolor);
imagestring($img,5,6,3,$key,$fontcolor);
for($i=0;$i<90;$i++) //加入干擾象素
{
imagesetpixel($img,rand()%70,rand()%30,$distcolor);
}
imagepng($img);
imagedestroy($img);
}
elseif (function_exists("imagegif"))
{
header("Content-type: image/gif");
$img=imagecreate(47,20);
$colorr=ReturnShowKeyColor($img);
$bgcolor=$colorr['bgcolor'];
$fontcolor=$colorr['fontcolor'];
$distcolor=$colorr['distcolor'];
imagefill($img,0,0,$bgcolor);
imagestring($img,5,6,3,$key,$fontcolor);
for($i=0;$i<90;$i++) //加入干擾象素
{
imagesetpixel($img,rand()%70,rand()%30,$distcolor);
}
imagegif($img);
imagedestroy($img);
}
elseif (function_exists("imagewbmp"))
{
header ("Content-type: image/vnd.wap.wbmp");
$img=imagecreate(47,20);
$colorr=ReturnShowKeyColor($img);
$bgcolor=$colorr['bgcolor'];
$fontcolor=$colorr['fontcolor'];
$distcolor=$colorr['distcolor'];
imagefill($img,0,0,$bgcolor);
imagestring($img,5,6,3,$key,$fontcolor);
for($i=0;$i<90;$i++) //加入干擾象素
{
imagesetpixel($img,rand()%70,rand()%30,$distcolor);
}
imagewbmp($img);
imagedestroy($img);
}
else
{
ecmsSetShowKey($vname,'ecms');
echo ReadFiletext("../data/images/ecms.jpg");
}
}
//返回變量名
function ecmsReturnKeyVarname($v){
if($v=='login')//登陸
{
$name='checkloginkey';
}
elseif($v=='reg')//註冊
{
$name='checkregkey';
}
elseif($v=='info')//信息
{
$name='checkinfokey';
}
elseif($v=='spacefb')//空間反饋
{
$name='checkspacefbkey';
}
elseif($v=='spacegb')//空間留言
{
$name='checkspacegbkey';
}
elseif($v=='gbook')//留言
{
$name='checkgbookkey';
}
elseif($v=='feedback')//反饋
{
$name='checkfeedbackkey';
}
elseif($v=='getpassword')//取回密碼
{
$name='checkgetpasskey';
}
elseif($v=='regsend')//重發激活郵件
{
$name='checkregsendkey';
}
else//評論pl
{
$name='checkplkey';
}
return $name;
}
$v=$_GET['v'];
ShowKey($v);
?>