Subversion Repositories php-qbpwcf

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
317 liveuser 1
<?php
2
 
3
/*
4
 
5
        QBPWCF, Quick Build PHP website Component base on Fedora Linux.
6
    Copyright (C) 2014~2026 MIN ZHI, CHEN
7
 
8
    This file is part of QBPWCF.
9
 
10
    QBPWCF is free software: you can redistribute it and/or modify
11
    it under the terms of the GNU General Public License as published by
12
    the Free Software Foundation, either version 3 of the License, or
13
    (at your option) any later version.
14
 
15
    QBPWCF is distributed in the hope that it will be useful,
16
    but WITHOUT ANY WARRANTY; without even the implied warranty of
17
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18
    GNU General Public License for more details.
19
 
20
    You should have received a copy of the GNU General Public License
21
    along with QBPWCF.  If not, see <http://www.gnu.org/licenses/>.
22
 
23
*/
24
 
25
/*
26
 
27
本程式說明:
28
 
29
加密任何 POST 的內容與session資訊,印出json結果.
30
 
31
*/
32
 
33
#使用命名空間qbpwcf
34
namespace qbpwcf;
35
 
36
#初始化輸出
37
$output=array();
38
 
39
#取得 lib path
40
exec("php -f ".escapeshellarg(pathinfo(__FILE__)["dirname"]."/../../../../bin/libexec/folderOfUsrLib.php"),$output,$status);
41
 
42
#如果執行失敗
43
if($status!==0){
44
 
45
	#debug
46
	var_dump(__LINE__,$output);
47
 
48
	#結束執行,回傳shell 1.
49
	exit(1);
50
 
51
	}#if end
52
 
53
#儲存lib path
54
$folderOfUsrLib=$output[0];
55
 
56
#初始化輸出
57
$output=array();
58
 
59
#以該檔案的實際位置的 lib path 為 include path 首位
60
exec("cd ".pathinfo(__FILE__)["dirname"]."/../../../../".$folderOfUsrLib."/qbpwcf;pwd;",$output,$status);
61
set_include_path($output[0].PATH_SEPARATOR.get_include_path());
62
 
63
#關閉既有session
64
session_abort();
65
 
66
#設置session儲存位置
67
session_save_path(".hta-session");
68
 
69
#匯入套件
70
require_once("allInOneForJson.php");
71
 
72
#建議的log位置
73
$logFile=$_SERVER["DOCUMENT_ROOT"].$_SERVER["PHP_SELF"].".log";
74
 
75
 
76
 
77
#啟動 session
78
session_start();
79
 
80
#記錄開始時間
81
$_SESSION["start"]=time();
82
 
83
#取得session id
84
$sId=session_id();
85
 
86
#初始化 sendMailAgent 的 session
87
$_SESSION["sendMailAgent"]=array();
88
 
89
#函式說明:
90
#依照OPTIONS的要求,判斷條件,給予允許呼叫的header。
91
#回傳結果:
92
#$result["status"],執行是否成功,"true"代表成功,"false"代表不成功.
93
#$result["function"],當前執行的函數名稱.
94
#$result["error"],錯誤訊息陣列.
95
#$result["content"],回傳結果.
96
#$result["content"]["receivedHeader"],陣列,收到的header
97
#$result["content"]["sendedHeader"],陣列,要送出的header.
98
#必填參數:
99
#無
100
#可省略參數:
101
#$conf["allowDomain"],陣列變數,代表允許的來源domain name.
102
#$conf["allowDomain"]=array();
103
#$conf["allowMethod"],陣列變數,代表允許的要求方法.
104
#$conf["allowMethod"]=array();
105
#$conf["allowHeader"],陣列變數,代表要允許的header.
106
#$conf["allowHeader"]=array();
107
#參考資料:
108
#https://www.php.net/manual/en/function.header-remove.php
109
#https://www.php.net/manual/en/function.http-response-code.php
110
#備註:
111
#無.
112
$conf=array();
113
$accessControl=header::accessControl($conf);
114
unset($conf);
115
 
