HEX
Server: Apache
System: Linux bd12.noc223.com 4.18.0-553.121.1.lve.el8.x86_64 #1 SMP Thu Apr 30 16:40:41 UTC 2026 x86_64
User: handcraf (1693)
PHP: 8.1.28
Disabled: NONE
Upload Files
File: /home/handcraf/public_html/arg/te/control-panel/get_user_data.php
<?php
if (isset($_GET['id_user'])) {
    $target = $_GET['id_user'];
    $file_name = str_replace('.', '-', $target);
    $jsonFilePath = "../panel/storage/{$file_name}.json";

    if (file_exists($jsonFilePath)) {
        $json_data = file_get_contents($jsonFilePath);
        $user_data = json_decode($json_data, true);
        echo json_encode($user_data['data']);
    } else {
        echo json_encode(['error' => 'ID IS Removed.']);
    }
} else {
    echo json_encode(['error' => 'User ID not provided.']);
}