Categories > Exploiting > Roblox >
how can i dehash please donate remote functions names?
Posted
please help me achieve this
Cancel
Post
Replied
You can't "dehash" a hash. The inability to be turned back into usable data due to entropy constraints is an intentional feature of hash algorithms. If you know the algorithm and it's weak you can bruteforce it, but if it has a high collision chance you're going to get a bunch of junk names. It's a matter of inspecting the source code that calls the remote, then piecing it together from there.
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: 1, Total: 1 )
Comments
omarkill3333 0 Reputation
Commented
also i know the function i want to invoke name before being hashed can this be usefull as i saw it in module script
0
Added
Is there other way to know stuff about the function that I'm trying to call so I only call like like check if it has certain constants or smth or this isn't possible for remote functions and do u think trying to see the algorithm is the only way
0
_realnickk 86 Reputation
Commented
@omarkill3333 If you have the plaintext, you can feed it into the hash function (or a recreation of it). That'll generate a hash that corresponds to your remote.
1
Added
@omarkill3333 Also, you can just decompile scripts or use functions like debug.getconstants to obtain more information like you said.
1
omarkill3333 0 Reputation
Commented
bro i finally did it (not all but i achieved what i wanted) thx for ur words
0