本文整理匯總了PHP中Invitation::genPwdEmailValidateCode方法的典型用法代碼示例。如果您正苦於以下問題:PHP Invitation::genPwdEmailValidateCode方法的具體用法?PHP Invitation::genPwdEmailValidateCode怎麽用?PHP Invitation::genPwdEmailValidateCode使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Invitation
的用法示例。
在下文中一共展示了Invitation::genPwdEmailValidateCode方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: Securimage
}
}
if ($method == 'findpwd') {
//Captcha Validate
require_once PHP_BASE_DIR . "/securimage/securimage.php";
$img = new Securimage();
if ($img->check($captcha) == false) {
$res['message'] = '驗證碼錯誤!';
$res['action'] = 'resend';
} else {
$db = new MySQL($log);
if ($mysqli = $db->openDB()) {
$user = new User($mysqli, $log);
$invitation = new Invitation($mysqli, $log);
if ($user->getUserByName($username)) {
$email_code = $invitation->genPwdEmailValidateCode($user->id);
$saemail = new SaeMail();
if ($saemail) {
//sea maill
$message = $username . " \r\n\t\t\t您好,歡迎您使用XSSRAT。XSSRAT是一個開放性的Web前端漏洞利用平台,您可以使用該平台進行一些Web前端漏洞的測試,並可以貢獻自己的模塊供其他用戶使用。\r\n\t\t\t本平台是一個開放性的平台,可用於滲透測試或漏洞挖掘過程中,以提高Web應用的安全性,本身不具有任何惡意性。請勿將該平台用於非法用途,否則後果自負!\r\n\t\t\t您的用戶名為:" . $username . "\r\n\t\t\t請及時訪問以下鏈接重置您的密碼:\t\t\t\t\t\r\n\t\t\thttp://xssrat.sinaapp.com/findpwd.php?code=" . $email_code . "&id=" . $user->id . "&method=resetpwd\r\n\t\t\t(該鏈接隻能在同一瀏覽器,cookie有效期內生效)\t\r\n\t\t\r\n\t\t\thttp://xssrat.sinaapp.com\r\n\t\t\tMak3 hack m0r3 c00l!";
$ret = $saemail->quickSend($user->email, 'XSSRAT 密碼重置', $message, MAIL_ACCOUNT, MAIL_PASS);
if ($ret) {
$res['result'] = true;
$res['message'] = '郵件已發出,請您及時查收,若您一直未收到,請稍後重新發送!';
$res['action'] = 'resend';
$reset_pwd = array('id' => $user->id, 'email_code' => $email_code, 'b_confirm' => false);
$_SESSION['reset_pwd'] = $reset_pwd;
}
if ($ret === false) {
$log->error($mail->errmsg());
$res['message'] = '郵件發送失敗,請稍後重試!';