Categories > Coding > Lua >

[REQ] Exploit Functions Checker

Posts: 2016

Threads: 198

Joined: Apr, 2021

Reputation: 16

Posted

hi

i need a script that checks if a exploit supports a function such as hookfunction, loadstring, getrawmetatable and other things

i know how to make one but im too tired to make one so if someone has a full script then pls send me kthx bye

  • 0

Random quote here...

Syraxes_

Web Developer

vip

Posts: 1307

Threads: 40

Joined: Jul, 2021

Reputation: 67

Replied

if hookfunction then
print('Supported.')
end
  • 0

I'm not lazy, I'm just highly motivated to do nothing. #I💚Dogs.

Posts: 2016

Threads: 198

Joined: Apr, 2021

Reputation: 16

Replied

@Syraxes_ i want other things too

  • 0

Random quote here...

Syraxes_

Web Developer

vip

Posts: 1307

Threads: 40

Joined: Jul, 2021

Reputation: 67

Replied

-- I dont script in months, i'm in mobile so idk if works.

functions = {loadstring, hookfunction}

for i,v in pairs(getgenv()) do
if table.find(functions, v) then
print(v..'  supported.')
end
end
  • 0

I'm not lazy, I'm just highly motivated to do nothing. #I💚Dogs.

SeizureSalad

i love femboys

Posts: 1159

Threads: 79

Joined: Mar, 2021

Reputation: 40

Replied

idk where this script came from but it works i guess

loadstring(game:HttpGet("https://seizure-salad.xyz/scripts/functiontester.lua"))()
  • 0

"Questionable intellegence, but I like the mystery" - CubeFaces

https://cdn.discordapp.com/attachments/1136067487847415848/1138948596679589898/sig.png

DeepPain

Wyvern

Posts: 479

Threads: 5

Joined: Jul, 2020

Reputation: 57

Replied

Already been made before at https://v3rmillion.net/showthread.php?tid=1054693

  • 0

My Discord is xwyvern

https://i.imgur.com/mH521VR.png

Syraxes_

Web Developer

vip

Posts: 1307

Threads: 40

Joined: Jul, 2021

Reputation: 67

Replied

@DeepPain

 

V3rmilllion :angry:

  • 0

I'm not lazy, I'm just highly motivated to do nothing. #I💚Dogs.

DeepPain

Wyvern

Posts: 479

Threads: 5

Joined: Jul, 2020

Reputation: 57

Replied

@Syraxes_ What's wrong with v3rmillion?

  • 0

My Discord is xwyvern

https://i.imgur.com/mH521VR.png

Syraxes_

Web Developer

vip

Posts: 1307

Threads: 40

Joined: Jul, 2021

Reputation: 67

Replied

@DeepPain

 

I hate the captcha

  • 0

I'm not lazy, I'm just highly motivated to do nothing. #I💚Dogs.

Kiko

Fake it 'till you make it

Posts: 23

Threads: 5

Joined: Mar, 2022

Reputation: 3

Replied

Something like this:

local env = getgenv()
local funcs = { "hookfunction", "getsenv", "getmenv" }
for i, v in pairs(funcs) do
    if not rawget(env, v) then
        error("%s is not part of your env!", v)
    end
end
  • 0

https://yesitskiko.github.io/about-me/

I've got a PHD in Scratch.

Users viewing this thread:

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