Categories > Exploiting > Roblox >

next roblox update

Ch0nky

xChonkster

Posts: 71

Threads: 8

Joined: Nov, 2020

Reputation: 8

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

 

  • 0

still writing arch v2

Posts: 2

Threads: 0

Joined: Jul, 2021

Reputation: -30

Replied

chonky cool very cool cool cool and pro pro pro continue like these man and never become someone like i have done

  • 0

Haylo

typical loser

Posts: 108

Threads: 12

Joined: May, 2021

Reputation: 0

Replied

I assume exploits like Synapse would easiler overcome this to be fair... 

  • 0

TERIHAX

i say im gay as a joke 🙀

Posts: 2240

Threads: 102

Joined: Jul, 2020

Reputation: 32

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
  • 0

DeepPain

Wyvern

Posts: 479

Threads: 5

Joined: Jul, 2020

Reputation: 57

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.

  • 0

My Discord is xwyvern

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

Posts: 161

Threads: 31

Joined: Sep, 2019

Reputation: 19

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

  • 0

 

 

Posts: 0

Threads: 0

Joined: ?

Reputation:

Replied

@49843fluxus pog

  • 0

TERIHAX

i say im gay as a joke 🙀

Posts: 2240

Threads: 102

Joined: Jul, 2020

Reputation: 32

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

  • 0

Added

@FluxusDevelopment lol zesty keeps bypassing lmao

  • 0

Posts: 129

Threads: 8

Joined: Jul, 2021

Reputation: 2

Replied

Well, it won't affect me very much...

  • 0

“Code is like humor. When you have to explain it, it’s bad.” – Cory House

Ch0nky

xChonkster

Posts: 71

Threads: 8

Joined: Nov, 2020

Reputation: 8

Replied

@TERIHAX

 

you dont even know what ur talking about

  • 0

still writing arch v2

TERIHAX

i say im gay as a joke 🙀

Posts: 2240

Threads: 102

Joined: Jul, 2020

Reputation: 32

Replied

@Ch0nky i completely dont, thats why im so retarded in lua and c++

  • 0

Posts: 81

Threads: 13

Joined: Oct, 2018

Reputation: -6

Replied

@TERIHAX

roblox basically removed functions like lua_tostring so u have to manually make an alternative for it

  • 0

TERIHAX

i say im gay as a joke 🙀

Posts: 2240

Threads: 102

Joined: Jul, 2020

Reputation: 32

Replied

  • 0

Users viewing this thread:

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