Upscalefanatic3

CRACK ALMOST ANY WHITELISTED SCRIPT/HUB

Jan 28th, 2018
420
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.87 KB | None | 0 0
  1. I recently quit working for astral (not going into that). I'm not releasing this against anyone, but I'm releasing it against every whitelisted script hub gui. I hate them now.
  2.  
  3. Depending on how smart the script devs are, you might need to be whitelisted to get to the link. If they use some sort of Yes/No on php, you can modify the return value to be whatever you want.
  4.  
  5. What this does:
  6. Basic metamethod hooking.
  7. This works the same way as Remote spy and the loadstring hook, just some extra code to unlock the __namecall metatable.
  8.  
  9. The script will print out the link of any call to HttpGet. This is very powerful, and I feel bad for releasing it. But it's time to stop these hubs.
  10.  
  11. How To Use:
  12. 1. Execute script below vvvv
  13. 2. Clear
  14. 3. Run the script that they give you. (Most likely a loadstring, but whatever this will still work)
  15. 4. Check your console, it will print any link that is HttpGet(ed).
  16.  
  17. Code:
  18.  
  19. MetaMethods, Backup = getrawmetatable(game), {}
  20. for i,v in next, MetaMethods do Backup[i] = v end
  21.  
  22. setreadonly(MetaMethods, false) -- You may need to modify this to work with your exploit. (Synapse/Elysain already)
  23.  
  24. MetaMethods.__namecall = function(...)
  25. local Tabl = {...}
  26. if Tabl[#Tabl] == "HttpGet" then
  27. print(Tabl[2]) -- You can make this copy to your clipboard
  28. local downloadedData = Backup.__namecall(...)
  29. copystring(downloadedData) -- You may need to modify this to work with your exploit. (Synapse already)
  30. return "" -- You can modify this to return any string you want.
  31. else
  32. return Backup.__namecall(...)
  33. end
  34. end
  35.  
  36. setreadonly(MetaMethods, true) -- Enables readonly (patched detection method) Modify the same way as the first one.
  37.  
  38.  
  39.  
  40.  
  41. K, have fun everyone. And do remember, other people bought the script too, so think twice when it comes to releasing sources.
  42.  
  43.  
  44. I can't wait for nebula.
Add Comment
Please, Sign In to add comment