Categories > Exploiting > Roblox >
next roblox update
Posted
if you havent been informed already, roblox's update (if it will even be pushed) will permanently patch all exploits for a while
it will now be alot harder to make and maintain exploits as a whole
basically what roblox did is inline a bunch of functions
what that means is this
int add(int a, int b)
{
return a + b;
};
int main()
{
std::cout << add(1, 1) << std::endl;
};
without inlining, this is what it will compile to (mostly)
with inlining, this same code would compile to this (ignoring the cout stream stuff)
int main()
{
std::cout << 1 + 1 << std::endl;
// as you can see add() is no longer called, and instead it runs the code inside the function without the call
// now this is a very barebones example but you get the point, no more function calling
};
so yeah goodluck remaking roblox functions
ignore formatting im on phone ok bai
still writing arch v2
Replied
chonky cool very cool cool cool and pro pro pro continue like these man and never become someone like i have done
Cancel
Post
Replied
I assume exploits like Synapse would easiler overcome this to be fair...
Cancel
Post
Replied
@Ch0nky i can see roblox is trying to stop us, im going to be ready for people complaining that everything doesnt work when roblox pushes this update.
BUT, if you make the functions in lua instead of making them inside the dll, like using getgenv() to make it and execute it when it injects, then i think it would probably work
an example here from a thread joe69 made for hookfunction that you could do in lua:
getgenv().hookfunction = function(func1, func2)
func1 = func2
end
CodeBlocks
getgenv().hookfunction = function(func1, func2)
func1 = func2
end
Cancel
Post
Replied
@TERIHAX I know you're joking, but you're incorrect. It's not exploit functions that are being messed with, it's lua functions.
Cancel
Post
My Discord is xwyvern
https://i.imgur.com/mH521VR.png
Replied
@Haylo Apparently 3ds doesn't know what the f.uck to do with inlining, but it'll be working eventually
On a side note, Fluxus is already prepared for this update ;)
Fluxus > ALL
Cancel
Post
Replied
@49843fluxus pog
Cancel
Post
Replied
@DeepPain oh shoot im retarded, i know you're messing with me saying that im joking (bc im actually retarded)
Then why is he using c++ in here?
https://media.discordapp.net/attachments/843572181446557749/869910792177352774/sQMHZbE1.png
Cancel
Post
Replied
Well, it won't affect me very much...
Cancel
Post
“Code is like humor. When you have to explain it, it’s bad.†– Cory House
still writing arch v2
Replied
roblox basically removed functions like lua_tostring so u have to manually make an alternative for it
Cancel
Post
Users viewing this thread:
( Members: 0, Guests: 1, Total: 1 )
Cancel
Post