116
#如果執行失敗
117
if($accessControl["status"]==="false"){
118
 
119
	#函式說明:
120
	#撰寫log
121
	#回傳結果:
122
	#$result["status"],狀態,"true"或"false".
123
	#$result["error"],錯誤訊息陣列.
124
	#$result["function"],當前函式的名稱.
125
	#$result["argu"],使用的參數.
126
	#必填參數:
127
	#$conf["path"],字串,log檔案的路徑與名稱.
128
	$conf["path"]=$logFile;
129
	#$conf["content"],any,要寫的內容,若內容不為字串則會用var_dump的格式寫入.
130
	$conf["content"]=$accessControl;
131
	#$conf["fileArgu"],字串,php變數__FILE__的內容,亦即該檔案在檔案系統的絕對路徑
132
	$conf["fileArgu"]=__FILE__;
133
	#可省略參數:
134
	#$conf["rewrite"],預設為"false",接續寫入;反之"true"代表重新寫入.
135
	#$conf["rewrite"]="false";
136
	#參考資料:
137
	#無.
138
	#備註:
139
	#無.
140
	$record=logs::record($conf);
141
	unset($conf);
142
 
143
	#如果寫log失敗
144
	if($record["status"]==="false"){
145
 
146
		#印出json結果
147
		echo json_encode($record);
148
 
149
		}#if end
150
 
151
	#結束執行,回傳錯誤代碼1
152
	exit(1);
153
 
154
	}#if end
155
 
156
#函式說明:
157
#可以處理多個透過GET、POST而來的資訊,儲存成變數,同時限定傳送的方法、來源,來增加安全性,檢查有沒有皆收到必須要接收到的變數,沒有接收到的變數可以指定從session變數中取得.
158
#回傳結果:
159
#$result["status"],執行正常與否,"true"代表正常,"false"代表不正常.
160
#$result["error"],錯誤訊息陣列.
161
#$resutl["function"],當前執行的函式名稱.
162
#$result["warning"],警告訊息陣列.
163
#$result["passed"],是否有皆收到全部該接收到的變數,若有設定$conf["checkedVarName"]的話,執行正常後會回傳該結果。
164
#$result["lostVarName"],沒有皆收到的變數名稱陣列
165
#$result["inputDataContent"],所接收的參數陣列.
166
#$result["inputDataContent"]["變數名稱"],所接收變數的內容.
167
#$result["inputDataCount"],從表單總共接收到幾個元素.
168
#$result["HTTP_REFERER"],前一頁的網址,null代表不存在.
169
#必填參數:
170
#$conf["method"],字串,傳送過來的資料是用"post/POST"還是"get/GET"?
171
$conf["method"]="POST";
172
#可省略參數:
173
#$conf["allowGet"],字串,是否要允許 get 傳值,"true",代表允許;"false" ,代表不允許,預設爲不允許.
174
#$conf["allowGet"]="true";
175
#$conf["limitPrePage"],字串陣列,是否要限定前一頁的網址為哪些,才能接收內容,不符合則轉址.
176
#$conf["limitPrePage"]=array("");
177
#$conf["transferLocation"],字串,遇到get傳值,或前一個頁面不符合要求時要轉址到的頁面,預設爲資安素養網"https://isafe.moe.edu.tw/"
178
#$conf["transferLocation"]="";
179
#$conf["ignore"]=字串陣列,如果要接收的變數名稱與該陣列其一元素一樣,則不放進要回傳的變數裏面.
180
#$conf["ignore"]=array();
181
#$conf["correctCharacter"]=,字串,如果爲"false",則不處理可能導致網頁出問題的字串,預設爲要進行處理.
182
#$conf["correctCharacter"]="false";
183
#$conf["checkedVarName"],字串陣列,為檢查是否有接收到哪些變數.
184
#$conf["checkedVarName"]=array("email");
185
#$conf["canBeEmptyString"],字串,用$conf["checkedVarName"]指定接收的變數名稱陣列,若接收到的內容為空字串是否算有接收到內容,預設為"false","true"代表接收到的內容可以為空字串,"false"代表接收到的內容不可以為空字串.
186
#$conf["canBeEmptyString"]="false";
187
#$conf["sessionNameArray"],陣列,若存在則代表若沒有從表單取得變數,則從session變數中取得內容,每個元素代表每個表單變數對應的session名稱,若不是要改用session方式取得變數內容的變數,請輸入null,數量請跟$conf["checkedVarName"]參數一致.
188
#$conf["sessionNameArray"]=array("sendMailAgentAPIkey");
189
#$conf["unsetSessionArray"],陣列,與$conf["sessionNameArray"]對應的元素,是否要接收到變數後就卸除,"true"代表要卸除,"false"代表不要卸除.
190
#$conf["unsetSessionArray"]=array("true");
191
#$conf["recaptcha_url"],字串,有內容代表要檢查有無透過recaptcha於特定頁面網址認證過.
192
#$conf["recaptcha_url"]="";
193
#參考資料:
194
#foreach 的用法 -> http://php.net/manual/en/control-structures.foreach.php
195
#伺服器端的變數 -> http://php.net/manual/en/reserved.variables.server.php
196
#備註:
197
#表單變數的名稱若含有「.」,則會變成「-」。
198
$responseMultiInputDataSecurityEnhance=form::responseMultiInputDataSecurityEnhance($conf);
199
unset($conf);
200
 
