Posted
Like how when you inject an exploit, it says "Status: injected!" or something..
Exploits I own: SirHurt, Synapse X
jayy#1769
Owner - Clxneage / Cloneage X
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";
}
}
Cancel
Post
<3 N4ri
---
Exploits i use: Comet
Scripts i use: anything cool
yes
Users viewing this thread:
( Members: 0, Guests: 1, Total: 1 )
Cancel
Post