Categories > Coding > Lua >

[REQ] Function Checking

Posts: 2014

Threads: 198

Joined: Apr, 2021

Reputation: 16

Posted

Is there any script that can check what functions do an exploit support? Example:

loadstring - yes

setrawmetatable - yes

 

etc.

  • 0

Random quote here...

Posts: 522

Threads: 29

Joined: Apr, 2021

Reputation: 24

Replied

if loadstring then
print"loadstring exists"
else
print"loadstring doesnt exist"
end
  • 0

back lol

Posts: 2014

Threads: 198

Joined: Apr, 2021

Reputation: 16

Replied

@Lxnnyy yes, but i want all of those functions in one script

  • 0

Random quote here...

TERIHAX

i say im gay as a joke 🙀

Posts: 2240

Threads: 102

Joined: Jul, 2020

Reputation: 32

Replied

@VoidableMethod from maximus:

table.foreach(getgenv(), print)
  • 0

Posts: 2014

Threads: 198

Joined: Apr, 2021

Reputation: 16

Replied

@TERIHAX that's gonna give me all functions in one?

  • 0

Random quote here...

TERIHAX

i say im gay as a joke 🙀

Posts: 2240

Threads: 102

Joined: Jul, 2020

Reputation: 32

Replied

@VoidableMethod idk just try it, im pretty sure it just prints out every getgenv function it can find (the name of the func)

 

pallid suus

  • 0

Posts: 2014

Threads: 198

Joined: Apr, 2021

Reputation: 16

Replied

@TERIHAX it prints sone addresses lol

  • 0

Random quote here...

Posts: 197

Threads: 10

Joined: Feb, 2021

Reputation: 9

Replied

for i,v in pairs(getgenv()) do
   print(i,v)
end
  • 0

Im netral, not evil, not too kind either.

TERIHAX

i say im gay as a joke 🙀

Posts: 2240

Threads: 102

Joined: Jul, 2020

Reputation: 32

Replied

@VoidableMethod addresses? hmm lemme see

 

yea it works, it prints the function names

 

like, if a function exists, it would print the function's name along with some info, if that function doesn't exist, then it wont even print it out

  • 0

Added

@OrbitRBX works the same as maximus'

  • 0

hookfunction

fake wumat

vip

Posts: 145

Threads: 20

Joined: Aug, 2021

Reputation: 19

Replied

local number = 0

for func, _ in pairs(getgenv()) do
   number += 1
   print(func)
end
print("Your exploit has ".. number .." functions!")
  • 0

                                                                        https://cdn.discordapp.com/attachments/909012795851407390/927492917394821140/siggy.png

Posts: 2014

Threads: 198

Joined: Apr, 2021

Reputation: 16

Replied

@hookfunction ill try it later, thanks

  • 0

Random quote here...

MINISHXP

[REDACTED]

Posts: 976

Threads: 3

Joined: Jan, 2021

Reputation: 9

Replied

for i, v in pairs(getgenv()) do print(v) end
-- i think thats how u check for all the funcs your eggsploit supports
  • 0

Users viewing this thread:

( Members: 0, Guests: 1, Total: 1 )