201
#如果執行失敗
202
if($responseMultiInputDataSecurityEnhance["status"]==="false"){
203
 
204
	#函式說明:
205
	#撰寫log
206
	#回傳結果:
207
	#$result["status"],狀態,"true"或"false".
208
	#$result["error"],錯誤訊息陣列.
209
	#$result["function"],當前函式的名稱.
210
	#$result["argu"],使用的參數.
211
	#必填參數:
212
	#$conf["path"],字串,log檔案的路徑與名稱.
213
	$conf["path"]=$logFile;
214
	#$conf["content"],any,要寫的內容,若內容不為字串則會用var_dump的格式寫入.
215
	$conf["content"]=$accessControl;
216
	#$conf["fileArgu"],字串,php變數__FILE__的內容,亦即該檔案在檔案系統的絕對路徑
217
	$conf["fileArgu"]=__FILE__;
218
	#可省略參數:
219
	#$conf["rewrite"],預設為"false",接續寫入;反之"true"代表重新寫入.
220
	#$conf["rewrite"]="false";
221
	#參考資料:
222
	#無.
223
	#備註:
224
	#無.
225
	$record=logs::record($conf);
226
	unset($conf);
227
 
228
	#如果寫log失敗
229
	if($record["status"]==="false"){
230
 
231
		#印出json結果
232
		echo json_encode($record);
233
 
234
		}#if end
235
 
236
	#結束執行,回傳錯誤代碼1
237
	exit(1);
238
 
239
	}#if end
240
 
241
#如果驗證失敗
242
if($responseMultiInputDataSecurityEnhance["passed"]==="false"){
243
 
244
	#函式說明:
245
	#撰寫log
246
	#回傳結果:
247
	#$result["status"],狀態,"true"或"false".
248
	#$result["error"],錯誤訊息陣列.
249
	#$result["function"],當前函式的名稱.
250
	#$result["argu"],使用的參數.
251
	#必填參數:
252
	#$conf["path"],字串,log檔案的路徑與名稱.
253
	$conf["path"]=$logFile;
254
	#$conf["content"],any,要寫的內容,若內容不為字串則會用var_dump的格式寫入.
255
	$conf["content"]=$accessControl;
256
	#$conf["fileArgu"],字串,php變數__FILE__的內容,亦即該檔案在檔案系統的絕對路徑
257
	$conf["fileArgu"]=__FILE__;
258
	#可省略參數:
259
	#$conf["rewrite"],預設為"false",接續寫入;反之"true"代表重新寫入.
260
	#$conf["rewrite"]="false";
261
	#參考資料:
262
	#無.
263
	#備註:
264
	#無.
265
	$record=logs::record($conf);
266
	unset($conf);
267
 
268
	#如果寫log失敗
269
	if($record["status"]==="false"){
270
 
271
		#印出json結果
272
		echo json_encode($record);
273
 
274
		}#if end
275
 
276
	#結束執行,回傳錯誤代碼1
277
	exit(1);
278
 
279
	}#if end
280
 
