Posted
For example, I want a label to change from 'Not attached', to 'Attached!' when it's injected.
How would I be able to do that?
Or how would I edit a dll to do such?
Exploits I own:Â Synapse, Electron
Scripts I've made: Aimbot GUI, Draco Admin
Scripts I'm working on: More game ESPs
Replied
If you're using named pipes or any other form of IPC, check if the coms are open. If it's open, then that would mean the DLL is injected.
Cancel
Post
I'm just a chill guy fr 🤙
Replied
Using named pipes,
create a "namedPipeExists" function (that checks for pipes) (google it if you dont know)
then this should work,
if(namedPipeExists("<pipe name>"))
{
// do stuff (injected)
label1.Text = "Injected"
}
else
{
// do stuff (not injected)
label1.Text = "Not Injected"
}
Cancel
Post
Users viewing this thread:
( Members: 0, Guests: 1, Total: 1 )
Cancel
Post