T.ME/BIBIL_0DAY
CasperSecurity


Server : Apache/2
System : Linux server-15-235-50-60 5.15.0-164-generic #174-Ubuntu SMP Fri Nov 14 20:25:16 UTC 2025 x86_64
User : gositeme ( 1004)
PHP Version : 8.2.29
Disable Function : exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname
Directory :  /home/gositeme/domains/gocodeme.com/public_html/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/gositeme/domains/gocodeme.com/public_html/test-proxy.php
<?php
// Test the proxy connection
$server_url = "http://localhost:3000/api/auth/register";

$data = json_encode([
    'name' => 'Test User',
    'email' => 'test7@test.com',
    'password' => 'test123',
    'plan' => 'FREE'
]);

$context = stream_context_create([
    'http' => [
        'method' => 'POST',
        'header' => [
            'Content-Type: application/json',
            'Content-Length: ' . strlen($data)
        ],
        'content' => $data,
        'timeout' => 10
    ]
]);

echo "Testing connection to: $server_url\n";
echo "Data: $data\n\n";

$response = @file_get_contents($server_url, false, $context);

if ($response === false) {
    echo "ERROR: Could not connect to Node.js server\n";
    echo "Error info: " . error_get_last()['message'] . "\n";
} else {
    echo "SUCCESS: Got response from Node.js server\n";
    echo "Response: $response\n";
}
?> 

CasperSecurity Mini