Categories > Coding > C# >

[REQ] Auto Attach/Inject!

davidTube

not inactive

noticed

Posts: 1849

Threads: 88

Joined: Dec, 2018

Reputation: 56

Posted

Hello, if anyone knows how can i make a more "advanced" Auto Injector and what I mean by that is one without the timer and that basic if process is detected thing.

Reply to this thread or DM davidTube#8616

  • 0

Posts: 96

Threads: 11

Joined: Jan, 2020

Reputation: 0

Replied

public Window_Loaded(object sender, RoutedEventArgs e)

{

      **all your stuff here**

       DispatcherTimer timer = new DispatcherTimer();

       timer.Tick += this.AutoAttach;

       timer.Start();

}

 

 

 

 

private async void AutoAttach()

{

         foreach(Process proc in Process.GetProcessesByName("RobloxPlayerBeta"))

         await Task.Delay(10000);

         module.LaunchExploit();

}

 

*for wpf btw :)

i think this works

  • 1



























sus73

Posts: 257

Threads: 112

Joined: Jun, 2018

Reputation: 5

Replied

While I don't exactly know how to do an "advanced" one, there are certainly exploits which auto-inject when the actual roblox form is open. Though I don't know how to do so, all I can really say is that using a timer (with the correct tick-rate) would be an option to do so.

 

If you're talking about doing it like Skisploit or something (auto-injects when form is open) then I don't know.

  • 0

Exploits I own: Synapse, Electron

Scripts I've made: Aimbot GUI, Draco Admin

Scripts I'm working on: More game ESPs

AIpha

alpha

Posts: 173

Threads: 23

Joined: May, 2018

Reputation: 4

Replied

Haven't tested the code but in theory it should work

private void AutoAttach()
{
    bool attach = true;
    while (true)
    {
        if (Process.GetProcessesByName("RobloxPLayerBeta").Length == 1 && attach == true)
        {
            //inject code here
            attach = false;
        }
        if (Process.GetProcessesByName("RobloxPLayerBeta").Length == 0) { attach = false; }
        if(Process.GetProcessesByName("RobloxPLayerBeta").Length == 1) { attach = true; }
           
    }
}

here's a better way - https://v3rmillion.net/showthread.php?tid=925144

  • 0

Was on WRD front page

Programs I own - Synapse X, Protosmasher, Sirhurt, Sweat Heart of Sigma Chi, Scriptware V2

Languages I know - C#,JS,Lua,VB.net
Learning - Python, C

davidTube

not inactive

noticed

Posts: 1849

Threads: 88

Joined: Dec, 2018

Reputation: 56

Replied

@AIpha

nope ;-;

  • 0

classiccat

#becomeacat

vip

Posts: 526

Threads: 1

Joined: Aug, 2019

Reputation: -46

Replied

Have you tried https://v3rmillion.net/showthread.php?tid=925144

 

 

  • 0

...

davidTube

not inactive

noticed

Posts: 1849

Threads: 88

Joined: Dec, 2018

Reputation: 56

Replied

@classiccat

yup, but doesnt work, not even an error. am I doing something wrong?

  • 0

Users viewing this thread:

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