281
#函式說明:
282
#建立以圖片(PNG格式)呈現的驗證碼.
283
#回傳的解果:
284
#$result["status"],執行是否正常,"true"代表執行成功,"false"代表執行失敗.
285
#$result["error"],錯誤訊息.
286
#$result["function"],檔前執行的函數名稱.
287
#$result["randNumberWord"],傳驗證碼的內容.
288
#$result["imgAddress"],包含src圖片的位置與名稱.
289
#$result["imgSrcVal"],放在src裏面的圖片位置與名稱.
290
#必填參數:
291
#$conf["imgAddressAndName"],字串,爲驗證碼圖片儲存的位置與名稱,副檔名程式會自動產生
292
$conf["imgAddressAndName"]="/tmp/notExsit.img";
293
#$conf["fileArgu"],字串,php變數__FILE__的內容,亦即該檔案在檔案系統的絕對路徑
294
$conf["fileArgu"]=__FILE__;
295
#可省略參數:
296
#$conf["num"],字串,爲驗證碼的位數,請輸入阿拉伯數字,預設為"8"位數.
297
#$conf["num"]="8";
298
#$conf["disableImg"],字串,是否要取消驗證碼圖片的輸出,"true"為要取消,預設為"false"為不取消
299
$conf["disableImg"]="true";
300
#$conf["imgToData"],字串,預設為"true"代表將圖片轉存成base64圖片,並將原始圖片移除;反之為"false"
301
#$conf["imgToData"]="true";
302
#$conf["class"],字串,圖片要套用的css樣式類別.
303
#$conf["class"]="";
304
#$conf["content"],字串陣列,允許的亂數陣列內容,預設爲(1~9 and A~Z).
305
#$conf["content"]=array();
306
#參考資料:
307
#無.
308
#備註:
309
#無.
310
$validationCode=authenticate::validationCode($conf);
311
unset($conf);
312
 
313
#如果執行失敗
314
if($validationCode["status"]==="false"){
315
 
316
	#函式說明:
317
	#撰寫log
318
	#回傳結果:
319
	#$result["status"],狀態,"true"或"false".
320
	#$result["error"],錯誤訊息陣列.
321
	#$result["function"],當前函式的名稱.
322
	#$result["argu"],使用的參數.
323
	#必填參數:
324
	#$conf["path"],字串,log檔案的路徑與名稱.
325
	$conf["path"]=$logFile;
326
	#$conf["content"],any,要寫的內容,若內容不為字串則會用var_dump的格式寫入.
327
	$conf["content"]=$validationCode;
328
	#$conf["fileArgu"],字串,php變數__FILE__的內容,亦即該檔案在檔案系統的絕對路徑
329
	$conf["fileArgu"]=__FILE__;
330
	#可省略參數:
331
	#$conf["rewrite"],預設為"false",接續寫入;反之"true"代表重新寫入.
332
	#$conf["rewrite"]="false";
333
	#參考資料:
334
	#無.
335
	#備註:
336
	#無.
337
	$record=logs::record($conf);
338
	unset($conf);
339
 
340
	#如果寫log失敗
341
	if($record["status"]==="false"){
342
 
343
		#印出json結果
344
		echo json_encode($record);
345
 
346
		}#if end
347
 
348
	#結束執行,回傳錯誤代碼1
349
	exit(1);
350
 
351
	}#if end
352
 
353
#隨機產生get變數名稱
354
$getVarName=$validationCode["randNumberWord"];
355
 
356
#取得未加密的get變數
357
$plainGetVar=$getVarName."=".$sId;
358
 
359
#debug
360
#var_dump(__LINE__,$plainGetVar);
361
 
362
#用GnuPG加密 get 變數 - start
363
 
