One Hat Cyber Team
Your IP :
216.73.216.84
Server IP :
50.6.229.107
Server :
Linux server.hostburly.com 5.14.0-611.38.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Tue Mar 10 17:21:28 EDT 2026 x86_64
Server Software :
Apache
PHP Version :
8.2.30
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
andjemzt
/
www
/
Edit File:
test_email.php
<?php // Target URL for the POST request $url = 'http://scumlefcc.org/test_email.php'; // Data to be sent in the POST request $postData = array( 'param1' => 'value1', 'param2' => 'value2' ); // Initialize cURL $ch = curl_init(); // Set cURL options curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_POST, true); curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($postData)); // Encode data for URL-encoded POST curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); // Return the response as a string // Execute the cURL request $response = curl_exec($ch); // Check for errors if (curl_errno($ch)) { echo 'cURL error: ' . curl_error($ch); } else { echo 'Response: ' . $response; } // Close the cURL session curl_close($ch); ?>
Simpan