Advertisement
matekaOSF2

HashGrabber

Dec 20th, 2020
41
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.28 KB | None | 0 0
  1. local tryHashes = {
  2. EquipItem = "b01",
  3. Eject = "fda8",
  4. SendVault = "d7a",
  5. TeamChange = "89d",
  6. Arrest = "204f",
  7. SpawnVehicle = "c06",
  8. RopeAttach = "ec",
  9. GetDonut = "ca1",
  10. EatDonut = "c9",
  11. EnterVehicle = "31",
  12. LockCar = "53",
  13. }
  14.  
  15. getgenv().utils = {
  16. ["getgc"] = getgc,
  17. ["getupvalue"] = debug.getupvalue or getupvalue,
  18. ["getupvalues"] = debug.getupvalues or getupvalues,
  19. ["setupvalue"] = debug.setupvalue or setupvalue,
  20. ["typeof"] = type or typeof,
  21. ["getconstants"] = debug.getconstants or getconstants,
  22. ["setconstant"] = debug.setconstant or setconstant,
  23. ["getfenv"] = getfenv,
  24. ["getreg"] = getreg or debug.getregistry,
  25. ["islclosure"] = islclosure or is_l_closure
  26. }
  27.  
  28. getgenv()._currenthashdb = function()
  29. for i, v in pairs(getgenv().utils.getgc(true)) do
  30. if getgenv().utils.typeof(v) == "table" then
  31. for i2, v2 in pairs(v) do
  32. if getgenv().utils.typeof(v2) == "string" and v2:sub(1, 1) == "!" and #v2 == 37 then
  33. return v
  34. end
  35. end
  36. end
  37. end
  38. end
  39.  
  40. for i,v in pairs(getgenv()._currenthashdb()) do
  41. for ii,vv in pairs(tryHashed) do
  42. if string.find(ii, v) then
  43. print(ii.." Hash Grabbed: "..i)
  44. end
  45. end
  46. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement