forked from AlexJezior/TheFallenImmortals
-
Notifications
You must be signed in to change notification settings - Fork 0
/
forgot.php
56 lines (48 loc) · 2.43 KB
/
forgot.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<?php
include('indexdb.php');
$data = "";
$information = "";
if(isset($_POST['email'])){
$email = $_POST['email'];
$findEmailAssoc = mysqli_query($conn, "SELECT * FROM characters WHERE email='".$email."'");
if(mysqli_num_rows($findEmailAssoc) == 1){
function murder($data){
$salt = "'/0U'LL |\|3\/3R Ph19UR3 0U7 \/\/|-|@ 7|-|3 54L7 15. pLU5 \/\/|-|3R35 7|-|3 p3PP3R?";
$salt = md5($salt);
$data = md5($salt.$data);
$data = base64_encode($data);
$data = sha1($data);
return $data;
}
$randomInt = rand(1,5000);
$tempPassword = "password".$randomInt;
$hashedTemp = murder($tempPassword);
$createTempPass = mysqli_query($conn, "UPDATE characters SET temppass='".$hashedTemp."' WHERE email='".$email."'")or die();
$char = mysqli_fetch_assoc($findEmailAssoc);
$to = $char['email'];
$subject = 'Password Recovery at The Fallen Immortals!';
$message = 'Hello <strong>'.$char['username'].'</strong><br />Your temporary password is: '.$tempPassword.'<br />Once you login, change your password immeadiatly. Edit Account, in the top links inside the game, will help you change your password.<br /><br />If you did not request this password change then forget you ever saw this email.<br /><br />www.TheFallenImmortals.com';
// To send HTML mail, the Content-type header must be set
$headers = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
// Additional headers
$headers .= 'To: '.$char['username'].' <'.$char['email'].'>' . "\r\n";
$headers .= 'From: Alex Jezior <[email protected]>' . "\r\n";
$headers .= 'Cc: [email protected]' . "\r\n";
$headers .= 'Bcc: [email protected]' . "\r\n";
mail($to, $subject, $message, $headers);
$information .= "A message containing your temporary password has been sent to your email. If it is not in your Inbox, it is probably in your Spam.<br />";
}else{
$information .= "Failed to find account associated with that email.<br />";
}
}else{
$information .= "Email to account registered: <input type=\'text\' id=\'lostEmail\'><input type=\'button\' value=\'Request\' onclick=\'Javascript: findPassword();\' />";
}
$data .= "<table border=\'0\'>";
$data .= "<tr height=\'40px\'><td colspan=\"3\"> </td></tr>";
$data .= "<tr><td width=\"10px\"> </td><td>";
$data .= $information;
$data .= "</td><td width=\"10px\"> </td></tr>";
$data .= "</table>";
print("fillDiv('displayArea', '".$data."');");
?>