Forum > Coding >

[Question] How do I detect if the dll is injected?

Posts: 250

Threads: 111

Joined: Jun, 2018

Reputation: 5

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?

  • 0

Exploits I own: Synapse, Electron

Scripts I've made: Aimbot GUI, Draco Admin

Scripts I'm working on: More game ESPs

WRD

Owner

admin

Posts: 990

Threads: 33

Joined: Dec, 2016

Reputation: 106

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.

  • 0

I'm just a chill guy fr 🤙

Posts: 43

Threads: 6

Joined: May, 2019

Reputation: -1

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"
}

  • 0

Users viewing this thread:

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