Gameforge security

06/03/2025 20:41 qirik#1
Hello,
I have a question regarding the official Gameforge servers. Do their servers detect methods like PostMessage or SendInput, specifically for clicking without physically moving the mouse? Is there any input method that is undetectable or not blocked by their systems?
06/06/2025 04:22 MaxChri#2
Try out a kernel mode driver such as [Only registered and activated users can see links. Click Here To Register...]. Pretty much undetectable.

C++ example:
Code:
#include <iostream>
#include <windows.h>
#include "interception.h"

#pragma comment(lib, "interception.lib")

int main() {
    InterceptionContext context = interception_create_context();
    if (!context) {
        std::cerr << "Interception context could not be created.\n";
        return 1;
    }

    InterceptionDevice device = 0;
    InterceptionDevice found = 0;

    for (device = 1; device <= INTERCEPTION_MAX_KEYBOARD; ++device) {
        if (interception_is_keyboard(device)) {
            found = device;
            break;
        }
    }

    if (!found) {
        std::cerr << "No keyboard found for Interception.\n";
        interception_destroy_context(context);
        return 1;
    }

    InterceptionKeyStroke stroke;

    Sleep(2000);

    // Key down
    stroke.code = 0x11; // W
    stroke.state = INTERCEPTION_KEY_DOWN;
    interception_send(context, found, (InterceptionStroke*)&stroke, 1);

    Sleep(1000);

    // Key up
    stroke.state = INTERCEPTION_KEY_UP;
    interception_send(context, found, (InterceptionStroke*)&stroke, 1);

    interception_destroy_context(context);
    return 0;
}
06/10/2025 01:04 qirik#3
[QUOTE=MaxChri;40296510]Try out a kernel mode driver...

I'm having a problem with the Interception driver. I can't install it into the system — even though the installation completes successfully in CMD, it doesn't actually work and the driver is missing from the C:/Windows/System32/drivers folder.

I've disabled the Windows Firewall and set Secure Boot mode to "Custom", but it still doesn't work.
I can see you know what you're doing — do you have any advice for me?
Thanks for sharing the code in your previous message.

Actualization
Nevermind i solve a problem.
10/19/2025 22:55 iusufferdy#4
Lwo