.Dias Injector V1

Posts 1–11 of 11 · Page 1 of 1
Nice, what are the injection methods?
Quote Originally Posted by DadDelta View Post
Nice, what are the injection methods?
Standard
ThreadHijack
ManualMap
Thx credits <3
File appears safe.

/Approved
font might get weird on other pc , if thry dont have that font lol
does this work for dayz sa?
Dias,

The UI of this injector is clean and simple. I will now use this over DC's stealth injector.

I appreciate your contribution,
J
Halp! I am trying to inject a .dll into ArmA 3, but when i click 'Inject', a pop up comes out and reads, "Unable to allocate memory in the remote process", i dont know how to fix this...
Second snippet contains what you're seeing. From the looks of it, just by reading over what error you're getting... Are you even injecting into the game engine? If so, then just set it to AUTO inject for 500ms and you should be fine. If this doesn't solve your issue then try some of the other injection methods until it works. Other than that I can't help you any further as you have no dumps or logs to go off of.

Code:
    printf("Enter process ID: ");
    std::cin >> processID;
 
    printf("PID=%d\n",processID);
 
    processHandle = OpenProcess(PROCESS_ALL_ACCESS,FALSE,processID);
 
    if(processHandle == NULL)
    {
        printf("Error unable to open process. Error code: %d", GetLastError());
        std::cin.get();
 
        return 0;
    }
Code:
    baseAddress = VirtualAllocEx(
        processHandle,
        NULL,
        256,
        MEM_COMMIT|MEM_RESERVE,
        PAGE_READWRITE);
 
    if(baseAddress == NULL)
    {
        printf("Error unable to alocate memmory in remote process. Error code: %d. Press any key to exit", GetLastError());
        std::cin.get();
 
        return 0;
    }
Posts 1–11 of 11 · Page 1 of 1

Post a Reply

Similar Threads

Tags for this Thread

None

Need help?