Categories > Coding > C++ >
How do you get into making exploits.
Posted
Obviously there are no tuts on Youtube atleast updated ones for 2025, so how do you after a printsploit make a actual exploit that can execute? Also i was working with Studio to train but i wanna move to Roblox so how do i set that up, or rather how can i start making exploits in 2025?
Cancel
Post
Replied
Get the relative address to the function, resolve the function by adding the base address to the relative address, define the function, call the function.
On getting the function, search for strings related to the print function, and then looking at the subroutine using that string as an argument. One of them could be the string used in printidentity: "Current identity is %s" I believe.
Cancel
Post
Massive computer geek. I focus on cybersecurity now but I pop on randomly to drop lore. https://github.com/reversed-coffee
Users viewing this thread:
( Members: 0, Guests: 5, Total: 5 )
Comments
HexDX_nbVKCH 0 Reputation
Commented
Yes but how do i inject the dll in roblox undetected?
0
_realnickk 86 Reputation
Commented
Just manually map it.
0
HexDX_nbVKCH 0 Reputation
Commented
So i made a injector and it says it injected the dll in Roblox but the dll doesn't execute like no console no nothing and there is a error code from the dll '3221227292' so is it the dll that needs to be modified or is it the injector? Like is it a bypass that you need to put in the dll or is it really just the injector?
0
_realnickk 86 Reputation
Commented
That code corresponds to the STATUS_INVALID_THREAD NTSTATUS value. I know Roblox uses ICs to hook syscalls so that could be part of it. Try to hijack a thread. Also double check your code and test it on other programs.
0