en
Feedback
AIDECMODs

AIDECMODs

Open in Telegram
968
Subscribers
+224 hours
+37 days
+3830 days
Posts Archive
photo content

PUBGM CRASHES FIXED INSIDE MY SANDBOX I discovered a new method that works without spoofing, hooking, or patching only through proper compatibility, OBB, and virtualization fixes. I’m keeping the exact method private for now. The method is unique. Nobody has it yet. Testers can dm @nomadoliur Vanta. Fixing the root cause, not masking it. Regards, @VantaSDK

Tester dm me pubgm all types of crashes are fixed inside my coreee !! @Nomadoliur dm

Its 23hour almost nonstop work!😵‍💫

Sooo

Yeyyyyy

All root users i will update kernel after 2days Pubgm all versions thank you ik you need it cuz its safest !! 🌚 we will update it you have to wait for it!!

Vanta is compatibility fixed • Support Apps Compatibility 5 to 16+ • Support Gms Compatibility 12 to 16+ Dm to to become a part of vanta buy testing Contact @nomadoliur.

No sleep 💔

Everyone join us @VantaSDK

4.6 want? If you don't want it, I won't update this season because I am very busy.

Vantaa is coming❤️‍🔥

All my testers will enjoy after done maybe it will be done with in 2-3days

ANDRIOD 13 15 dm me

Android 12-13 users please kindly dm me @nomadoliur we need to test our latest framework gms support

Repost from N/a
Now Vanta is resolveing the Google authentication loop and initial handshakes

https://agentrouter.org/register?aff=S6Dj Join using this link and get 175$ Balance Full Setup and Api How to use without any error you can dm me @Nomadoliur

#include "dobby.h" // or shadowhook.h

#define LOG_TAG "AnoHook"
#define LOGI(...) __android_log_print(ANDROID_LOG_INFO, LOG_TAG, __VA_ARGS__)

// Original function pointer
typedef void* (*AnoSDKIoctl_t)(int cmd, void* arg);
static AnoSDKIoctl_t orig_AnoSDKIoctl = NULL;

// Hook implementation
void* hooked_AnoSDKIoctl(int cmd, void* arg) {
    switch (cmd) {
        case 10:
            LOGI("[+] Intercepted AnoSDKIoctl Case 10 (Device/Env Check)");
            // Handle Case 10:
            // Either sanitize the buffer at `arg`, forge clean flags,
            // or return a benign status (often 0 / nullptr depending on the build).
            return (void*)0;

        case 16:
            LOGI("[+] Intercepted AnoSDKIoctl Case 16 (Telemetry/Report Flush)");
            // Handle Case 16:
            // Suppress the generation/queueing of the report packet
            return (void*)0;

        default:
            // Allow all internal initialization, heartbeat, and engine-sync calls to pass
            break;
    }

    return orig_AnoSDKIoctl(cmd, arg);
}

// Installation routine
void InstallAnoHook(uintptr_t base_addr) {
    // AnoSDKIoctl offset from IDA
    uintptr_t target_addr = DobbySymbolResolver("libanogs.so", "AnoSDKIoctl");
    
    if (target_addr) {
        DobbyHook((void*)target_addr, (void*)hooked_AnoSDKIoctl, (void**)&orig_AnoSDKIoctl);
        LOGI("[+] AnoSDKIoctl successfully hooked at %p", (void*)target_addr);
    } else {
        LOGI("[-] Failed to resolve AnoSDKIoctl");
    }
}
Join, @NomadHooks

#include "dobby.h" // or shadowhook.h

#define LOG_TAG "AnoHook"
#define LOGI(...) __android_log_print(ANDROID_LOG_INFO, LOG_TAG, __VA_ARGS__)

// Original function pointer
typedef void* (*AnoSDKIoctl_t)(int cmd, void* arg);
static AnoSDKIoctl_t orig_AnoSDKIoctl = NULL;

// Hook implementation
void* hooked_AnoSDKIoctl(int cmd, void* arg) {
    switch (cmd) {
        case 10:
            LOGI("[+] Intercepted AnoSDKIoctl Case 10 (Device/Env Check)");
            // Handle Case 10:
            // Either sanitize the buffer at `arg`, forge clean flags,
            // or return a benign status (often 0 / nullptr depending on the build).
            return (void*)0;

        case 16:
            LOGI("[+] Intercepted AnoSDKIoctl Case 16 (Telemetry/Report Flush)");
            // Handle Case 16:
            // Suppress the generation/queueing of the report packet
            return (void*)0;

        default:
            // Allow all internal initialization, heartbeat, and engine-sync calls to pass
            break;
    }

    return orig_AnoSDKIoctl(cmd, arg);
}

// Installation routine
void InstallAnoHook(uintptr_t base_addr) {
    // AnoSDKIoctl offset from IDA
    uintptr_t target_addr = DobbySymbolResolver("libanogs.so", "AnoSDKIoctl");
    
    if (target_addr) {
        DobbyHook((void*)target_addr, (void*)hooked_AnoSDKIoctl, (void**)&orig_AnoSDKIoctl);
        LOGI("[+] AnoSDKIoctl successfully hooked at %p", (void*)target_addr);
    } else {
        LOGI("[-] Failed to resolve AnoSDKIoctl");
    }
}