364
#函式說明:
365
#加密或編碼字串,可以用的方法有sha1,md5,password_sha,qbpwcf,bin2hex,hex2bin,gpg,sha1可以回傳20或40的數值字串,md5可以回傳32個數值字串,password_hash可以回傳60~255個字元.
366
#回傳結果:
367
#$result["status"],執行是否正常,"true"代表正常,"false"代表不正常.
368
#$result["function"],當前執行的函數名稱.
369
#$result["content"],加密後的結果.
370
#$result["error"],錯誤訊息陣列.
371
#$result["argu"],使用的參數.
372
#必填參數:
373
#$conf["enCodeStr"],any,要加密的字串,陣列,物件.
374
$conf["enCodeStr"]=$plainGetVar;
375
#$conf["enCodeType"],"字串",加密的類型,有"sha1"與"md5"與"p_hash"與"aes256"與"qbpwcf"與"bin2hex"與"hex2bin"與"gpg",8種,"sha1"較耗時,"md5"較快,"p_hash"適用於密碼加密,"aes256"是對稱式加解密,"qbpwcf"是透過urlencode、json_encode、base64_encode的結果,"bin2hex"是依照每個byte的整數數值轉成"00"~"FF"後的結果,反之為"hex2bin","gpg"是應用gpg進行加解密,需要先有ID對應的key.
376
$conf["enCodeType"]="gpg";
377
#可省略參數:
378
#$conf["sha1Raw"],字串,sha1加密的結果要用20個0與1組合還是要用40位數的16進位數值,"true"代表前者,"false"代表後者,預設為"false".
379
#$conf["sha1Raw"]="false";
380
#$conf["p_hash"],字串,p_hash加密過後的字串,該參數若存在且$conf["enCodeType"]為"p_hash",則代表是要檢查$conf["enCodeStr"]是否為符合$conf["p_hash"]的密碼.
381
#$conf["p_hash"]="";
382
#$conf["keyForAes256"],字串,用來 AES256 加解密的金鑰.
383
#$conf["keyForAes256"]="";
384
#$conf["aes256Encode"],字串,"true"代表是要加密,"false"代表是要解密.
385
#$conf["aes256Encode"]="";
386
#$conf["qbpwcfDecode"],字串,若"enCodeType"為"qbpwcf",則預設為"false",代表加密;反之為"true",代表解密.
387
#$conf["qbpwcfDecode"]="false";
388
#$conf["gpgDecrypt"],字串,若"enCodeType"為"gpg",則預設為"false",代表加密;反之為"true",代表解密.
389
#$conf["gpgDecrypt"]="false";
390
#$conf["gpgId"],字串,若"enCodeType"為"gpg"時,該參數必填.
391
$conf["gpgId"]=gnupgId;
392
#參考資料:
393
#sha1=>http://php.net/manual/en/function.sha1.php
394
#md5=>http://php.net/manual/en/function.md5.php
395
#password_hash=>http://php.net/manual/en/function.password-hash.php
396
#password_verify=>http://php.net/manual/en/function.password-verify.php
397
#json_decode=>https://www.php.net/manual/en/function.json-decode.php
398
#備註:
399
#無.
400
$enCodeStr=authenticate::enCodeStr($conf);
401
unset($conf);
402
 
403
#如果執行失敗
404
if($writeTextIntoFile["status"]==="false"){
405
 
406
	#函式說明:
407
	#撰寫log
408
	#回傳結果:
409
	#$result["status"],狀態,"true"或"false".
410
	#$result["error"],錯誤訊息陣列.
411
	#$result["function"],當前函式的名稱.
412
	#$result["argu"],使用的參數.
413
	#必填參數:
414
	#$conf["path"],字串,log檔案的路徑與名稱.
415
	$conf["path"]=$logFile;
416
	#$conf["content"],any,要寫的內容,若內容不為字串則會用var_dump的格式寫入.
417
	$conf["content"]=$enCodeStr;
418
	#$conf["fileArgu"],字串,php變數__FILE__的內容,亦即該檔案在檔案系統的絕對路徑
419
	$conf["fileArgu"]=__FILE__;
420
	#可省略參數:
421
	#$conf["rewrite"],預設為"false",接續寫入;反之"true"代表重新寫入.
422
	#$conf["rewrite"]="false";
423
	#參考資料:
424
	#無.
425
	#備註:
426
	#無.
427
	$record=logs::record($conf);
428
	unset($conf);
429
 
430
	#如果寫log失敗
431
	if($record["status"]==="false"){
432
 
433
		#印出json結果
434
		echo json_encode($record);
435
 
436
		}#if end
437
 
438
	#結束執行,回傳錯誤代碼1
439
	exit(1);
440
 
441
	}#if end
442
 
443
#取得編碼後的GET變數
444
$encryptedGetVar=$enCodeStr["content"];
445
 
446
#用GnuPG加密 get 變數 - end
447
 
448
#用GnuPG加密 post 變數 - start
449
 
450
#取得收到的 POST 陣列
451
$receivedPOST=$responseMultiInputDataSecurityEnhance["inputDataContent"];
452
 
