Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- /*
- ##################################
- # Get Password Reset Token
- # By Phoenix ([email protected])
- # For [yopmail.net] e-mail bots
- # (c) 2012
- # Necessária a requisição de mudar a senha
- ##################################
- */
- $email = addslashes($_GET['e']); // email que quer pegar
- if (!$email) die();
- $get_mail_hash = file_get_contents("http://www.yopmail.net/en/rss.php?login=".$email);
- if ($get_mail_hash) {
- preg_match_all("#guid isPermaLink=\"false\">(.*?)<#i", $get_mail_hash, $hash);
- $hash = $hash[1]; $hash = trim($hash[0]);$hash = "m".$hash;
- $get_token = file_get_contents("http://www.yopmail.net/en/mail.php?id=".$hash);
- if ($get_token) {
- preg_match_all("#/account/password/resetIdentity/(.*?)\">#i", $get_token, $token) or die("Não há nenhuma conta nesse e-mail!");
- $token = $token[1]; $token = trim($token[0]);
- echo ("https://www.habbo.com.br/account/password/resetIdentity/".$token);
- }
- }
- ?>
Advertisement
Add Comment
Please, Sign In to add comment