Hello !
My English is kinda bad so bare with me
Well You Know exploiters using obfuscation to hide their code in some forums
we can at least constant dump it to get some info what are they doing and hopefully you can patch stuff
i will use Repl.it for this tutorial
let’s say we have a sample of ironbrew which is print(“Hello”)
Now i am gonna go to repl.it an put a table.concat which will take arrays and concatenate them put it above the code
local oldtable = table.concat
table.concat = function(a)
print(oldtable(a))
return oldtable(a)
end
result :
for psu we can use a Lua Beautifier tool
after you beauty it just go and put it in repl.it and jump to break number 5
you see that l[t] = o
we will print o which is the constants which will give us some info [ note that will change ] because it’s random but i got that l[t] = o
after we put a print(o) which is in our example is o it might be a b or c in ur side
it should be like this in my example which is o
after that we run it
result :
hopefully that help and sorry for my english not my main
keep in mind i didn’t make the method i just transferred knowledge here i just explained how to do it