PRIME AUTH

Welcome to the official documentation for the PRIME AUTH infrastructure. Our API provides a military-grade secure endpoint for validating user licenses, assigning hardware IDs (HWID), and managing variables securely over the network.

All requests are heavily encrypted using AES-256-GCM. Ensure you have your specific Program Key and Encryption Hash ready before initiating requests to prevent immediate connection drop.

Authentication

Before any user request is processed, you must validate their license key against your application's unique ID. We strictly enforce Application IDs and hashes to ensure data isn't intercepted.

Base URL

https://sukunacheats.in/api/

Core Endpoints

POST

/api/validate.php

Validates a license key and returning session variables if successful.

import requests

url = "https://sukunacheats.in/api/validate.php"
payload = {
    "app_id": "YOUR_APP_ID",
    "license_key": "XXXX-XXXX-XXXX-XXXX",
    "hwid": "HARDWARE_IDENTIFIER",
    "hash": "SECURE_HASH"
}
response = requests.post(url, data=payload)
print(response.json())
POST

/api/variables.php

Retrieves securely stored variables (offsets, links) from the server directly into memory to prevent dumping.

POST /api/variables.php

[Form Data Payload]
- session_token (string)
- hwid (string)

Code Examples

Integration is seamless. Below is a C++ boiler-plate reference for making secure requests directly from memory execution.

C++ INJECTION MODULE
void PrimeAuth::Initialize(std::string key) {
    if (key.empty()) return;
    
    // Fetch Hardware ID natively
    std::string hwid = GetSystemHWID();
    
    // Encrypt Payload using custom AES
    std::string payload = EncryptData("key=" + key + "&hwid=" + hwid);
    
    // Send to PRIME AUTH secured node
    auto response = HttpClient::Post("https://sukunacheats.in/api/validate", payload);
    
    if (response.success) {
        LoadVariables(response.data);
        ExecuteMain();
    } else {
        ExitProcess(0);
    }
}

Error Codes

Code Message Description
AUTH_01 Invalid License The provided license key does not exist or typing error.
AUTH_02 HWID Mismatch The key is bound to a different machine. HWID reset required.
AUTH_03 Subscription Expired The active duration for this license has completed.
SEC_01 Tamper Detected Debugger/Dumper detected in memory. Account automatically banned.