Categories > Coding > C++ >
How do you make a working injector for Roblox?
Posted
I heard about manual map injectors and tried to make one but my roblox either crashed or just the dll didn't work when it said it was injected.
Cancel
Post
Replied
I am not 100% sure but I think manual map injection is patched. Anyways, try discover some methods or talk to other users who know some unpatched methods.
Cancel
Post
Languages - C++, C#,Javascript, HTML, CSS, Lua ,Xaml, Python
https://dsc.gg/hackerpluto
Replied
Roblox scans for MEM_IMAGE flagged regions. They could also check for PE headers in the start of memory regions. Make sure you're wiping your PE header and not setting those flags. Spawning new threads could be detected as well.
This is from my memory so take this information with a grain of salt. I need to jump back into researching their anricheat again. I've been busy with school lol
Cancel
Post
Security researcher, low-level programmer, and system administrator.
https://github.com/reversed-coffee
Users viewing this thread:
( Members: 0, Guests: 1, Total: 1 )
Comments
Cyros 17 Reputation
Commented
Manual map + Page Whitelisting
The basic idea is using VirtualAllocEx on a page_readwrite then write your dll buffer and whitelist the entire region your dll buffer is in (allocation address + allocation size)
Whitelisting has a couple of methods one of the ones was using insert_set on whitelisted_pages or bitmap
Idk if this still works I might provide a poc of whitelisting pages.
Reversing Roblox will show you how it works, also learn about how to fk with the IC because that's leet asf trust
0