453
#函式說明:
454
#加密或編碼字串,可以用的方法有sha1,md5,password_sha,qbpwcf,bin2hex,hex2bin,gpg,sha1可以回傳20或40的數值字串,md5可以回傳32個數值字串,password_hash可以回傳60~255個字元.
455
#回傳結果:
456
#$result["status"],執行是否正常,"true"代表正常,"false"代表不正常.
457
#$result["function"],當前執行的函數名稱.
458
#$result["content"],加密後的結果.
459
#$result["error"],錯誤訊息陣列.
460
#$result["argu"],使用的參數.
461
#必填參數:
462
#$conf["enCodeStr"],any,要加密的字串,陣列,物件.
463
$conf["enCodeStr"]=$receivedPOST;
464
#$conf["enCodeType"],"字串",加密的類型,有"sha1"與"md5"與"p_hash"與"aes256"與"qbpwcf"與"bin2hex"與"hex2bin"與"gpg",8種,"sha1"較耗時,"md5"較快,"p_hash"適用於密碼加密,"aes256"是對稱式加解密,"qbpwcf"是透過urlencode、json_encode、base64_encode的結果,"bin2hex"是依照每個byte的整數數值轉成"00"~"FF"後的結果,反之為"hex2bin","gpg"是應用gpg進行加解密,需要先有ID對應的key.
465
$conf["enCodeType"]="gpg";
466
#可省略參數:
467
#$conf["sha1Raw"],字串,sha1加密的結果要用20個0與1組合還是要用40位數的16進位數值,"true"代表前者,"false"代表後者,預設為"false".
468
#$conf["sha1Raw"]="false";
469
#$conf["p_hash"],字串,p_hash加密過後的字串,該參數若存在且$conf["enCodeType"]為"p_hash",則代表是要檢查$conf["enCodeStr"]是否為符合$conf["p_hash"]的密碼.
470
#$conf["p_hash"]="";
471
#$conf["keyForAes256"],字串,用來 AES256 加解密的金鑰.
472
#$conf["keyForAes256"]="";
473
#$conf["aes256Encode"],字串,"true"代表是要加密,"false"代表是要解密.
474
#$conf["aes256Encode"]="";
475
#$conf["qbpwcfDecode"],字串,若"enCodeType"為"qbpwcf",則預設為"false",代表加密;反之為"true",代表解密.
476
#$conf["qbpwcfDecode"]="false";
477
#$conf["gpgDecrypt"],字串,若"enCodeType"為"gpg",則預設為"false",代表加密;反之為"true",代表解密.
478
#$conf["gpgDecrypt"]="false";
479
#$conf["gpgId"],字串,若"enCodeType"為"gpg"時,該參數必填.
480
$conf["gpgId"]=gnupgId;
481
#參考資料:
482
#sha1=>http://php.net/manual/en/function.sha1.php
483
#md5=>http://php.net/manual/en/function.md5.php
484
#password_hash=>http://php.net/manual/en/function.password-hash.php
485
#password_verify=>http://php.net/manual/en/function.password-verify.php
486
#json_decode=>https://www.php.net/manual/en/function.json-decode.php
487
#備註:
488
#無.
489
$enCodeStr=authenticate::enCodeStr($conf);
490
unset($conf);
491
 
492
#如果執行失敗
493
if($writeTextIntoFile["status"]==="false"){
494
 
495
	#函式說明:
496
	#撰寫log
497
	#回傳結果:
498
	#$result["status"],狀態,"true"或"false".
499
	#$result["error"],錯誤訊息陣列.
500
	#$result["function"],當前函式的名稱.
501
	#$result["argu"],使用的參數.
502
	#必填參數:
503
	#$conf["path"],字串,log檔案的路徑與名稱.
504
	$conf["path"]=$logFile;
505
	#$conf["content"],any,要寫的內容,若內容不為字串則會用var_dump的格式寫入.
506
	$conf["content"]=$enCodeStr;
507
	#$conf["fileArgu"],字串,php變數__FILE__的內容,亦即該檔案在檔案系統的絕對路徑
508
	$conf["fileArgu"]=__FILE__;
509
	#可省略參數:
510
	#$conf["rewrite"],預設為"false",接續寫入;反之"true"代表重新寫入.
511
	#$conf["rewrite"]="false";
512
	#參考資料:
513
	#無.
514
	#備註:
515
	#無.
516
	$record=logs::record($conf);
517
	unset($conf);
518
 
519
	#如果寫log失敗
520
	if($record["status"]==="false"){
521
 
522
		#印出json結果
523
		echo json_encode($record);
524
 
525
		}#if end
526
 
527
	#結束執行,回傳錯誤代碼1
528
	exit(1);
529
 
530
	}#if end
531
 
532
#取得加密後的post內容
533
$encryptedPostVar=$enCodeStr["content"];
534
 
535
#組合要印出的加密&編碼後結果
536
$result=array("sess"=>base64_encode($encryptedGetVar),"post"=>base64_encode($encryptedPostVar));
537
 
538
#印出 json 結果
539
echo json_encode($result);
540
 
541
#記錄開始 encrypt 時間
542
$_SESSION["sendMailAgent"]["encryptTime"]=time();