Forum > General >

Anyone know how to make a inject detector or something

Posts: 36

Threads: 11

Joined: Jul, 2020

Reputation: 0

Posted

Like how when you inject an exploit, it says "Status: injected!" or something..

  • 0

Exploits I own: SirHurt, Synapse X

jayy#1769

Owner - Clxneage / Cloneage X

N4ri

truly gamer pro :suncool:

contentCreator

Posts: 507

Threads: 75

Joined: Mar, 2020

Reputation: 44

Replied

So what you need to do first is to setup a timer and enable it to True, now after that, it depends on what type of DLL you are using, if you are using an API, your API must have a function to check if it's injected or not.

Here's how it goes for something like a WeAreDevs API:


        private void timer1_Tick(object sender, EventArgs e)
        {
            if (WRD.isAPIAttached())
            {
                this.InjectionStatus.Text = "Injected";
            }
            else
            {
                this.InjectionStatus.Text = "Not Injected";
            }
        }

 

If you also want the text to change color, you can use a FromArgb like this:

label3.ForeColor= Color.FromArgb(151, 255, 91);

 

If you're using something like an Axon based DLL like what i am currently using, you can use:

 

        private void timer1_Tick(object sender, EventArgs e)
        {
            if (InsertPipeFunction.NamedPipeExist(InsertPipeFunction.luapipename))
            {
                this.InjectionStatus.Text = "Injected";
            }
            else
            {
                this.InjectionStatus.Text = "Not Injected";
            }
        }

 

  • 0

<3 N4ri
---

Exploits i use: Comet
Scripts i use: anything cool

jex

yes

Posts: 1791

Threads: 110

Joined: Nov, 2019

Reputation: 13

Replied

  • 0

yes

Users viewing this thread:

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